Lines Matching refs:opt1
175 #define mc_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4) \
176 void ff_hevc_put_hevc_##name##width1##_10_##opt1(int16_t *dst, uint8_t *src, ptrdiff_t _srcstride, \
180 ff_hevc_put_hevc_##name##width2##_10_##opt1(dst, src, _srcstride, height, mx, my, width); \
184 #define mc_bi_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4) \
185 void ff_hevc_put_hevc_bi_##name##width1##_10_##opt1(uint8_t *dst, ptrdiff_t dststride, uint8_t *src, \
189 ff_hevc_put_hevc_bi_##name##width2##_10_##opt1(dst, dststride, src, _srcstride, src2, \
195 #define mc_uni_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4) \
196 void ff_hevc_put_hevc_uni_##name##width1##_10_##opt1(uint8_t *dst, ptrdiff_t dststride, \
200 ff_hevc_put_hevc_uni_##name##width2##_10_##opt1(dst, dststride, src, _srcstride, \
206 #define mc_rep_mixs_10(name, width1, width2, width3, opt1, opt2, width4) \
207 mc_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4) \
208 mc_bi_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4) \
209 mc_uni_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4)
211 #define mc_rep_mix_8(name, width1, width2, width3, opt1, opt2) \
212 void ff_hevc_put_hevc_##name##width1##_8_##opt1(int16_t *dst, uint8_t *src, ptrdiff_t _srcstride, \
216 ff_hevc_put_hevc_##name##width2##_8_##opt1(dst, src, _srcstride, height, mx, my, width); \
220 #define mc_bi_rep_mix_8(name, width1, width2, width3, opt1, opt2) \
221 void ff_hevc_put_hevc_bi_##name##width1##_8_##opt1(uint8_t *dst, ptrdiff_t dststride, uint8_t *src, \
225 ff_hevc_put_hevc_bi_##name##width2##_8_##opt1(dst, dststride, src, _srcstride, \
231 #define mc_uni_rep_mix_8(name, width1, width2, width3, opt1, opt2) \
232 void ff_hevc_put_hevc_uni_##name##width1##_8_##opt1(uint8_t *dst, ptrdiff_t dststride, \
236 ff_hevc_put_hevc_uni_##name##width2##_8_##opt1(dst, dststride, src, _srcstride, \
242 #define mc_rep_mixs_8(name, width1, width2, width3, opt1, opt2) \
243 mc_rep_mix_8(name, width1, width2, width3, opt1, opt2) \
244 mc_bi_rep_mix_8(name, width1, width2, width3, opt1, opt2) \
245 mc_uni_rep_mix_8(name, width1, width2, width3, opt1, opt2)