comparison ac3enc.c @ 6763:f7cbb7733146 libavcodec

Use full path for #includes from another directory.
author diego
date Fri, 09 May 2008 11:56:36 +0000
parents 5b3acf9fd50a
children 60fd9ae9540e
comparison
equal deleted inserted replaced
6762:99966715fe75 6763:f7cbb7733146
23 * @file ac3enc.c 23 * @file ac3enc.c
24 * The simplest AC3 encoder. 24 * The simplest AC3 encoder.
25 */ 25 */
26 //#define DEBUG 26 //#define DEBUG
27 //#define DEBUG_BITALLOC 27 //#define DEBUG_BITALLOC
28 #include "libavutil/crc.h"
28 #include "avcodec.h" 29 #include "avcodec.h"
29 #include "bitstream.h" 30 #include "bitstream.h"
30 #include "crc.h"
31 #include "ac3.h" 31 #include "ac3.h"
32 32
33 typedef struct AC3EncodeContext { 33 typedef struct AC3EncodeContext {
34 PutBitContext pb; 34 PutBitContext pb;
35 int nb_channels; 35 int nb_channels;