Lines Matching refs:EXT
45 #define HPEL_FILTER(MMSIZE, EXT) \ argument
46 void ff_dirac_hpel_filter_v_ ## EXT(uint8_t *, const uint8_t *, int, int); \
47 void ff_dirac_hpel_filter_h_ ## EXT(uint8_t *, const uint8_t *, int); \
49 static void dirac_hpel_filter_ ## EXT(uint8_t *dsth, uint8_t *dstv, uint8_t *dstc, \
54 ff_dirac_hpel_filter_v_ ## EXT(dstv-MMSIZE, src-MMSIZE, stride, width+MMSIZE+5); \
55 ff_dirac_hpel_filter_h_ ## EXT(dsth, src, width); \
56 ff_dirac_hpel_filter_h_ ## EXT(dstc, dstv, width); \
65 #define PIXFUNC(PFX, IDX, EXT) \ argument
67 c->PFX ## _dirac_pixels_tab[1][IDX] = PFX ## _dirac_pixels16_ ## EXT; \
68 c->PFX ## _dirac_pixels_tab[2][IDX] = PFX ## _dirac_pixels32_ ## EXT
70 #define DIRAC_PIXOP(OPNAME, EXT)\ argument
71 static void OPNAME ## _dirac_pixels16_ ## EXT(uint8_t *dst, const uint8_t *src[5], \
77 ff_ ## OPNAME ## _pixels16_ ## EXT(dst, src[0], stride, h);\
79 static void OPNAME ## _dirac_pixels32_ ## EXT(uint8_t *dst, const uint8_t *src[5], \
85 ff_ ## OPNAME ## _pixels16_ ## EXT(dst , src[0] , stride, h);\
86 ff_ ## OPNAME ## _pixels16_ ## EXT(dst+16, src[0]+16, stride, h);\