diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-03-13 00:20:15 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-03-13 00:20:15 +0000 |
commit | 6ef291287951d893fd6e2f09ba83501826cb6c40 (patch) | |
tree | f7b11f304af3c3abd7160bdbbb78b7b5456c1cc1 /libavcodec/imgconvert.h | |
parent | 2cab640129cad86f376f5bd62dbf345b3d36ec7c (diff) | |
download | ffmpeg-6ef291287951d893fd6e2f09ba83501826cb6c40.tar.gz |
Add missing stdint.h #include to headers that use it.
Originally committed as revision 12429 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/imgconvert.h')
-rw-r--r-- | libavcodec/imgconvert.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/imgconvert.h b/libavcodec/imgconvert.h index 102f925c0b..a87106aee2 100644 --- a/libavcodec/imgconvert.h +++ b/libavcodec/imgconvert.h @@ -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); |