This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
Add missing stdint.h #include to headers that use it.
Originally committed as revision 12429 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Diego Biurrun
18 years ago
parent
2cab640129
commit
6ef2912879
3 changed files
with
3 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
libavcodec/imgconvert.h
+1
-0
libavutil/intfloat_readwrite.h
+1
-0
libavutil/mathematics.h
+ 1
- 0
libavcodec/imgconvert.h
View File
@@ -24,6 +24,7 @@
#ifndef FFMPEG_IMGCONVERT_H
#define FFMPEG_IMGCONVERT_H
#include <stdint.h>
#include "avcodec.h"
int ff_fill_linesize(AVPicture *picture, int pix_fmt, int width);
+ 1
- 0
libavutil/intfloat_readwrite.h
View File
@@ -21,6 +21,7 @@
#ifndef FFMPEG_INTFLOAT_READWRITE_H
#define FFMPEG_INTFLOAT_READWRITE_H
#include <stdint.h>
#include "common.h"
/* IEEE 80 bits extended float */
+ 1
- 0
libavutil/mathematics.h
View File
@@ -21,6 +21,7 @@
#ifndef FFMPEG_MATHEMATICS_H
#define FFMPEG_MATHEMATICS_H
#include <stdint.h>
#include "rational.h"
enum AVRounding {
Write
Preview
Loading…
Cancel
Save