comparison x86/vc1dsp_mmx.c @ 11381:f5ccf2e590d6 libavcodec

x86: move function prototypes to header files
author mru
date Sat, 06 Mar 2010 22:37:08 +0000
parents 98970e51365a
children fdafbcef52f5
comparison
equal deleted inserted replaced
11380:8f061327e46a 11381:f5ccf2e590d6
461 } 461 }
462 462
463 VC1_MSPEL_MC(put_) 463 VC1_MSPEL_MC(put_)
464 VC1_MSPEL_MC(avg_) 464 VC1_MSPEL_MC(avg_)
465 465
466 void ff_put_vc1_mspel_mc00_mmx(uint8_t *dst, const uint8_t *src, int stride, int rnd);
467 void ff_avg_vc1_mspel_mc00_mmx2(uint8_t *dst, const uint8_t *src, int stride, int rnd);
468
469 /** Macro to ease bicubic filter interpolation functions declarations */ 466 /** Macro to ease bicubic filter interpolation functions declarations */
470 #define DECLARE_FUNCTION(a, b) \ 467 #define DECLARE_FUNCTION(a, b) \
471 static void put_vc1_mspel_mc ## a ## b ## _mmx(uint8_t *dst, const uint8_t *src, int stride, int rnd) { \ 468 static void put_vc1_mspel_mc ## a ## b ## _mmx(uint8_t *dst, const uint8_t *src, int stride, int rnd) { \
472 put_vc1_mspel_mc(dst, src, stride, a, b, rnd); \ 469 put_vc1_mspel_mc(dst, src, stride, a, b, rnd); \
473 }\ 470 }\