From 6e196eacc30b68c1b1cd94d639e55bf61ab4e615 Mon Sep 17 00:00:00 2001 From: Aurelien Jacobs Date: Mon, 3 Mar 2008 23:00:48 +0000 Subject: [PATCH] include required headers for int64_t and AV_RB16() Originally committed as revision 12306 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/mpeg.h | 3 +++ 1 file changed, 3 insertions(+) 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 +#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)