comparison golomb.h @ 5162:4394344397d8 libavcodec

include all prerequisites in header files
author mru
date Sat, 16 Jun 2007 22:59:13 +0000
parents fb4e436780fb
children 9ecbfc0c82bf
comparison
equal deleted inserted replaced
5161:94c3f01c243c 5162:4394344397d8
26 * @brief 26 * @brief
27 * exp golomb vlc stuff 27 * exp golomb vlc stuff
28 * @author Michael Niedermayer <michaelni@gmx.at> and Alex Beregszaszi 28 * @author Michael Niedermayer <michaelni@gmx.at> and Alex Beregszaszi
29 */ 29 */
30 30
31 #include <stdint.h>
32 #include "bitstream.h"
33
31 #define INVALID_VLC 0x80000000 34 #define INVALID_VLC 0x80000000
32 35
33 extern const uint8_t ff_golomb_vlc_len[512]; 36 extern const uint8_t ff_golomb_vlc_len[512];
34 extern const uint8_t ff_ue_golomb_vlc_code[512]; 37 extern const uint8_t ff_ue_golomb_vlc_code[512];
35 extern const int8_t ff_se_golomb_vlc_code[512]; 38 extern const int8_t ff_se_golomb_vlc_code[512];