--- xvid.c 2002/03/17 08:20:02 1.3 +++ xvid.c 2002/03/27 12:58:29 1.6 @@ -186,9 +186,17 @@ if((cpu_flags & XVID_CPU_3DNOW) > 0) { interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_3dn; interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_3dn; + interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_3dn; } #endif +#ifdef ARCH_PPC +#ifdef ARCH_PPC_ALTIVEC + calc_cbp = calc_cbp_altivec; +#else + calc_cbp = calc_cbp_ppc; +#endif +#endif // API version init_param->api_version = API_VERSION;