comparison vp8dsp.c @ 11975:c3afb5be0d9b libavcodec

First shot at VP8 optimizations: - MMXEXT, SSE2 and SSSE3 MC functions - MMX and SSE4 IDCT dc_add functions Patch by Jason Garrett-Glaser <darkshikari gmail com> and myself.
author rbultje
date Sun, 27 Jun 2010 02:01:45 +0000
parents 356b20a6566d
children 1cffcc7b1470
comparison
equal deleted inserted replaced
11974:356b20a6566d 11975:c3afb5be0d9b
449 VP8_MC_FUNC(2, 4); 449 VP8_MC_FUNC(2, 4);
450 450
451 VP8_BILINEAR_MC_FUNC(0, 16); 451 VP8_BILINEAR_MC_FUNC(0, 16);
452 VP8_BILINEAR_MC_FUNC(1, 8); 452 VP8_BILINEAR_MC_FUNC(1, 8);
453 VP8_BILINEAR_MC_FUNC(2, 4); 453 VP8_BILINEAR_MC_FUNC(2, 4);
454 } 454
455 if (ARCH_X86)
456 ff_vp8dsp_init_x86(dsp);
457 }