comparison ac3.c @ 9428:0dce4fe6e6f3 libavcodec

Rename bitstream.h to get_bits.h.
author stefano
date Mon, 13 Apr 2009 16:20:26 +0000
parents e9d9d946f213
children 1a4af35efbda
comparison
equal deleted inserted replaced
9427:4c1fb7723412 9428:0dce4fe6e6f3
24 * Common code between the AC-3 encoder and decoder. 24 * Common code between the AC-3 encoder and decoder.
25 */ 25 */
26 26
27 #include "avcodec.h" 27 #include "avcodec.h"
28 #include "ac3.h" 28 #include "ac3.h"
29 #include "bitstream.h" 29 #include "get_bits.h"
30 30
31 static uint8_t band_start_tab[51]; 31 static uint8_t band_start_tab[51];
32 static uint8_t bin_to_band_tab[253]; 32 static uint8_t bin_to_band_tab[253];
33 33
34 static inline int calc_lowcomp1(int a, int b0, int b1, int c) 34 static inline int calc_lowcomp1(int a, int b0, int b1, int c)