summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavformat/gif.c1
-rw-r--r--libavformat/mpeg.c1
-rw-r--r--libavformat/swf.c1
3 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/gif.c b/libavformat/gif.c
index 84809bf659..bf04e81bc0 100644
--- a/libavformat/gif.c
+++ b/libavformat/gif.c
@@ -38,6 +38,7 @@
*/
#include "avformat.h"
+#include "bitstream.h"
/* bitstream minipacket size */
#define GIF_CHUNKS 100
diff --git a/libavformat/mpeg.c b/libavformat/mpeg.c
index 4e69139662..d7e94bb6db 100644
--- a/libavformat/mpeg.c
+++ b/libavformat/mpeg.c
@@ -17,6 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "avformat.h"
+#include "bitstream.h"
#define MAX_PAYLOAD_SIZE 4096
//#define DEBUG_SEEK
diff --git a/libavformat/swf.c b/libavformat/swf.c
index 4d3a72b84f..9538dc2d4c 100644
--- a/libavformat/swf.c
+++ b/libavformat/swf.c
@@ -18,6 +18,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "avformat.h"
+#include "bitstream.h"
/* should have a generic way to indicate probable size */
#define DUMMY_FILE_SIZE (100 * 1024 * 1024)