31 #define LFC_FUNC(DIR, DEPTH, OPT) \
32 void ff_hevc_ ## DIR ## _loop_filter_chroma_ ## DEPTH ## _ ## OPT(uint8_t *pix, ptrdiff_t stride, int *tc, uint8_t *no_p, uint8_t *no_q);
34 #define LFL_FUNC(DIR, DEPTH, OPT) \
35 void ff_hevc_ ## DIR ## _loop_filter_luma_ ## DEPTH ## _ ## OPT(uint8_t *pix, ptrdiff_t stride, int beta, int *tc, uint8_t *no_p, uint8_t *no_q);
37 #define LFC_FUNCS(type, depth, opt) \
38 LFC_FUNC(h, depth, opt) \
39 LFC_FUNC(v, depth, opt)
41 #define LFL_FUNCS(type, depth, opt) \
42 LFL_FUNC(h, depth, opt) \
43 LFL_FUNC(v, depth, opt)
61 #define IDCT_FUNCS(W, opt) \
62 void ff_hevc_idct##W##_dc_8_##opt(int16_t *coeffs); \
63 void ff_hevc_idct##W##_dc_10_##opt(int16_t *coeffs); \
64 void ff_hevc_idct##W##_dc_12_##opt(int16_t *coeffs)
74 #define mc_rep_func(name, bitd, step, W, opt) \
75 void ff_hevc_put_hevc_##name##W##_##bitd##_##opt(int16_t *_dst, \
76 uint8_t *_src, ptrdiff_t _srcstride, int height, \
77 intptr_t mx, intptr_t my, int width) \
82 for (i = 0; i < W; i += step) { \
83 src = _src + (i * ((bitd + 7) / 8)); \
85 ff_hevc_put_hevc_##name##step##_##bitd##_##opt(dst, src, _srcstride, height, mx, my, width); \
88 #define mc_rep_uni_func(name, bitd, step, W, opt) \
89 void ff_hevc_put_hevc_uni_##name##W##_##bitd##_##opt(uint8_t *_dst, ptrdiff_t dststride, \
90 uint8_t *_src, ptrdiff_t _srcstride, int height, \
91 intptr_t mx, intptr_t my, int width) \
96 for (i = 0; i < W; i += step) { \
97 src = _src + (i * ((bitd + 7) / 8)); \
98 dst = _dst + (i * ((bitd + 7) / 8)); \
99 ff_hevc_put_hevc_uni_##name##step##_##bitd##_##opt(dst, dststride, src, _srcstride, \
100 height, mx, my, width); \
103 #define mc_rep_bi_func(name, bitd, step, W, opt) \
104 void ff_hevc_put_hevc_bi_##name##W##_##bitd##_##opt(uint8_t *_dst, ptrdiff_t dststride, uint8_t *_src, \
105 ptrdiff_t _srcstride, int16_t* _src2, \
106 int height, intptr_t mx, intptr_t my, int width) \
112 for (i = 0; i < W ; i += step) { \
113 src = _src + (i * ((bitd + 7) / 8)); \
114 dst = _dst + (i * ((bitd + 7) / 8)); \
116 ff_hevc_put_hevc_bi_##name##step##_##bitd##_##opt(dst, dststride, src, _srcstride, src2, \
117 height, mx, my, width); \
121 #define mc_rep_funcs(name, bitd, step, W, opt) \
122 mc_rep_func(name, bitd, step, W, opt); \
123 mc_rep_uni_func(name, bitd, step, W, opt); \
124 mc_rep_bi_func(name, bitd, step, W, opt)
126 #define mc_rep_func2(name, bitd, step1, step2, W, opt) \
127 void ff_hevc_put_hevc_##name##W##_##bitd##_##opt(int16_t *dst, \
128 uint8_t *src, ptrdiff_t _srcstride, int height, \
129 intptr_t mx, intptr_t my, int width) \
131 ff_hevc_put_hevc_##name##step1##_##bitd##_##opt(dst, src, _srcstride, height, mx, my, width); \
132 ff_hevc_put_hevc_##name##step2##_##bitd##_##opt(dst + step1, src + (step1 * ((bitd + 7) / 8)), \
133 _srcstride, height, mx, my, width); \
135 #define mc_rep_uni_func2(name, bitd, step1, step2, W, opt) \
136 void ff_hevc_put_hevc_uni_##name##W##_##bitd##_##opt(uint8_t *dst, ptrdiff_t dststride, \
137 uint8_t *src, ptrdiff_t _srcstride, int height, \
138 intptr_t mx, intptr_t my, int width) \
140 ff_hevc_put_hevc_uni_##name##step1##_##bitd##_##opt(dst, dststride, src, _srcstride, height, mx, my, width);\
141 ff_hevc_put_hevc_uni_##name##step2##_##bitd##_##opt(dst + (step1 * ((bitd + 7) / 8)), dststride, \
142 src + (step1 * ((bitd + 7) / 8)), _srcstride, \
143 height, mx, my, width); \
145 #define mc_rep_bi_func2(name, bitd, step1, step2, W, opt) \
146 void ff_hevc_put_hevc_bi_##name##W##_##bitd##_##opt(uint8_t *dst, ptrdiff_t dststride, uint8_t *src, \
147 ptrdiff_t _srcstride, int16_t* src2, \
148 int height, intptr_t mx, intptr_t my, int width) \
150 ff_hevc_put_hevc_bi_##name##step1##_##bitd##_##opt(dst, dststride, src, _srcstride, src2, height, mx, my, width);\
151 ff_hevc_put_hevc_bi_##name##step2##_##bitd##_##opt(dst + (step1 * ((bitd + 7) / 8)), dststride, \
152 src + (step1 * ((bitd + 7) / 8)), _srcstride, \
153 src2 + step1, height, mx, my, width); \
156 #define mc_rep_funcs(name, bitd, step, W, opt) \
157 mc_rep_func(name, bitd, step, W, opt); \
158 mc_rep_uni_func(name, bitd, step, W, opt); \
159 mc_rep_bi_func(name, bitd, step, W, opt)
161 #define mc_rep_funcs2(name, bitd, step1, step2, W, opt) \
162 mc_rep_func2(name, bitd, step1, step2, W, opt); \
163 mc_rep_uni_func2(name, bitd, step1, step2, W, opt); \
164 mc_rep_bi_func2(name, bitd, step1, step2, W, opt)
166 #if ARCH_X86_64 && HAVE_SSE4_EXTERNAL
168 #define mc_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4) \
169 void ff_hevc_put_hevc_##name##width1##_10_##opt1(int16_t *dst, uint8_t *src, ptrdiff_t _srcstride, \
170 int height, intptr_t mx, intptr_t my, int width) \
173 ff_hevc_put_hevc_##name##width2##_10_##opt1(dst, src, _srcstride, height, mx, my, width); \
174 ff_hevc_put_hevc_##name##width3##_10_##opt2(dst+ width2, src+ width4, _srcstride, height, mx, my, width); \
177 #define mc_bi_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4) \
178 void ff_hevc_put_hevc_bi_##name##width1##_10_##opt1(uint8_t *dst, ptrdiff_t dststride, uint8_t *src, \
179 ptrdiff_t _srcstride, int16_t *src2, \
180 int height, intptr_t mx, intptr_t my, int width) \
182 ff_hevc_put_hevc_bi_##name##width2##_10_##opt1(dst, dststride, src, _srcstride, src2, \
183 height, mx, my, width); \
184 ff_hevc_put_hevc_bi_##name##width3##_10_##opt2(dst+width4, dststride, src+width4, _srcstride, src2+width2,\
185 height, mx, my, width); \
188 #define mc_uni_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4) \
189 void ff_hevc_put_hevc_uni_##name##width1##_10_##opt1(uint8_t *dst, ptrdiff_t dststride, \
190 uint8_t *src, ptrdiff_t _srcstride, int height, \
191 intptr_t mx, intptr_t my, int width) \
193 ff_hevc_put_hevc_uni_##name##width2##_10_##opt1(dst, dststride, src, _srcstride, \
194 height, mx, my, width); \
195 ff_hevc_put_hevc_uni_##name##width3##_10_##opt2(dst+width4, dststride, src+width4, _srcstride, \
196 height, mx, my, width); \
199 #define mc_rep_mixs_10(name, width1, width2, width3, opt1, opt2, width4) \
200 mc_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4); \
201 mc_bi_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4); \
202 mc_uni_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4)
204 #define mc_rep_mix_8(name, width1, width2, width3, opt1, opt2) \
205 void ff_hevc_put_hevc_##name##width1##_8_##opt1(int16_t *dst, uint8_t *src, ptrdiff_t _srcstride, \
206 int height, intptr_t mx, intptr_t my, int width) \
209 ff_hevc_put_hevc_##name##width2##_8_##opt1(dst, src, _srcstride, height, mx, my, width); \
210 ff_hevc_put_hevc_##name##width3##_8_##opt2(dst+ width2, src+ width2, _srcstride, height, mx, my, width); \
213 #define mc_bi_rep_mix_8(name, width1, width2, width3, opt1, opt2) \
214 void ff_hevc_put_hevc_bi_##name##width1##_8_##opt1(uint8_t *dst, ptrdiff_t dststride, uint8_t *src, \
215 ptrdiff_t _srcstride, int16_t* src2, \
216 int height, intptr_t mx, intptr_t my, int width) \
218 ff_hevc_put_hevc_bi_##name##width2##_8_##opt1(dst, dststride, src, _srcstride, \
219 src2, height, mx, my, width); \
220 ff_hevc_put_hevc_bi_##name##width3##_8_##opt2(dst+width2, dststride, src+width2, _srcstride, \
221 src2+width2, height, mx, my, width); \
224 #define mc_uni_rep_mix_8(name, width1, width2, width3, opt1, opt2) \
225 void ff_hevc_put_hevc_uni_##name##width1##_8_##opt1(uint8_t *dst, ptrdiff_t dststride, \
226 uint8_t *src, ptrdiff_t _srcstride, int height, \
227 intptr_t mx, intptr_t my, int width) \
229 ff_hevc_put_hevc_uni_##name##width2##_8_##opt1(dst, dststride, src, _srcstride, \
230 height, mx, my, width); \
231 ff_hevc_put_hevc_uni_##name##width3##_8_##opt2(dst+width2, dststride, src+width2, _srcstride, \
232 height, mx, my, width); \
235 #define mc_rep_mixs_8(name, width1, width2, width3, opt1, opt2) \
236 mc_rep_mix_8(name, width1, width2, width3, opt1, opt2); \
237 mc_bi_rep_mix_8(name, width1, width2, width3, opt1, opt2); \
238 mc_uni_rep_mix_8(name, width1, width2, width3, opt1, opt2)
240 #if HAVE_AVX2_EXTERNAL
242 mc_rep_mixs_8(pel_pixels, 48, 32, 16, avx2, sse4);
243 mc_rep_mixs_8(epel_hv, 48, 32, 16, avx2, sse4);
244 mc_rep_mixs_8(epel_h , 48, 32, 16, avx2, sse4);
245 mc_rep_mixs_8(epel_v , 48, 32, 16, avx2, sse4);
247 mc_rep_mix_10(pel_pixels, 24, 16, 8, avx2, sse4, 32);
248 mc_bi_rep_mix_10(pel_pixels,24, 16, 8, avx2, sse4, 32);
249 mc_rep_mixs_10(epel_hv, 24, 16, 8, avx2, sse4, 32);
250 mc_rep_mixs_10(epel_h , 24, 16, 8, avx2, sse4, 32);
251 mc_rep_mixs_10(epel_v , 24, 16, 8, avx2, sse4, 32);
254 mc_rep_mixs_10(qpel_h , 24, 16, 8, avx2, sse4, 32);
255 mc_rep_mixs_10(qpel_v , 24, 16, 8, avx2, sse4, 32);
256 mc_rep_mixs_10(qpel_hv, 24, 16, 8, avx2, sse4, 32);
292 mc_rep_mixs_8(qpel_h , 48, 32, 16, avx2, sse4);
295 mc_rep_mixs_8(qpel_v, 48, 32, 16, avx2, sse4);
429 #define mc_rep_uni_w(bitd, step, W, opt) \
430 void ff_hevc_put_hevc_uni_w##W##_##bitd##_##opt(uint8_t *_dst, ptrdiff_t dststride, int16_t *_src, \
431 int height, int denom, int _wx, int _ox) \
436 for (i = 0; i < W; i += step) { \
438 dst= _dst + (i * ((bitd + 7) / 8)); \
439 ff_hevc_put_hevc_uni_w##step##_##bitd##_##opt(dst, dststride, src, \
440 height, denom, _wx, _ox); \
444 mc_rep_uni_w(8, 6, 12, sse4);
445 mc_rep_uni_w(8, 8, 16, sse4);
446 mc_rep_uni_w(8, 8, 24, sse4);
447 mc_rep_uni_w(8, 8, 32, sse4);
448 mc_rep_uni_w(8, 8, 48, sse4);
449 mc_rep_uni_w(8, 8, 64, sse4);
451 mc_rep_uni_w(10, 6, 12, sse4);
452 mc_rep_uni_w(10, 8, 16, sse4);
453 mc_rep_uni_w(10, 8, 24, sse4);
454 mc_rep_uni_w(10, 8, 32, sse4);
455 mc_rep_uni_w(10, 8, 48, sse4);
456 mc_rep_uni_w(10, 8, 64, sse4);
458 mc_rep_uni_w(12, 6, 12, sse4);
459 mc_rep_uni_w(12, 8, 16, sse4);
460 mc_rep_uni_w(12, 8, 24, sse4);
461 mc_rep_uni_w(12, 8, 32, sse4);
462 mc_rep_uni_w(12, 8, 48, sse4);
463 mc_rep_uni_w(12, 8, 64, sse4);
465 #define mc_rep_bi_w(bitd, step, W, opt) \
466 void ff_hevc_put_hevc_bi_w##W##_##bitd##_##opt(uint8_t *_dst, ptrdiff_t dststride, int16_t *_src, \
467 int16_t *_src2, int height, \
468 int denom, int _wx0, int _wx1, int _ox0, int _ox1) \
474 for (i = 0; i < W; i += step) { \
477 dst = _dst + (i * ((bitd + 7) / 8)); \
478 ff_hevc_put_hevc_bi_w##step##_##bitd##_##opt(dst, dststride, src, src2, \
479 height, denom, _wx0, _wx1, _ox0, _ox1); \
483 mc_rep_bi_w(8, 6, 12, sse4);
484 mc_rep_bi_w(8, 8, 16, sse4);
485 mc_rep_bi_w(8, 8, 24, sse4);
486 mc_rep_bi_w(8, 8, 32, sse4);
487 mc_rep_bi_w(8, 8, 48, sse4);
488 mc_rep_bi_w(8, 8, 64, sse4);
490 mc_rep_bi_w(10, 6, 12, sse4);
491 mc_rep_bi_w(10, 8, 16, sse4);
492 mc_rep_bi_w(10, 8, 24, sse4);
493 mc_rep_bi_w(10, 8, 32, sse4);
494 mc_rep_bi_w(10, 8, 48, sse4);
495 mc_rep_bi_w(10, 8, 64, sse4);
497 mc_rep_bi_w(12, 6, 12, sse4);
498 mc_rep_bi_w(12, 8, 16, sse4);
499 mc_rep_bi_w(12, 8, 24, sse4);
500 mc_rep_bi_w(12, 8, 32, sse4);
501 mc_rep_bi_w(12, 8, 48, sse4);
502 mc_rep_bi_w(12, 8, 64, sse4);
504 #define mc_uni_w_func(name, bitd, W, opt) \
505 void ff_hevc_put_hevc_uni_w_##name##W##_##bitd##_##opt(uint8_t *_dst, ptrdiff_t _dststride, \
506 uint8_t *_src, ptrdiff_t _srcstride, \
507 int height, int denom, \
509 intptr_t mx, intptr_t my, int width) \
511 LOCAL_ALIGNED_16(int16_t, temp, [71 * MAX_PB_SIZE]); \
512 ff_hevc_put_hevc_##name##W##_##bitd##_##opt(temp, _src, _srcstride, height, mx, my, width); \
513 ff_hevc_put_hevc_uni_w##W##_##bitd##_##opt(_dst, _dststride, temp, height, denom, _wx, _ox);\
516 #define mc_uni_w_funcs(name, bitd, opt) \
517 mc_uni_w_func(name, bitd, 4, opt); \
518 mc_uni_w_func(name, bitd, 8, opt); \
519 mc_uni_w_func(name, bitd, 12, opt); \
520 mc_uni_w_func(name, bitd, 16, opt); \
521 mc_uni_w_func(name, bitd, 24, opt); \
522 mc_uni_w_func(name, bitd, 32, opt); \
523 mc_uni_w_func(name, bitd, 48, opt); \
524 mc_uni_w_func(name, bitd, 64, opt)
526 mc_uni_w_funcs(pel_pixels, 8, sse4);
527 mc_uni_w_func(pel_pixels, 8, 6, sse4);
528 mc_uni_w_funcs(epel_h, 8, sse4);
529 mc_uni_w_func(epel_h, 8, 6, sse4);
530 mc_uni_w_funcs(epel_v, 8, sse4);
531 mc_uni_w_func(epel_v, 8, 6, sse4);
532 mc_uni_w_funcs(epel_hv, 8, sse4);
533 mc_uni_w_func(epel_hv, 8, 6, sse4);
534 mc_uni_w_funcs(qpel_h, 8, sse4);
535 mc_uni_w_funcs(qpel_v, 8, sse4);
536 mc_uni_w_funcs(qpel_hv, 8, sse4);
538 mc_uni_w_funcs(pel_pixels, 10, sse4);
539 mc_uni_w_func(pel_pixels, 10, 6, sse4);
540 mc_uni_w_funcs(epel_h, 10, sse4);
541 mc_uni_w_func(epel_h, 10, 6, sse4);
542 mc_uni_w_funcs(epel_v, 10, sse4);
543 mc_uni_w_func(epel_v, 10, 6, sse4);
544 mc_uni_w_funcs(epel_hv, 10, sse4);
545 mc_uni_w_func(epel_hv, 10, 6, sse4);
546 mc_uni_w_funcs(qpel_h, 10, sse4);
547 mc_uni_w_funcs(qpel_v, 10, sse4);
548 mc_uni_w_funcs(qpel_hv, 10, sse4);
550 mc_uni_w_funcs(pel_pixels, 12, sse4);
551 mc_uni_w_func(pel_pixels, 12, 6, sse4);
552 mc_uni_w_funcs(epel_h, 12, sse4);
553 mc_uni_w_func(epel_h, 12, 6, sse4);
554 mc_uni_w_funcs(epel_v, 12, sse4);
555 mc_uni_w_func(epel_v, 12, 6, sse4);
556 mc_uni_w_funcs(epel_hv, 12, sse4);
557 mc_uni_w_func(epel_hv, 12, 6, sse4);
558 mc_uni_w_funcs(qpel_h, 12, sse4);
559 mc_uni_w_funcs(qpel_v, 12, sse4);
560 mc_uni_w_funcs(qpel_hv, 12, sse4);
562 #define mc_bi_w_func(name, bitd, W, opt) \
563 void ff_hevc_put_hevc_bi_w_##name##W##_##bitd##_##opt(uint8_t *_dst, ptrdiff_t _dststride, \
564 uint8_t *_src, ptrdiff_t _srcstride, \
566 int height, int denom, \
567 int _wx0, int _wx1, int _ox0, int _ox1, \
568 intptr_t mx, intptr_t my, int width) \
570 LOCAL_ALIGNED_16(int16_t, temp, [71 * MAX_PB_SIZE]); \
571 ff_hevc_put_hevc_##name##W##_##bitd##_##opt(temp, _src, _srcstride, height, mx, my, width); \
572 ff_hevc_put_hevc_bi_w##W##_##bitd##_##opt(_dst, _dststride, temp, _src2, \
573 height, denom, _wx0, _wx1, _ox0, _ox1); \
576 #define mc_bi_w_funcs(name, bitd, opt) \
577 mc_bi_w_func(name, bitd, 4, opt); \
578 mc_bi_w_func(name, bitd, 8, opt); \
579 mc_bi_w_func(name, bitd, 12, opt); \
580 mc_bi_w_func(name, bitd, 16, opt); \
581 mc_bi_w_func(name, bitd, 24, opt); \
582 mc_bi_w_func(name, bitd, 32, opt); \
583 mc_bi_w_func(name, bitd, 48, opt); \
584 mc_bi_w_func(name, bitd, 64, opt)
586 mc_bi_w_funcs(pel_pixels, 8, sse4);
587 mc_bi_w_func(pel_pixels, 8, 6, sse4);
588 mc_bi_w_funcs(epel_h, 8, sse4);
589 mc_bi_w_func(epel_h, 8, 6, sse4);
590 mc_bi_w_funcs(epel_v, 8, sse4);
591 mc_bi_w_func(epel_v, 8, 6, sse4);
592 mc_bi_w_funcs(epel_hv, 8, sse4);
593 mc_bi_w_func(epel_hv, 8, 6, sse4);
594 mc_bi_w_funcs(qpel_h, 8, sse4);
595 mc_bi_w_funcs(qpel_v, 8, sse4);
596 mc_bi_w_funcs(qpel_hv, 8, sse4);
598 mc_bi_w_funcs(pel_pixels, 10, sse4);
599 mc_bi_w_func(pel_pixels, 10, 6, sse4);
600 mc_bi_w_funcs(epel_h, 10, sse4);
601 mc_bi_w_func(epel_h, 10, 6, sse4);
602 mc_bi_w_funcs(epel_v, 10, sse4);
603 mc_bi_w_func(epel_v, 10, 6, sse4);
604 mc_bi_w_funcs(epel_hv, 10, sse4);
605 mc_bi_w_func(epel_hv, 10, 6, sse4);
606 mc_bi_w_funcs(qpel_h, 10, sse4);
607 mc_bi_w_funcs(qpel_v, 10, sse4);
608 mc_bi_w_funcs(qpel_hv, 10, sse4);
610 mc_bi_w_funcs(pel_pixels, 12, sse4);
611 mc_bi_w_func(pel_pixels, 12, 6, sse4);
612 mc_bi_w_funcs(epel_h, 12, sse4);
613 mc_bi_w_func(epel_h, 12, 6, sse4);
614 mc_bi_w_funcs(epel_v, 12, sse4);
615 mc_bi_w_func(epel_v, 12, 6, sse4);
616 mc_bi_w_funcs(epel_hv, 12, sse4);
617 mc_bi_w_func(epel_hv, 12, 6, sse4);
618 mc_bi_w_funcs(qpel_h, 12, sse4);
619 mc_bi_w_funcs(qpel_v, 12, sse4);
620 mc_bi_w_funcs(qpel_hv, 12, sse4);
621 #endif //ARCH_X86_64 && HAVE_SSE4_EXTERNAL
623 #define SAO_BAND_FILTER_FUNCS(bitd, opt) \
624 void ff_hevc_sao_band_filter_8_##bitd##_##opt(uint8_t *_dst, uint8_t *_src, ptrdiff_t _stride_dst, ptrdiff_t _stride_src, \
625 int16_t *sao_offset_val, int sao_left_class, int width, int height); \
626 void ff_hevc_sao_band_filter_16_##bitd##_##opt(uint8_t *_dst, uint8_t *_src, ptrdiff_t _stride_dst, ptrdiff_t _stride_src, \
627 int16_t *sao_offset_val, int sao_left_class, int width, int height); \
628 void ff_hevc_sao_band_filter_32_##bitd##_##opt(uint8_t *_dst, uint8_t *_src, ptrdiff_t _stride_dst, ptrdiff_t _stride_src, \
629 int16_t *sao_offset_val, int sao_left_class, int width, int height); \
630 void ff_hevc_sao_band_filter_48_##bitd##_##opt(uint8_t *_dst, uint8_t *_src, ptrdiff_t _stride_dst, ptrdiff_t _stride_src, \
631 int16_t *sao_offset_val, int sao_left_class, int width, int height); \
632 void ff_hevc_sao_band_filter_64_##bitd##_##opt(uint8_t *_dst, uint8_t *_src, ptrdiff_t _stride_dst, ptrdiff_t _stride_src, \
633 int16_t *sao_offset_val, int sao_left_class, int width, int height)
645 #define SAO_BAND_INIT(bitd, opt) do { \
646 c->sao_band_filter[0] = ff_hevc_sao_band_filter_8_##bitd##_##opt; \
647 c->sao_band_filter[1] = ff_hevc_sao_band_filter_16_##bitd##_##opt; \
648 c->sao_band_filter[2] = ff_hevc_sao_band_filter_32_##bitd##_##opt; \
649 c->sao_band_filter[3] = ff_hevc_sao_band_filter_48_##bitd##_##opt; \
650 c->sao_band_filter[4] = ff_hevc_sao_band_filter_64_##bitd##_##opt; \
653 #define SAO_EDGE_FILTER_FUNCS(bitd, opt) \
654 void ff_hevc_sao_edge_filter_8_##bitd##_##opt(uint8_t *_dst, uint8_t *_src, ptrdiff_t stride_dst, int16_t *sao_offset_val, \
655 int eo, int width, int height); \
656 void ff_hevc_sao_edge_filter_16_##bitd##_##opt(uint8_t *_dst, uint8_t *_src, ptrdiff_t stride_dst, int16_t *sao_offset_val, \
657 int eo, int width, int height); \
658 void ff_hevc_sao_edge_filter_32_##bitd##_##opt(uint8_t *_dst, uint8_t *_src, ptrdiff_t stride_dst, int16_t *sao_offset_val, \
659 int eo, int width, int height); \
660 void ff_hevc_sao_edge_filter_48_##bitd##_##opt(uint8_t *_dst, uint8_t *_src, ptrdiff_t stride_dst, int16_t *sao_offset_val, \
661 int eo, int width, int height); \
662 void ff_hevc_sao_edge_filter_64_##bitd##_##opt(uint8_t *_dst, uint8_t *_src, ptrdiff_t stride_dst, int16_t *sao_offset_val, \
663 int eo, int width, int height); \
672 #define SAO_EDGE_INIT(bitd, opt) do { \
673 c->sao_edge_filter[0] = ff_hevc_sao_edge_filter_8_##bitd##_##opt; \
674 c->sao_edge_filter[1] = ff_hevc_sao_edge_filter_16_##bitd##_##opt; \
675 c->sao_edge_filter[2] = ff_hevc_sao_edge_filter_32_##bitd##_##opt; \
676 c->sao_edge_filter[3] = ff_hevc_sao_edge_filter_48_##bitd##_##opt; \
677 c->sao_edge_filter[4] = ff_hevc_sao_edge_filter_64_##bitd##_##opt; \
680 #define EPEL_LINKS(pointer, my, mx, fname, bitd, opt ) \
681 PEL_LINK(pointer, 1, my , mx , fname##4 , bitd, opt ); \
682 PEL_LINK(pointer, 2, my , mx , fname##6 , bitd, opt ); \
683 PEL_LINK(pointer, 3, my , mx , fname##8 , bitd, opt ); \
684 PEL_LINK(pointer, 4, my , mx , fname##12, bitd, opt ); \
685 PEL_LINK(pointer, 5, my , mx , fname##16, bitd, opt ); \
686 PEL_LINK(pointer, 6, my , mx , fname##24, bitd, opt ); \
687 PEL_LINK(pointer, 7, my , mx , fname##32, bitd, opt ); \
688 PEL_LINK(pointer, 8, my , mx , fname##48, bitd, opt ); \
689 PEL_LINK(pointer, 9, my , mx , fname##64, bitd, opt )
690 #define QPEL_LINKS(pointer, my, mx, fname, bitd, opt) \
691 PEL_LINK(pointer, 1, my , mx , fname##4 , bitd, opt ); \
692 PEL_LINK(pointer, 3, my , mx , fname##8 , bitd, opt ); \
693 PEL_LINK(pointer, 4, my , mx , fname##12, bitd, opt ); \
694 PEL_LINK(pointer, 5, my , mx , fname##16, bitd, opt ); \
695 PEL_LINK(pointer, 6, my , mx , fname##24, bitd, opt ); \
696 PEL_LINK(pointer, 7, my , mx , fname##32, bitd, opt ); \
697 PEL_LINK(pointer, 8, my , mx , fname##48, bitd, opt ); \
698 PEL_LINK(pointer, 9, my , mx , fname##64, bitd, opt )
704 if (bit_depth == 8) {
706 c->
idct_dc[0] = ff_hevc_idct4x4_dc_8_mmxext;
707 c->
idct_dc[1] = ff_hevc_idct8x8_dc_8_mmxext;
720 c->
idct_dc[1] = ff_hevc_idct8x8_dc_8_sse2;
721 c->
idct_dc[2] = ff_hevc_idct16x16_dc_8_sse2;
722 c->
idct_dc[3] = ff_hevc_idct32x32_dc_8_sse2;
761 c->
idct_dc[2] = ff_hevc_idct16x16_dc_8_avx2;
762 c->
idct_dc[3] = ff_hevc_idct32x32_dc_8_avx2;
788 c->
put_hevc_epel[7][0][1] = ff_hevc_put_hevc_epel_h32_8_avx2;
789 c->
put_hevc_epel[8][0][1] = ff_hevc_put_hevc_epel_h48_8_avx2;
790 c->
put_hevc_epel[9][0][1] = ff_hevc_put_hevc_epel_h64_8_avx2;
800 c->
put_hevc_epel[7][1][0] = ff_hevc_put_hevc_epel_v32_8_avx2;
801 c->
put_hevc_epel[8][1][0] = ff_hevc_put_hevc_epel_v48_8_avx2;
802 c->
put_hevc_epel[9][1][0] = ff_hevc_put_hevc_epel_v64_8_avx2;
812 c->
put_hevc_epel[7][1][1] = ff_hevc_put_hevc_epel_hv32_8_avx2;
813 c->
put_hevc_epel[8][1][1] = ff_hevc_put_hevc_epel_hv48_8_avx2;
814 c->
put_hevc_epel[9][1][1] = ff_hevc_put_hevc_epel_hv64_8_avx2;
824 c->
put_hevc_qpel[7][0][1] = ff_hevc_put_hevc_qpel_h32_8_avx2;
825 c->
put_hevc_qpel[8][0][1] = ff_hevc_put_hevc_qpel_h48_8_avx2;
826 c->
put_hevc_qpel[9][0][1] = ff_hevc_put_hevc_qpel_h64_8_avx2;
828 c->
put_hevc_qpel[7][1][0] = ff_hevc_put_hevc_qpel_v32_8_avx2;
829 c->
put_hevc_qpel[8][1][0] = ff_hevc_put_hevc_qpel_v48_8_avx2;
830 c->
put_hevc_qpel[9][1][0] = ff_hevc_put_hevc_qpel_v64_8_avx2;
856 }
else if (bit_depth == 10) {
859 c->
idct_dc[0] = ff_hevc_idct4x4_dc_10_mmxext;
860 c->
idct_dc[1] = ff_hevc_idct8x8_dc_10_mmxext;
872 c->
idct_dc[1] = ff_hevc_idct8x8_dc_10_sse2;
873 c->
idct_dc[2] = ff_hevc_idct16x16_dc_10_sse2;
874 c->
idct_dc[3] = ff_hevc_idct32x32_dc_10_sse2;
906 c->
idct_dc[2] = ff_hevc_idct16x16_dc_10_avx2;
907 c->
idct_dc[3] = ff_hevc_idct32x32_dc_10_avx2;
944 c->
put_hevc_epel[5][0][1] = ff_hevc_put_hevc_epel_h16_10_avx2;
945 c->
put_hevc_epel[6][0][1] = ff_hevc_put_hevc_epel_h24_10_avx2;
946 c->
put_hevc_epel[7][0][1] = ff_hevc_put_hevc_epel_h32_10_avx2;
947 c->
put_hevc_epel[8][0][1] = ff_hevc_put_hevc_epel_h48_10_avx2;
948 c->
put_hevc_epel[9][0][1] = ff_hevc_put_hevc_epel_h64_10_avx2;
962 c->
put_hevc_epel[5][1][0] = ff_hevc_put_hevc_epel_v16_10_avx2;
963 c->
put_hevc_epel[6][1][0] = ff_hevc_put_hevc_epel_v24_10_avx2;
964 c->
put_hevc_epel[7][1][0] = ff_hevc_put_hevc_epel_v32_10_avx2;
965 c->
put_hevc_epel[8][1][0] = ff_hevc_put_hevc_epel_v48_10_avx2;
966 c->
put_hevc_epel[9][1][0] = ff_hevc_put_hevc_epel_v64_10_avx2;
980 c->
put_hevc_epel[5][1][1] = ff_hevc_put_hevc_epel_hv16_10_avx2;
981 c->
put_hevc_epel[6][1][1] = ff_hevc_put_hevc_epel_hv24_10_avx2;
982 c->
put_hevc_epel[7][1][1] = ff_hevc_put_hevc_epel_hv32_10_avx2;
983 c->
put_hevc_epel[8][1][1] = ff_hevc_put_hevc_epel_hv48_10_avx2;
984 c->
put_hevc_epel[9][1][1] = ff_hevc_put_hevc_epel_hv64_10_avx2;
998 c->
put_hevc_qpel[5][0][1] = ff_hevc_put_hevc_qpel_h16_10_avx2;
999 c->
put_hevc_qpel[6][0][1] = ff_hevc_put_hevc_qpel_h24_10_avx2;
1000 c->
put_hevc_qpel[7][0][1] = ff_hevc_put_hevc_qpel_h32_10_avx2;
1001 c->
put_hevc_qpel[8][0][1] = ff_hevc_put_hevc_qpel_h48_10_avx2;
1002 c->
put_hevc_qpel[9][0][1] = ff_hevc_put_hevc_qpel_h64_10_avx2;
1016 c->
put_hevc_qpel[5][1][0] = ff_hevc_put_hevc_qpel_v16_10_avx2;
1017 c->
put_hevc_qpel[6][1][0] = ff_hevc_put_hevc_qpel_v24_10_avx2;
1018 c->
put_hevc_qpel[7][1][0] = ff_hevc_put_hevc_qpel_v32_10_avx2;
1019 c->
put_hevc_qpel[8][1][0] = ff_hevc_put_hevc_qpel_v48_10_avx2;
1020 c->
put_hevc_qpel[9][1][0] = ff_hevc_put_hevc_qpel_v64_10_avx2;
1034 c->
put_hevc_qpel[5][1][1] = ff_hevc_put_hevc_qpel_hv16_10_avx2;
1035 c->
put_hevc_qpel[6][1][1] = ff_hevc_put_hevc_qpel_hv24_10_avx2;
1036 c->
put_hevc_qpel[7][1][1] = ff_hevc_put_hevc_qpel_hv32_10_avx2;
1037 c->
put_hevc_qpel[8][1][1] = ff_hevc_put_hevc_qpel_hv48_10_avx2;
1038 c->
put_hevc_qpel[9][1][1] = ff_hevc_put_hevc_qpel_hv64_10_avx2;
1061 }
else if (bit_depth == 12) {
1063 c->
idct_dc[0] = ff_hevc_idct4x4_dc_12_mmxext;
1064 c->
idct_dc[1] = ff_hevc_idct8x8_dc_12_mmxext;
1076 c->
idct_dc[1] = ff_hevc_idct8x8_dc_12_sse2;
1077 c->
idct_dc[2] = ff_hevc_idct16x16_dc_12_sse2;
1078 c->
idct_dc[3] = ff_hevc_idct32x32_dc_12_sse2;
1105 c->
idct_dc[2] = ff_hevc_idct16x16_dc_12_avx2;
1106 c->
idct_dc[3] = ff_hevc_idct32x32_dc_12_avx2;