--- xvid.c 2002/06/23 03:58:32 1.21 +++ xvid.c 2002/06/26 15:59:51 1.23 @@ -36,7 +36,7 @@ * - 22.12.2001 API change: added xvid_init() - Isibaar * - 16.12.2001 inital version; (c)2001 peter ross * - * $Id: xvid.c,v 1.21 2002/06/23 03:58:32 suxen_drol Exp $ + * $Id: xvid.c,v 1.23 2002/06/26 15:59:51 ia64p Exp $ * ****************************************************************************/ @@ -98,11 +98,7 @@ cpu_flags = init_param->cpu_flags; } else { -#ifdef ARCH_X86 cpu_flags = check_cpu_features(); -#else - cpu_flags = 0; -#endif init_param->cpu_flags = cpu_flags; } @@ -197,9 +193,11 @@ transfer_8to16copy = transfer_8to16copy_mmx; transfer_16to8copy = transfer_16to8copy_mmx; transfer_8to16sub = transfer_8to16sub_mmx; + transfer_8to16sub2 = transfer_8to16sub2_mmx; transfer_16to8add = transfer_16to8add_mmx; transfer8x8_copy = transfer8x8_copy_mmx; + /* Image Interpolation related functions */ interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_mmx; interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_mmx;