comparison bitstream.h @ 6763:f7cbb7733146 libavcodec

Use full path for #includes from another directory.
author diego
date Fri, 09 May 2008 11:56:36 +0000
parents 6335f2688c04
children 24e01f7cc819
comparison
equal deleted inserted replaced
6762:99966715fe75 6763:f7cbb7733146
27 #define FFMPEG_BITSTREAM_H 27 #define FFMPEG_BITSTREAM_H
28 28
29 #include <stdint.h> 29 #include <stdint.h>
30 #include <stdlib.h> 30 #include <stdlib.h>
31 #include <assert.h> 31 #include <assert.h>
32 #include "common.h" 32 #include "libavutil/bswap.h"
33 #include "bswap.h" 33 #include "libavutil/common.h"
34 #include "intreadwrite.h" 34 #include "libavutil/intreadwrite.h"
35 #include "log.h" 35 #include "libavutil/log.h"
36 36
37 #if defined(ALT_BITSTREAM_READER_LE) && !defined(ALT_BITSTREAM_READER) 37 #if defined(ALT_BITSTREAM_READER_LE) && !defined(ALT_BITSTREAM_READER)
38 # define ALT_BITSTREAM_READER 38 # define ALT_BITSTREAM_READER
39 #endif 39 #endif
40 40