comparison 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
comparison
equal deleted inserted replaced
5161:94c3f01c243c 5162:4394344397d8
24 */ 24 */
25 25
26 #ifndef BITSTREAM_H 26 #ifndef BITSTREAM_H
27 #define BITSTREAM_H 27 #define BITSTREAM_H
28 28
29 #include <stdint.h>
30 #include <stdlib.h>
31 #include <assert.h>
32 #include "common.h"
33 #include "bswap.h"
29 #include "log.h" 34 #include "log.h"
30 35
31 #if defined(ALT_BITSTREAM_READER_LE) && !defined(ALT_BITSTREAM_READER) 36 #if defined(ALT_BITSTREAM_READER_LE) && !defined(ALT_BITSTREAM_READER)
32 #define ALT_BITSTREAM_READER 37 #define ALT_BITSTREAM_READER
33 #endif 38 #endif