--- branches/dev-api-3/xvidcore/src/bitstream/mbcoding.h 2002/09/23 10:59:10 529 +++ branches/dev-api-3/xvidcore/src/bitstream/mbcoding.h 2002/09/23 20:36:02 530 @@ -21,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, @@ -42,4 +42,11 @@ Bitstream * bs, Statistics * pStat); + +static __inline void +MBSkip(Bitstream * bs) +{ + BitstreamPutBit(bs, 1); // not coded +} + #endif /* _MB_CODING_H_ */