comparison ac3enc.c @ 2398:582e635cfa08 libavcodec

common.c -> bitstream.c (and the single non bitstream func -> utils.c) common.h -> common.h/bitstream.h
author michael
date Wed, 29 Dec 2004 17:50:25 +0000
parents c353719836af
children 6ff5dc0dbaf0
comparison
equal deleted inserted replaced
2397:a579ef4a4f4a 2398:582e635cfa08
22 * The simplest AC3 encoder. 22 * The simplest AC3 encoder.
23 */ 23 */
24 //#define DEBUG 24 //#define DEBUG
25 //#define DEBUG_BITALLOC 25 //#define DEBUG_BITALLOC
26 #include "avcodec.h" 26 #include "avcodec.h"
27 27 #include "bitstream.h"
28 #include "ac3.h" 28 #include "ac3.h"
29 29
30 typedef struct AC3EncodeContext { 30 typedef struct AC3EncodeContext {
31 PutBitContext pb; 31 PutBitContext pb;
32 int nb_channels; 32 int nb_channels;