comparison golomb.h @ 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 97b991a32b85
children 0dce4fe6e6f3
comparison
equal deleted inserted replaced
9410:f7bd7e90ef9f 9411:4cb7c65fc775
30 #ifndef AVCODEC_GOLOMB_H 30 #ifndef AVCODEC_GOLOMB_H
31 #define AVCODEC_GOLOMB_H 31 #define AVCODEC_GOLOMB_H
32 32
33 #include <stdint.h> 33 #include <stdint.h>
34 #include "bitstream.h" 34 #include "bitstream.h"
35 #include "put_bits.h"
35 36
36 #define INVALID_VLC 0x80000000 37 #define INVALID_VLC 0x80000000
37 38
38 extern const uint8_t ff_golomb_vlc_len[512]; 39 extern const uint8_t ff_golomb_vlc_len[512];
39 extern const uint8_t ff_ue_golomb_vlc_code[512]; 40 extern const uint8_t ff_ue_golomb_vlc_code[512];