Parent Directory
|
Revision Log
Revision 1.7 - (view) (download)
1 : | Isibaar | 1.1 | #ifndef _MB_CODING_H_ |
2 : | #define _MB_CODING_H_ | ||
3 : | |||
4 : | #include "../portab.h" | ||
5 : | #include "../global.h" | ||
6 : | Isibaar | 1.3 | #include "bitstream.h" |
7 : | Isibaar | 1.1 | |
8 : | Isibaar | 1.3 | void init_vlc_tables(void); |
9 : | Isibaar | 1.1 | |
10 : | suxen_drol | 1.7 | void skip_stuffing(Bitstream *bs); |
11 : | |||
12 : | int check_resync_marker(Bitstream * bs, int addbits); | ||
13 : | |||
14 : | Isibaar | 1.1 | int get_mcbpc_intra(Bitstream * bs); |
15 : | int get_mcbpc_inter(Bitstream * bs); | ||
16 : | edgomez | 1.6 | int get_cbpy(Bitstream * bs, |
17 : | int intra); | ||
18 : | int get_mv(Bitstream * bs, | ||
19 : | int fcode); | ||
20 : | Isibaar | 1.1 | |
21 : | edgomez | 1.6 | int get_dc_dif(Bitstream * bs, |
22 : | uint32_t dc_size); | ||
23 : | Isibaar | 1.1 | int get_dc_size_lum(Bitstream * bs); |
24 : | int get_dc_size_chrom(Bitstream * bs); | ||
25 : | |||
26 : | edgomez | 1.6 | int get_coeff(Bitstream * bs, |
27 : | int *run, | ||
28 : | int *last, | ||
29 : | int intra, | ||
30 : | int short_video_header); | ||
31 : | Isibaar | 1.1 | |
32 : | edgomez | 1.6 | void get_intra_block(Bitstream * bs, |
33 : | int16_t * block, | ||
34 : | int direction, | ||
35 : | int coeff); | ||
36 : | void get_inter_block(Bitstream * bs, | ||
37 : | int16_t * block); | ||
38 : | suxen_drol | 1.7 | |
39 : | Isibaar | 1.1 | |
40 : | edgomez | 1.6 | void MBCodingBVOP(const MACROBLOCK * mb, |
41 : | const int16_t qcoeff[6 * 64], | ||
42 : | suxen_drol | 1.5 | const int32_t fcode, |
43 : | const int32_t bcode, | ||
44 : | edgomez | 1.6 | Bitstream * bs, |
45 : | suxen_drol | 1.4 | Statistics * pStat); |
46 : | |||
47 : | edgomez | 1.6 | #endif /* _MB_CODING_H_ */ |
No admin address has been configured | ViewVC Help |
Powered by ViewVC 1.0.4 |