diff bitstream.h @ 5162:4394344397d8 libavcodec

include all prerequisites in header files
author mru
date Sat, 16 Jun 2007 22:59:13 +0000
parents 4dbe6578f811
children 604a09d6cf2e
line wrap: on
line diff
--- a/bitstream.h	Sat Jun 16 22:58:43 2007 +0000
+++ b/bitstream.h	Sat Jun 16 22:59:13 2007 +0000
@@ -26,6 +26,11 @@
 #ifndef BITSTREAM_H
 #define BITSTREAM_H
 
+#include <stdint.h>
+#include <stdlib.h>
+#include <assert.h>
+#include "common.h"
+#include "bswap.h"
 #include "log.h"
 
 #if defined(ALT_BITSTREAM_READER_LE) && !defined(ALT_BITSTREAM_READER)