--- mbcoding.h 2002/06/28 15:14:40 1.7 +++ mbcoding.h 2002/09/23 20:36:01 1.8.2.1 @@ -7,8 +7,6 @@ void init_vlc_tables(void); -void skip_stuffing(Bitstream *bs); - int check_resync_marker(Bitstream * bs, int addbits); int get_mcbpc_intra(Bitstream * bs); @@ -23,7 +21,7 @@ int get_dc_size_lum(Bitstream * bs); int get_dc_size_chrom(Bitstream * bs); -int get_coeff(Bitstream * bs, +static int get_coeff(Bitstream * bs, int *run, int *last, int intra, @@ -44,4 +42,11 @@ Bitstream * bs, Statistics * pStat); + +static __inline void +MBSkip(Bitstream * bs) +{ + BitstreamPutBit(bs, 1); // not coded +} + #endif /* _MB_CODING_H_ */