Lines Matching refs:ifmt
30 #define DECLARE_FF_YUVX_TO_RGBX_FUNCS(ifmt, ofmt) \
31 int ff_##ifmt##_to_##ofmt##_neon(int w, int h, \
40 static int ifmt##_to_##ofmt##_neon_wrapper(SwsContext *c, const uint8_t *src[], \
45 return ff_##ifmt##_to_##ofmt##_neon(c->srcW, srcSliceH, \
64 #define DECLARE_FF_NVX_TO_RGBX_FUNCS(ifmt, ofmt) \
65 int ff_##ifmt##_to_##ofmt##_neon(int w, int h, \
73 static int ifmt##_to_##ofmt##_neon_wrapper(SwsContext *c, const uint8_t *src[], \
78 return ff_##ifmt##_to_##ofmt##_neon(c->srcW, srcSliceH, \
99 #define SET_FF_NVX_TO_RGBX_FUNC(ifmt, IFMT, ofmt, OFMT, accurate_rnd) do { \
105 c->convert_unscaled = ifmt##_to_##ofmt##_neon_wrapper; \