comparison x86/vp8dsp-init.c @ 12042:dc4feabd4dab libavcodec

Fix 100L in vp8dsp asm init
author darkshikari
date Thu, 01 Jul 2010 22:09:22 +0000
parents 2ae70e2c31a4
children b8f80fe02861
comparison
equal deleted inserted replaced
12041:6681ac7bc917 12042:dc4feabd4dab
241 * is only used for luma, and luma is always a copy or sixtap. */ 241 * is only used for luma, and luma is always a copy or sixtap. */
242 if (mm_flags & FF_MM_MMX2) { 242 if (mm_flags & FF_MM_MMX2) {
243 c->vp8_luma_dc_wht = ff_vp8_luma_dc_wht_mmxext; 243 c->vp8_luma_dc_wht = ff_vp8_luma_dc_wht_mmxext;
244 VP8_LUMA_MC_FUNC(0, 16, mmxext); 244 VP8_LUMA_MC_FUNC(0, 16, mmxext);
245 VP8_MC_FUNC(1, 8, mmxext); 245 VP8_MC_FUNC(1, 8, mmxext);
246 VP8_MC_FUNC(1, 4, mmxext); 246 VP8_MC_FUNC(2, 4, mmxext);
247 VP8_BILINEAR_MC_FUNC(0, 16, mmxext); 247 VP8_BILINEAR_MC_FUNC(0, 16, mmxext);
248 VP8_BILINEAR_MC_FUNC(1, 8, mmxext); 248 VP8_BILINEAR_MC_FUNC(1, 8, mmxext);
249 VP8_BILINEAR_MC_FUNC(1, 4, mmxext); 249 VP8_BILINEAR_MC_FUNC(2, 4, mmxext);
250 } 250 }
251 251
252 if (mm_flags & FF_MM_SSE) { 252 if (mm_flags & FF_MM_SSE) {
253 c->put_vp8_epel_pixels_tab[0][0][0] = 253 c->put_vp8_epel_pixels_tab[0][0][0] =
254 c->put_vp8_bilinear_pixels_tab[0][0][0] = ff_put_vp8_pixels16_sse; 254 c->put_vp8_bilinear_pixels_tab[0][0][0] = ff_put_vp8_pixels16_sse;