--- trunk/xvidcore/src/bitstream/cbp.h 2002/03/08 02:46:11 3 +++ trunk/xvidcore/src/bitstream/cbp.h 2002/04/17 10:54:19 126 @@ -3,7 +3,7 @@ #include "../portab.h" -typedef uint32_t (cbpFunc)(const int16_t codes[6][64]); +typedef uint32_t (cbpFunc)(const int16_t *codes); typedef cbpFunc* cbpFuncPtr; @@ -11,5 +11,8 @@ extern cbpFunc calc_cbp_c; extern cbpFunc calc_cbp_mmx; +extern cbpFunc calc_cbp_sse2; +extern cbpFunc calc_cbp_ppc; +extern cbpFunc calc_cbp_altivec; #endif /* _ENCODER_CBP_H_ */