comparison mpegaudioenc.c @ 9411:4cb7c65fc775 libavcodec

Split bitstream.h, put the bitstream writer stuff in the new file put_bits.h.
author stefano
date Sun, 12 Apr 2009 08:35:26 +0000
parents e9d9d946f213
children 932543edc1d2
comparison
equal deleted inserted replaced
9410:f7bd7e90ef9f 9411:4cb7c65fc775
23 * @file libavcodec/mpegaudio.c 23 * @file libavcodec/mpegaudio.c
24 * The simplest mpeg audio layer 2 encoder. 24 * The simplest mpeg audio layer 2 encoder.
25 */ 25 */
26 26
27 #include "avcodec.h" 27 #include "avcodec.h"
28 #include "bitstream.h" 28 #include "put_bits.h"
29 29
30 #undef CONFIG_MPEGAUDIO_HP 30 #undef CONFIG_MPEGAUDIO_HP
31 #define CONFIG_MPEGAUDIO_HP 0 31 #define CONFIG_MPEGAUDIO_HP 0
32 #include "mpegaudio.h" 32 #include "mpegaudio.h"
33 33