[cvs] / xvidcore / src / bitstream / mbcoding.h Repository:
ViewVC logotype

Annotation of /xvidcore/src/bitstream/mbcoding.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.8.2.1 - (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 int check_resync_marker(Bitstream * bs, int addbits);
11 :    
12 : Isibaar 1.1 int get_mcbpc_intra(Bitstream * bs);
13 :     int get_mcbpc_inter(Bitstream * bs);
14 : edgomez 1.6 int get_cbpy(Bitstream * bs,
15 :     int intra);
16 :     int get_mv(Bitstream * bs,
17 :     int fcode);
18 : Isibaar 1.1
19 : edgomez 1.6 int get_dc_dif(Bitstream * bs,
20 :     uint32_t dc_size);
21 : Isibaar 1.1 int get_dc_size_lum(Bitstream * bs);
22 :     int get_dc_size_chrom(Bitstream * bs);
23 :    
24 : chl 1.8.2.1 static int get_coeff(Bitstream * bs,
25 : edgomez 1.6 int *run,
26 :     int *last,
27 :     int intra,
28 :     int short_video_header);
29 : Isibaar 1.1
30 : edgomez 1.6 void get_intra_block(Bitstream * bs,
31 :     int16_t * block,
32 :     int direction,
33 :     int coeff);
34 :     void get_inter_block(Bitstream * bs,
35 :     int16_t * block);
36 : suxen_drol 1.7
37 : Isibaar 1.1
38 : edgomez 1.6 void MBCodingBVOP(const MACROBLOCK * mb,
39 :     const int16_t qcoeff[6 * 64],
40 : suxen_drol 1.5 const int32_t fcode,
41 :     const int32_t bcode,
42 : edgomez 1.6 Bitstream * bs,
43 : suxen_drol 1.4 Statistics * pStat);
44 : chl 1.8.2.1
45 :    
46 :     static __inline void
47 :     MBSkip(Bitstream * bs)
48 :     {
49 :     BitstreamPutBit(bs, 1); // not coded
50 :     }
51 : suxen_drol 1.4
52 : edgomez 1.6 #endif /* _MB_CODING_H_ */

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4