diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2008-03-03 23:00:48 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2008-03-03 23:00:48 +0000 |
commit | 6e196eacc30b68c1b1cd94d639e55bf61ab4e615 (patch) | |
tree | a648ca762fdad699b580b3a35f46f92ef04a5197 /libavformat/mpeg.h | |
parent | abf2dc9c9a828c9570f9f263c92004a3350c069e (diff) | |
download | ffmpeg-6e196eacc30b68c1b1cd94d639e55bf61ab4e615.tar.gz |
include required headers for int64_t and AV_RB16()
Originally committed as revision 12306 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mpeg.h')
-rw-r--r-- | libavformat/mpeg.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/mpeg.h b/libavformat/mpeg.h index 9283101d10..bdd70254d6 100644 --- a/libavformat/mpeg.h +++ b/libavformat/mpeg.h @@ -22,6 +22,9 @@ #ifndef FFMPEG_MPEG_H #define FFMPEG_MPEG_H +#include <stdint.h> +#include "intreadwrite.h" + #define PACK_START_CODE ((unsigned int)0x000001ba) #define SYSTEM_HEADER_START_CODE ((unsigned int)0x000001bb) #define SEQUENCE_END_CODE ((unsigned int)0x000001b7) |