| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | /* | ||
| 2 | * Copyright (c) 2013 Seppo Tomperi | ||
| 3 | * Copyright (c) 2013-2014 Pierre-Edouard Lepere | ||
| 4 | * Copyright (c) 2023-2024 Wu Jianhua | ||
| 5 | * | ||
| 6 | * This file is part of FFmpeg. | ||
| 7 | * | ||
| 8 | * FFmpeg is free software; you can redistribute it and/or | ||
| 9 | * modify it under the terms of the GNU Lesser General Public | ||
| 10 | * License as published by the Free Software Foundation; either | ||
| 11 | * version 2.1 of the License, or (at your option) any later version. | ||
| 12 | * | ||
| 13 | * FFmpeg is distributed in the hope that it will be useful, | ||
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| 16 | * Lesser General Public License for more details. | ||
| 17 | * | ||
| 18 | * You should have received a copy of the GNU Lesser General Public | ||
| 19 | * License along with FFmpeg; if not, write to the Free Software | ||
| 20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
| 21 | */ | ||
| 22 | |||
| 23 | #include "config.h" | ||
| 24 | |||
| 25 | #include "libavutil/cpu.h" | ||
| 26 | #include "libavutil/mem_internal.h" | ||
| 27 | #include "libavutil/x86/asm.h" | ||
| 28 | #include "libavutil/x86/cpu.h" | ||
| 29 | #include "libavcodec/hevc/dsp.h" | ||
| 30 | #include "libavcodec/x86/hevc/dsp.h" | ||
| 31 | #include "libavcodec/x86/h26x/h2656dsp.h" | ||
| 32 | |||
| 33 | void ff_hevc_dequant_8_ssse3(int16_t *coeffs, int16_t log2_size); | ||
| 34 | |||
| 35 | #define LFC_FUNC(DIR, DEPTH, OPT) \ | ||
| 36 | void ff_hevc_ ## DIR ## _loop_filter_chroma_ ## DEPTH ## _ ## OPT(uint8_t *pix, ptrdiff_t stride, const int *tc, const uint8_t *no_p, const uint8_t *no_q); | ||
| 37 | |||
| 38 | #define LFL_FUNC(DIR, DEPTH, OPT) \ | ||
| 39 | void ff_hevc_ ## DIR ## _loop_filter_luma_ ## DEPTH ## _ ## OPT(uint8_t *pix, ptrdiff_t stride, int beta, const int *tc, const uint8_t *no_p, const uint8_t *no_q); | ||
| 40 | |||
| 41 | #define LFC_FUNCS(type, depth, opt) \ | ||
| 42 | LFC_FUNC(h, depth, opt) \ | ||
| 43 | LFC_FUNC(v, depth, opt) | ||
| 44 | |||
| 45 | #define LFL_FUNCS(type, depth, opt) \ | ||
| 46 | LFL_FUNC(h, depth, opt) \ | ||
| 47 | LFL_FUNC(v, depth, opt) | ||
| 48 | |||
| 49 | LFC_FUNCS(uint8_t, 8, sse2) | ||
| 50 | LFC_FUNCS(uint8_t, 10, sse2) | ||
| 51 | LFC_FUNCS(uint8_t, 12, sse2) | ||
| 52 | LFC_FUNCS(uint8_t, 8, avx) | ||
| 53 | LFC_FUNCS(uint8_t, 10, avx) | ||
| 54 | LFC_FUNCS(uint8_t, 12, avx) | ||
| 55 | LFL_FUNCS(uint8_t, 8, sse2) | ||
| 56 | LFL_FUNCS(uint8_t, 10, sse2) | ||
| 57 | LFL_FUNCS(uint8_t, 12, sse2) | ||
| 58 | LFL_FUNCS(uint8_t, 8, ssse3) | ||
| 59 | LFL_FUNCS(uint8_t, 10, ssse3) | ||
| 60 | LFL_FUNCS(uint8_t, 12, ssse3) | ||
| 61 | LFL_FUNCS(uint8_t, 8, avx) | ||
| 62 | LFL_FUNCS(uint8_t, 10, avx) | ||
| 63 | LFL_FUNCS(uint8_t, 12, avx) | ||
| 64 | |||
| 65 | #define IDCT_DC_FUNCS(W, opt) \ | ||
| 66 | void ff_hevc_idct_ ## W ## _dc_8_ ## opt(int16_t *coeffs); \ | ||
| 67 | void ff_hevc_idct_ ## W ## _dc_10_ ## opt(int16_t *coeffs); \ | ||
| 68 | void ff_hevc_idct_ ## W ## _dc_12_ ## opt(int16_t *coeffs) | ||
| 69 | |||
| 70 | IDCT_DC_FUNCS(4x4, sse2); | ||
| 71 | IDCT_DC_FUNCS(8x8, sse2); | ||
| 72 | IDCT_DC_FUNCS(16x16, sse2); | ||
| 73 | IDCT_DC_FUNCS(32x32, sse2); | ||
| 74 | IDCT_DC_FUNCS(16x16, avx2); | ||
| 75 | IDCT_DC_FUNCS(32x32, avx2); | ||
| 76 | |||
| 77 | #define IDCT_FUNCS(opt) \ | ||
| 78 | void ff_hevc_idct_4x4_8_ ## opt(int16_t *coeffs, int col_limit); \ | ||
| 79 | void ff_hevc_idct_4x4_10_ ## opt(int16_t *coeffs, int col_limit); \ | ||
| 80 | void ff_hevc_idct_8x8_8_ ## opt(int16_t *coeffs, int col_limit); \ | ||
| 81 | void ff_hevc_idct_8x8_10_ ## opt(int16_t *coeffs, int col_limit); \ | ||
| 82 | void ff_hevc_idct_16x16_8_ ## opt(int16_t *coeffs, int col_limit); \ | ||
| 83 | void ff_hevc_idct_16x16_10_ ## opt(int16_t *coeffs, int col_limit); \ | ||
| 84 | void ff_hevc_idct_32x32_8_ ## opt(int16_t *coeffs, int col_limit); \ | ||
| 85 | void ff_hevc_idct_32x32_10_ ## opt(int16_t *coeffs, int col_limit); | ||
| 86 | |||
| 87 | IDCT_FUNCS(sse2) | ||
| 88 | IDCT_FUNCS(avx) | ||
| 89 | |||
| 90 | |||
| 91 | #define ff_hevc_pel_filters ff_hevc_qpel_filters | ||
| 92 | #define DECL_HV_FILTER(f) \ | ||
| 93 | const uint8_t *hf = ff_hevc_ ## f ## _filters[mx]; \ | ||
| 94 | const uint8_t *vf = ff_hevc_ ## f ## _filters[my]; | ||
| 95 | |||
| 96 | #define FW_PUT(p, a, b, depth, opt) \ | ||
| 97 | static void hevc_put_ ## a ## _ ## depth ## _##opt(int16_t *dst, const uint8_t *src, ptrdiff_t srcstride, \ | ||
| 98 | int height, intptr_t mx, intptr_t my,int width) \ | ||
| 99 | { \ | ||
| 100 | DECL_HV_FILTER(p) \ | ||
| 101 | ff_h2656_put_ ## b ## _ ## depth ## _##opt(dst, 2 * MAX_PB_SIZE, src, srcstride, height, hf, vf, width); \ | ||
| 102 | } | ||
| 103 | |||
| 104 | #define FW_PUT_UNI(p, a, b, depth, opt) \ | ||
| 105 | static void hevc_put_uni_ ## a ## _ ## depth ## _##opt(uint8_t *dst, ptrdiff_t dststride, \ | ||
| 106 | const uint8_t *src, ptrdiff_t srcstride, \ | ||
| 107 | int height, intptr_t mx, intptr_t my, int width) \ | ||
| 108 | { \ | ||
| 109 | DECL_HV_FILTER(p) \ | ||
| 110 | ff_h2656_put_uni_ ## b ## _ ## depth ## _##opt(dst, dststride, src, srcstride, height, hf, vf, width); \ | ||
| 111 | } | ||
| 112 | |||
| 113 | #if ARCH_X86_64 && HAVE_SSE4_EXTERNAL | ||
| 114 | |||
| 115 | #define FW_PUT_FUNCS(p, a, b, depth, opt) \ | ||
| 116 | FW_PUT(p, a, b, depth, opt) \ | ||
| 117 | FW_PUT_UNI(p, a, b, depth, opt) | ||
| 118 | |||
| 119 | #define FW_PEL(w, depth, opt) FW_PUT_FUNCS(pel, pel_pixels##w, pixels##w, depth, opt) | ||
| 120 | |||
| 121 | #define FW_DIR(npel, n, w, depth, opt) \ | ||
| 122 | FW_PUT_FUNCS(npel, npel ## _h##w, n ## tap_h##w, depth, opt) \ | ||
| 123 | FW_PUT_FUNCS(npel, npel ## _v##w, n ## tap_v##w, depth, opt) | ||
| 124 | |||
| 125 | #define FW_DIR_HV(npel, n, w, depth, opt) \ | ||
| 126 | FW_PUT_FUNCS(npel, npel ## _hv##w, n ## tap_hv##w, depth, opt) | ||
| 127 | |||
| 128 | 21598 | FW_PEL(4, 8, sse4) | |
| 129 | 104 | FW_PEL(6, 8, sse4) | |
| 130 | 31412 | FW_PEL(8, 8, sse4) | |
| 131 | 104 | FW_PEL(12, 8, sse4) | |
| 132 | 156094 | FW_PEL(16, 8, sse4) | |
| 133 | 2512 | FW_PEL(4, 10, sse4) | |
| 134 | 104 | FW_PEL(6, 10, sse4) | |
| 135 | 34298 | FW_PEL(8, 10, sse4) | |
| 136 | 416 | FW_PEL(4, 12, sse4) | |
| 137 | 104 | FW_PEL(6, 12, sse4) | |
| 138 | 2496 | FW_PEL(8, 12, sse4) | |
| 139 | |||
| 140 | #define FW_EPEL(w, depth, opt) FW_DIR(epel, 4, w, depth, opt) | ||
| 141 | #define FW_EPEL_HV(w, depth, opt) FW_DIR_HV(epel, 4, w, depth, opt) | ||
| 142 | #define FW_EPEL_FUNCS(w, depth, opt) \ | ||
| 143 | FW_EPEL(w, depth, opt) \ | ||
| 144 | FW_EPEL_HV(w, depth, opt) | ||
| 145 | |||
| 146 | 208 | FW_EPEL(12, 8, sse4) | |
| 147 | |||
| 148 | 19552 | FW_EPEL_FUNCS(4, 8, sse4) | |
| 149 | 312 | FW_EPEL_FUNCS(6, 8, sse4) | |
| 150 | 17604 | FW_EPEL_FUNCS(8, 8, sse4) | |
| 151 | 23120 | FW_EPEL_FUNCS(16, 8, sse4) | |
| 152 | 7220 | FW_EPEL_FUNCS(4, 10, sse4) | |
| 153 | 312 | FW_EPEL_FUNCS(6, 10, sse4) | |
| 154 | 33092 | FW_EPEL_FUNCS(8, 10, sse4) | |
| 155 | 1248 | FW_EPEL_FUNCS(4, 12, sse4) | |
| 156 | 312 | FW_EPEL_FUNCS(6, 12, sse4) | |
| 157 | 7488 | FW_EPEL_FUNCS(8, 12, sse4) | |
| 158 | |||
| 159 | #define FW_QPEL(w, depth, opt) FW_DIR(qpel, 8, w, depth, opt) | ||
| 160 | #define FW_QPEL_HV(w, depth, opt) FW_DIR_HV(qpel, 8, w, depth, opt) | ||
| 161 | #define FW_QPEL_FUNCS(w, depth, opt) \ | ||
| 162 | FW_QPEL(w, depth, opt) \ | ||
| 163 | FW_QPEL_HV(w, depth, opt) | ||
| 164 | |||
| 165 | 208 | FW_QPEL(12, 8, sse4) | |
| 166 | 3706 | FW_QPEL(16, 8, sse4) | |
| 167 | |||
| 168 | 1414 | FW_QPEL_FUNCS(4, 8, sse4) | |
| 169 | 12234 | FW_QPEL_FUNCS(8, 8, sse4) | |
| 170 | 1248 | FW_QPEL_FUNCS(4, 10, sse4) | |
| 171 | 16296 | FW_QPEL_FUNCS(8, 10, sse4) | |
| 172 | 1248 | FW_QPEL_FUNCS(4, 12, sse4) | |
| 173 | 7488 | FW_QPEL_FUNCS(8, 12, sse4) | |
| 174 | |||
| 175 | #if HAVE_AVX2_EXTERNAL | ||
| 176 | |||
| 177 | 29180 | FW_PEL(32, 8, avx2) | |
| 178 | 3039 | FW_PUT(pel, pel_pixels16, pixels16, 10, avx2) | |
| 179 | |||
| 180 | 1428 | FW_EPEL(32, 8, avx2) | |
| 181 | 5200 | FW_EPEL(16, 10, avx2) | |
| 182 | |||
| 183 | 768 | FW_EPEL_HV(32, 8, avx2) | |
| 184 | 6776 | FW_EPEL_HV(16, 10, avx2) | |
| 185 | |||
| 186 | 340 | FW_QPEL(32, 8, avx2) | |
| 187 | 9048 | FW_QPEL(16, 10, avx2) | |
| 188 | |||
| 189 | 11398 | FW_QPEL_HV(16, 10, avx2) | |
| 190 | |||
| 191 | #endif | ||
| 192 | #endif | ||
| 193 | |||
| 194 | #define mc_rep_func(name, bitd, step, W, opt) \ | ||
| 195 | static void hevc_put_##name##W##_##bitd##_##opt(int16_t *_dst, \ | ||
| 196 | const uint8_t *_src, ptrdiff_t _srcstride, int height, \ | ||
| 197 | intptr_t mx, intptr_t my, int width) \ | ||
| 198 | { \ | ||
| 199 | int i; \ | ||
| 200 | int16_t *dst; \ | ||
| 201 | for (i = 0; i < W; i += step) { \ | ||
| 202 | const uint8_t *src = _src + (i * ((bitd + 7) / 8)); \ | ||
| 203 | dst = _dst + i; \ | ||
| 204 | hevc_put_##name##step##_##bitd##_##opt(dst, src, _srcstride, height, mx, my, width); \ | ||
| 205 | } \ | ||
| 206 | } | ||
| 207 | #define mc_rep_uni_func(name, bitd, step, W, opt) \ | ||
| 208 | static void hevc_put_uni_##name##W##_##bitd##_##opt(uint8_t *_dst, ptrdiff_t dststride, \ | ||
| 209 | const uint8_t *_src, ptrdiff_t _srcstride, int height, \ | ||
| 210 | intptr_t mx, intptr_t my, int width) \ | ||
| 211 | { \ | ||
| 212 | int i; \ | ||
| 213 | uint8_t *dst; \ | ||
| 214 | for (i = 0; i < W; i += step) { \ | ||
| 215 | const uint8_t *src = _src + (i * ((bitd + 7) / 8)); \ | ||
| 216 | dst = _dst + (i * ((bitd + 7) / 8)); \ | ||
| 217 | hevc_put_uni_##name##step##_##bitd##_##opt(dst, dststride, src, _srcstride, \ | ||
| 218 | height, mx, my, width); \ | ||
| 219 | } \ | ||
| 220 | } | ||
| 221 | #define mc_rep_bi_func(name, bitd, step, W, opt) \ | ||
| 222 | static void ff_hevc_put_bi_##name##W##_##bitd##_##opt(uint8_t *_dst, ptrdiff_t dststride, const uint8_t *_src, \ | ||
| 223 | ptrdiff_t _srcstride, const int16_t *_src2, \ | ||
| 224 | int height, intptr_t mx, intptr_t my, int width) \ | ||
| 225 | { \ | ||
| 226 | int i; \ | ||
| 227 | uint8_t *dst; \ | ||
| 228 | for (i = 0; i < W ; i += step) { \ | ||
| 229 | const uint8_t *src = _src + (i * ((bitd + 7) / 8)); \ | ||
| 230 | const int16_t *src2 = _src2 + i; \ | ||
| 231 | dst = _dst + (i * ((bitd + 7) / 8)); \ | ||
| 232 | ff_hevc_put_bi_##name##step##_##bitd##_##opt(dst, dststride, src, _srcstride, src2, \ | ||
| 233 | height, mx, my, width); \ | ||
| 234 | } \ | ||
| 235 | } | ||
| 236 | |||
| 237 | #define mc_rep_funcs(name, bitd, step, W, opt) \ | ||
| 238 | mc_rep_func(name, bitd, step, W, opt) \ | ||
| 239 | mc_rep_uni_func(name, bitd, step, W, opt) \ | ||
| 240 | mc_rep_bi_func(name, bitd, step, W, opt) | ||
| 241 | |||
| 242 | #define mc_rep_func2(name, bitd, step1, step2, W, opt) \ | ||
| 243 | static void hevc_put_##name##W##_##bitd##_##opt(int16_t *dst, \ | ||
| 244 | const uint8_t *src, ptrdiff_t _srcstride, int height, \ | ||
| 245 | intptr_t mx, intptr_t my, int width) \ | ||
| 246 | { \ | ||
| 247 | hevc_put_##name##step1##_##bitd##_##opt(dst, src, _srcstride, height, mx, my, width); \ | ||
| 248 | hevc_put_##name##step2##_##bitd##_##opt(dst + step1, src + (step1 * ((bitd + 7) / 8)), \ | ||
| 249 | _srcstride, height, mx, my, width); \ | ||
| 250 | } | ||
| 251 | #define mc_rep_uni_func2(name, bitd, step1, step2, W, opt) \ | ||
| 252 | static void hevc_put_uni_##name##W##_##bitd##_##opt(uint8_t *dst, ptrdiff_t dststride, \ | ||
| 253 | const uint8_t *src, ptrdiff_t _srcstride, int height, \ | ||
| 254 | intptr_t mx, intptr_t my, int width) \ | ||
| 255 | { \ | ||
| 256 | hevc_put_uni_##name##step1##_##bitd##_##opt(dst, dststride, src, _srcstride, height, mx, my, width); \ | ||
| 257 | hevc_put_uni_##name##step2##_##bitd##_##opt(dst + (step1 * ((bitd + 7) / 8)), dststride, \ | ||
| 258 | src + (step1 * ((bitd + 7) / 8)), _srcstride, \ | ||
| 259 | height, mx, my, width); \ | ||
| 260 | } | ||
| 261 | #define mc_rep_bi_func2(name, bitd, step1, step2, W, opt) \ | ||
| 262 | static void ff_hevc_put_bi_##name##W##_##bitd##_##opt(uint8_t *dst, ptrdiff_t dststride, const uint8_t *src, \ | ||
| 263 | ptrdiff_t _srcstride, const int16_t *src2, \ | ||
| 264 | int height, intptr_t mx, intptr_t my, int width) \ | ||
| 265 | { \ | ||
| 266 | ff_hevc_put_bi_##name##step1##_##bitd##_##opt(dst, dststride, src, _srcstride, src2, height, mx, my, width);\ | ||
| 267 | ff_hevc_put_bi_##name##step2##_##bitd##_##opt(dst + (step1 * ((bitd + 7) / 8)), dststride, \ | ||
| 268 | src + (step1 * ((bitd + 7) / 8)), _srcstride, \ | ||
| 269 | src2 + step1, height, mx, my, width); \ | ||
| 270 | } | ||
| 271 | |||
| 272 | #define mc_rep_funcs2(name, bitd, step1, step2, W, opt) \ | ||
| 273 | mc_rep_func2(name, bitd, step1, step2, W, opt) \ | ||
| 274 | mc_rep_uni_func2(name, bitd, step1, step2, W, opt) \ | ||
| 275 | mc_rep_bi_func2(name, bitd, step1, step2, W, opt) | ||
| 276 | |||
| 277 | #if ARCH_X86_64 && HAVE_SSE4_EXTERNAL | ||
| 278 | |||
| 279 | #define mc_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4) \ | ||
| 280 | static void hevc_put_##name##width1##_10_##opt1(int16_t *dst, const uint8_t *src, ptrdiff_t _srcstride, \ | ||
| 281 | int height, intptr_t mx, intptr_t my, int width) \ | ||
| 282 | \ | ||
| 283 | { \ | ||
| 284 | hevc_put_##name##width2##_10_##opt1(dst, src, _srcstride, height, mx, my, width); \ | ||
| 285 | hevc_put_##name##width3##_10_##opt2(dst+ width2, src+ width4, _srcstride, height, mx, my, width); \ | ||
| 286 | } | ||
| 287 | |||
| 288 | #define mc_bi_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4) \ | ||
| 289 | static void ff_hevc_put_bi_##name##width1##_10_##opt1(uint8_t *dst, ptrdiff_t dststride, const uint8_t *src, \ | ||
| 290 | ptrdiff_t _srcstride, const int16_t *src2, \ | ||
| 291 | int height, intptr_t mx, intptr_t my, int width) \ | ||
| 292 | { \ | ||
| 293 | ff_hevc_put_bi_##name##width2##_10_##opt1(dst, dststride, src, _srcstride, src2, \ | ||
| 294 | height, mx, my, width); \ | ||
| 295 | ff_hevc_put_bi_##name##width3##_10_##opt2(dst+width4, dststride, src+width4, _srcstride, src2+width2, \ | ||
| 296 | height, mx, my, width); \ | ||
| 297 | } | ||
| 298 | |||
| 299 | #define mc_uni_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4) \ | ||
| 300 | static void hevc_put_uni_##name##width1##_10_##opt1(uint8_t *dst, ptrdiff_t dststride, \ | ||
| 301 | const uint8_t *src, ptrdiff_t _srcstride, int height, \ | ||
| 302 | intptr_t mx, intptr_t my, int width) \ | ||
| 303 | { \ | ||
| 304 | hevc_put_uni_##name##width2##_10_##opt1(dst, dststride, src, _srcstride, \ | ||
| 305 | height, mx, my, width); \ | ||
| 306 | hevc_put_uni_##name##width3##_10_##opt2(dst+width4, dststride, src+width4, _srcstride, \ | ||
| 307 | height, mx, my, width); \ | ||
| 308 | } | ||
| 309 | |||
| 310 | #define mc_rep_mixs_10(name, width1, width2, width3, opt1, opt2, width4) \ | ||
| 311 | mc_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4) \ | ||
| 312 | mc_bi_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4) \ | ||
| 313 | mc_uni_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4) | ||
| 314 | |||
| 315 | #define mc_rep_mix_8(name, width1, width2, width3, opt1, opt2) \ | ||
| 316 | static void hevc_put_##name##width1##_8_##opt1(int16_t *dst, const uint8_t *src, ptrdiff_t _srcstride, \ | ||
| 317 | int height, intptr_t mx, intptr_t my, int width) \ | ||
| 318 | \ | ||
| 319 | { \ | ||
| 320 | hevc_put_##name##width2##_8_##opt1(dst, src, _srcstride, height, mx, my, width); \ | ||
| 321 | hevc_put_##name##width3##_8_##opt2(dst+ width2, src+ width2, _srcstride, height, mx, my, width); \ | ||
| 322 | } | ||
| 323 | |||
| 324 | #define mc_bi_rep_mix_8(name, width1, width2, width3, opt1, opt2) \ | ||
| 325 | static void ff_hevc_put_bi_##name##width1##_8_##opt1(uint8_t *dst, ptrdiff_t dststride, const uint8_t *src, \ | ||
| 326 | ptrdiff_t _srcstride, const int16_t *src2, \ | ||
| 327 | int height, intptr_t mx, intptr_t my, int width) \ | ||
| 328 | { \ | ||
| 329 | ff_hevc_put_bi_##name##width2##_8_##opt1(dst, dststride, src, _srcstride, \ | ||
| 330 | src2, height, mx, my, width); \ | ||
| 331 | ff_hevc_put_bi_##name##width3##_8_##opt2(dst+width2, dststride, src+width2, _srcstride, \ | ||
| 332 | src2+width2, height, mx, my, width); \ | ||
| 333 | } | ||
| 334 | |||
| 335 | #define mc_uni_rep_mix_8(name, width1, width2, width3, opt1, opt2) \ | ||
| 336 | static void hevc_put_uni_##name##width1##_8_##opt1(uint8_t *dst, ptrdiff_t dststride, \ | ||
| 337 | const uint8_t *src, ptrdiff_t _srcstride, int height, \ | ||
| 338 | intptr_t mx, intptr_t my, int width) \ | ||
| 339 | { \ | ||
| 340 | hevc_put_uni_##name##width2##_8_##opt1(dst, dststride, src, _srcstride, \ | ||
| 341 | height, mx, my, width); \ | ||
| 342 | hevc_put_uni_##name##width3##_8_##opt2(dst+width2, dststride, src+width2, _srcstride, \ | ||
| 343 | height, mx, my, width); \ | ||
| 344 | } | ||
| 345 | |||
| 346 | #define mc_rep_mixs_8(name, width1, width2, width3, opt1, opt2) \ | ||
| 347 | mc_rep_mix_8(name, width1, width2, width3, opt1, opt2) \ | ||
| 348 | mc_bi_rep_mix_8(name, width1, width2, width3, opt1, opt2) \ | ||
| 349 | mc_uni_rep_mix_8(name, width1, width2, width3, opt1, opt2) | ||
| 350 | |||
| 351 | #if HAVE_AVX2_EXTERNAL | ||
| 352 | |||
| 353 | 16 | mc_rep_mixs_8(pel_pixels, 48, 32, 16, avx2, sse4) | |
| 354 | 12 | mc_rep_mixs_8(epel_hv, 48, 32, 16, avx2, sse4) | |
| 355 | 12 | mc_rep_mixs_8(epel_h , 48, 32, 16, avx2, sse4) | |
| 356 | 12 | mc_rep_mixs_8(epel_v , 48, 32, 16, avx2, sse4) | |
| 357 | |||
| 358 | 6 | mc_rep_mix_10(pel_pixels, 24, 16, 8, avx2, sse4, 32) | |
| 359 | 2 | mc_bi_rep_mix_10(pel_pixels,24, 16, 8, avx2, sse4, 32) | |
| 360 | 12 | mc_rep_mixs_10(epel_hv, 24, 16, 8, avx2, sse4, 32) | |
| 361 | 12 | mc_rep_mixs_10(epel_h , 24, 16, 8, avx2, sse4, 32) | |
| 362 | 12 | mc_rep_mixs_10(epel_v , 24, 16, 8, avx2, sse4, 32) | |
| 363 | |||
| 364 | |||
| 365 | 12 | mc_rep_mixs_10(qpel_h , 24, 16, 8, avx2, sse4, 32) | |
| 366 | 12 | mc_rep_mixs_10(qpel_v , 24, 16, 8, avx2, sse4, 32) | |
| 367 | 12 | mc_rep_mixs_10(qpel_hv, 24, 16, 8, avx2, sse4, 32) | |
| 368 | |||
| 369 | |||
| 370 |
2/2✓ Branch 1 taken 6734 times.
✓ Branch 2 taken 3367 times.
|
20202 | mc_rep_funcs(pel_pixels, 8, 32, 64, avx2) |
| 371 | |||
| 372 |
2/2✓ Branch 1 taken 158 times.
✓ Branch 2 taken 79 times.
|
237 | mc_rep_uni_func(pel_pixels, 8, 64, 128, avx2)//used for 10bit |
| 373 |
2/2✓ Branch 1 taken 6 times.
✓ Branch 2 taken 2 times.
|
8 | mc_rep_uni_func(pel_pixels, 8, 32, 96, avx2) //used for 10bit |
| 374 | |||
| 375 |
2/2✓ Branch 1 taken 2032 times.
✓ Branch 2 taken 1016 times.
|
3048 | mc_rep_func(pel_pixels, 10, 16, 32, avx2) |
| 376 |
2/2✓ Branch 1 taken 6 times.
✓ Branch 2 taken 2 times.
|
8 | mc_rep_func(pel_pixels, 10, 16, 48, avx2) |
| 377 |
2/2✓ Branch 1 taken 306 times.
✓ Branch 2 taken 153 times.
|
459 | mc_rep_func(pel_pixels, 10, 32, 64, avx2) |
| 378 | |||
| 379 |
2/2✓ Branch 1 taken 182 times.
✓ Branch 2 taken 91 times.
|
273 | mc_rep_bi_func(pel_pixels, 10, 16, 32, avx2) |
| 380 |
2/2✓ Branch 1 taken 6 times.
✓ Branch 2 taken 2 times.
|
8 | mc_rep_bi_func(pel_pixels, 10, 16, 48, avx2) |
| 381 |
2/2✓ Branch 1 taken 44 times.
✓ Branch 2 taken 22 times.
|
66 | mc_rep_bi_func(pel_pixels, 10, 32, 64, avx2) |
| 382 | |||
| 383 |
2/2✓ Branch 1 taken 12 times.
✓ Branch 2 taken 6 times.
|
36 | mc_rep_funcs(epel_h, 8, 32, 64, avx2) |
| 384 | |||
| 385 |
2/2✓ Branch 1 taken 12 times.
✓ Branch 2 taken 6 times.
|
36 | mc_rep_funcs(epel_v, 8, 32, 64, avx2) |
| 386 | |||
| 387 |
2/2✓ Branch 1 taken 1308 times.
✓ Branch 2 taken 654 times.
|
3924 | mc_rep_funcs(epel_h, 10, 16, 32, avx2) |
| 388 |
2/2✓ Branch 1 taken 18 times.
✓ Branch 2 taken 6 times.
|
48 | mc_rep_funcs(epel_h, 10, 16, 48, avx2) |
| 389 |
2/2✓ Branch 1 taken 12 times.
✓ Branch 2 taken 6 times.
|
36 | mc_rep_funcs(epel_h, 10, 32, 64, avx2) |
| 390 | |||
| 391 |
2/2✓ Branch 1 taken 172 times.
✓ Branch 2 taken 86 times.
|
516 | mc_rep_funcs(epel_v, 10, 16, 32, avx2) |
| 392 |
2/2✓ Branch 1 taken 18 times.
✓ Branch 2 taken 6 times.
|
48 | mc_rep_funcs(epel_v, 10, 16, 48, avx2) |
| 393 |
2/2✓ Branch 1 taken 12 times.
✓ Branch 2 taken 6 times.
|
36 | mc_rep_funcs(epel_v, 10, 32, 64, avx2) |
| 394 | |||
| 395 | |||
| 396 |
2/2✓ Branch 1 taken 12 times.
✓ Branch 2 taken 6 times.
|
36 | mc_rep_funcs(epel_hv, 8, 32, 64, avx2) |
| 397 | |||
| 398 |
2/2✓ Branch 1 taken 1616 times.
✓ Branch 2 taken 808 times.
|
4848 | mc_rep_funcs(epel_hv, 10, 16, 32, avx2) |
| 399 |
2/2✓ Branch 1 taken 18 times.
✓ Branch 2 taken 6 times.
|
48 | mc_rep_funcs(epel_hv, 10, 16, 48, avx2) |
| 400 |
2/2✓ Branch 1 taken 12 times.
✓ Branch 2 taken 6 times.
|
36 | mc_rep_funcs(epel_hv, 10, 32, 64, avx2) |
| 401 | |||
| 402 |
2/2✓ Branch 1 taken 12 times.
✓ Branch 2 taken 6 times.
|
36 | mc_rep_funcs(qpel_h, 8, 32, 64, avx2) |
| 403 | 12 | mc_rep_mixs_8(qpel_h , 48, 32, 16, avx2, sse4) | |
| 404 | |||
| 405 |
2/2✓ Branch 1 taken 12 times.
✓ Branch 2 taken 6 times.
|
36 | mc_rep_funcs(qpel_v, 8, 32, 64, avx2) |
| 406 | 12 | mc_rep_mixs_8(qpel_v, 48, 32, 16, avx2, sse4) | |
| 407 | |||
| 408 |
2/2✓ Branch 1 taken 2000 times.
✓ Branch 2 taken 1000 times.
|
6000 | mc_rep_funcs(qpel_h, 10, 16, 32, avx2) |
| 409 |
2/2✓ Branch 1 taken 18 times.
✓ Branch 2 taken 6 times.
|
48 | mc_rep_funcs(qpel_h, 10, 16, 48, avx2) |
| 410 |
2/2✓ Branch 1 taken 518 times.
✓ Branch 2 taken 259 times.
|
1554 | mc_rep_funcs(qpel_h, 10, 32, 64, avx2) |
| 411 | |||
| 412 |
2/2✓ Branch 1 taken 928 times.
✓ Branch 2 taken 464 times.
|
2784 | mc_rep_funcs(qpel_v, 10, 16, 32, avx2) |
| 413 |
2/2✓ Branch 1 taken 18 times.
✓ Branch 2 taken 6 times.
|
48 | mc_rep_funcs(qpel_v, 10, 16, 48, avx2) |
| 414 |
2/2✓ Branch 1 taken 208 times.
✓ Branch 2 taken 104 times.
|
624 | mc_rep_funcs(qpel_v, 10, 32, 64, avx2) |
| 415 | |||
| 416 |
2/2✓ Branch 1 taken 3134 times.
✓ Branch 2 taken 1567 times.
|
9402 | mc_rep_funcs(qpel_hv, 10, 16, 32, avx2) |
| 417 |
2/2✓ Branch 1 taken 18 times.
✓ Branch 2 taken 6 times.
|
48 | mc_rep_funcs(qpel_hv, 10, 16, 48, avx2) |
| 418 |
2/2✓ Branch 1 taken 674 times.
✓ Branch 2 taken 337 times.
|
2022 | mc_rep_funcs(qpel_hv, 10, 32, 64, avx2) |
| 419 | |||
| 420 | #endif //AVX2 | ||
| 421 | |||
| 422 |
2/2✓ Branch 1 taken 30984 times.
✓ Branch 2 taken 7746 times.
|
77460 | mc_rep_funcs(pel_pixels, 8, 16, 64, sse4) |
| 423 |
2/2✓ Branch 1 taken 171 times.
✓ Branch 2 taken 57 times.
|
456 | mc_rep_funcs(pel_pixels, 8, 16, 48, sse4) |
| 424 |
2/2✓ Branch 1 taken 34012 times.
✓ Branch 2 taken 17006 times.
|
102036 | mc_rep_funcs(pel_pixels, 8, 16, 32, sse4) |
| 425 |
2/2✓ Branch 1 taken 162 times.
✓ Branch 2 taken 54 times.
|
432 | mc_rep_funcs(pel_pixels, 8, 8, 24, sse4) |
| 426 |
2/2✓ Branch 1 taken 3080 times.
✓ Branch 2 taken 385 times.
|
6930 | mc_rep_funcs(pel_pixels,10, 8, 64, sse4) |
| 427 |
2/2✓ Branch 1 taken 342 times.
✓ Branch 2 taken 57 times.
|
798 | mc_rep_funcs(pel_pixels,10, 8, 48, sse4) |
| 428 |
2/2✓ Branch 1 taken 6268 times.
✓ Branch 2 taken 1567 times.
|
15670 | mc_rep_funcs(pel_pixels,10, 8, 32, sse4) |
| 429 |
2/2✓ Branch 1 taken 189 times.
✓ Branch 2 taken 63 times.
|
504 | mc_rep_funcs(pel_pixels,10, 8, 24, sse4) |
| 430 |
2/2✓ Branch 1 taken 4050 times.
✓ Branch 2 taken 2025 times.
|
12150 | mc_rep_funcs(pel_pixels,10, 8, 16, sse4) |
| 431 |
2/2✓ Branch 1 taken 222 times.
✓ Branch 2 taken 74 times.
|
592 | mc_rep_funcs(pel_pixels,10, 4, 12, sse4) |
| 432 |
2/2✓ Branch 1 taken 432 times.
✓ Branch 2 taken 54 times.
|
972 | mc_rep_funcs(pel_pixels,12, 8, 64, sse4) |
| 433 |
2/2✓ Branch 1 taken 324 times.
✓ Branch 2 taken 54 times.
|
756 | mc_rep_funcs(pel_pixels,12, 8, 48, sse4) |
| 434 |
2/2✓ Branch 1 taken 216 times.
✓ Branch 2 taken 54 times.
|
540 | mc_rep_funcs(pel_pixels,12, 8, 32, sse4) |
| 435 |
2/2✓ Branch 1 taken 162 times.
✓ Branch 2 taken 54 times.
|
432 | mc_rep_funcs(pel_pixels,12, 8, 24, sse4) |
| 436 |
2/2✓ Branch 1 taken 108 times.
✓ Branch 2 taken 54 times.
|
324 | mc_rep_funcs(pel_pixels,12, 8, 16, sse4) |
| 437 |
2/2✓ Branch 1 taken 162 times.
✓ Branch 2 taken 54 times.
|
432 | mc_rep_funcs(pel_pixels,12, 4, 12, sse4) |
| 438 | |||
| 439 |
2/2✓ Branch 1 taken 228 times.
✓ Branch 2 taken 57 times.
|
570 | mc_rep_funcs(epel_h, 8, 16, 64, sse4) |
| 440 |
2/2✓ Branch 1 taken 171 times.
✓ Branch 2 taken 57 times.
|
456 | mc_rep_funcs(epel_h, 8, 16, 48, sse4) |
| 441 |
2/2✓ Branch 1 taken 1106 times.
✓ Branch 2 taken 553 times.
|
3318 | mc_rep_funcs(epel_h, 8, 16, 32, sse4) |
| 442 |
2/2✓ Branch 1 taken 162 times.
✓ Branch 2 taken 54 times.
|
432 | mc_rep_funcs(epel_h, 8, 8, 24, sse4) |
| 443 |
2/2✓ Branch 1 taken 456 times.
✓ Branch 2 taken 57 times.
|
1026 | mc_rep_funcs(epel_h,10, 8, 64, sse4) |
| 444 |
2/2✓ Branch 1 taken 342 times.
✓ Branch 2 taken 57 times.
|
798 | mc_rep_funcs(epel_h,10, 8, 48, sse4) |
| 445 |
2/2✓ Branch 1 taken 1076 times.
✓ Branch 2 taken 269 times.
|
2690 | mc_rep_funcs(epel_h,10, 8, 32, sse4) |
| 446 |
2/2✓ Branch 1 taken 171 times.
✓ Branch 2 taken 57 times.
|
456 | mc_rep_funcs(epel_h,10, 8, 24, sse4) |
| 447 |
2/2✓ Branch 1 taken 1170 times.
✓ Branch 2 taken 585 times.
|
3510 | mc_rep_funcs(epel_h,10, 8, 16, sse4) |
| 448 |
2/2✓ Branch 1 taken 174 times.
✓ Branch 2 taken 58 times.
|
464 | mc_rep_funcs(epel_h,10, 4, 12, sse4) |
| 449 |
2/2✓ Branch 1 taken 432 times.
✓ Branch 2 taken 54 times.
|
972 | mc_rep_funcs(epel_h,12, 8, 64, sse4) |
| 450 |
2/2✓ Branch 1 taken 324 times.
✓ Branch 2 taken 54 times.
|
756 | mc_rep_funcs(epel_h,12, 8, 48, sse4) |
| 451 |
2/2✓ Branch 1 taken 216 times.
✓ Branch 2 taken 54 times.
|
540 | mc_rep_funcs(epel_h,12, 8, 32, sse4) |
| 452 |
2/2✓ Branch 1 taken 162 times.
✓ Branch 2 taken 54 times.
|
432 | mc_rep_funcs(epel_h,12, 8, 24, sse4) |
| 453 |
2/2✓ Branch 1 taken 108 times.
✓ Branch 2 taken 54 times.
|
324 | mc_rep_funcs(epel_h,12, 8, 16, sse4) |
| 454 |
2/2✓ Branch 1 taken 162 times.
✓ Branch 2 taken 54 times.
|
432 | mc_rep_funcs(epel_h,12, 4, 12, sse4) |
| 455 |
2/2✓ Branch 1 taken 228 times.
✓ Branch 2 taken 57 times.
|
570 | mc_rep_funcs(epel_v, 8, 16, 64, sse4) |
| 456 |
2/2✓ Branch 1 taken 171 times.
✓ Branch 2 taken 57 times.
|
456 | mc_rep_funcs(epel_v, 8, 16, 48, sse4) |
| 457 |
2/2✓ Branch 1 taken 2086 times.
✓ Branch 2 taken 1043 times.
|
6258 | mc_rep_funcs(epel_v, 8, 16, 32, sse4) |
| 458 |
2/2✓ Branch 1 taken 162 times.
✓ Branch 2 taken 54 times.
|
432 | mc_rep_funcs(epel_v, 8, 8, 24, sse4) |
| 459 |
2/2✓ Branch 1 taken 456 times.
✓ Branch 2 taken 57 times.
|
1026 | mc_rep_funcs(epel_v,10, 8, 64, sse4) |
| 460 |
2/2✓ Branch 1 taken 342 times.
✓ Branch 2 taken 57 times.
|
798 | mc_rep_funcs(epel_v,10, 8, 48, sse4) |
| 461 |
2/2✓ Branch 1 taken 356 times.
✓ Branch 2 taken 89 times.
|
890 | mc_rep_funcs(epel_v,10, 8, 32, sse4) |
| 462 |
2/2✓ Branch 1 taken 171 times.
✓ Branch 2 taken 57 times.
|
456 | mc_rep_funcs(epel_v,10, 8, 24, sse4) |
| 463 |
2/2✓ Branch 1 taken 234 times.
✓ Branch 2 taken 117 times.
|
702 | mc_rep_funcs(epel_v,10, 8, 16, sse4) |
| 464 |
2/2✓ Branch 1 taken 186 times.
✓ Branch 2 taken 62 times.
|
496 | mc_rep_funcs(epel_v,10, 4, 12, sse4) |
| 465 |
2/2✓ Branch 1 taken 432 times.
✓ Branch 2 taken 54 times.
|
972 | mc_rep_funcs(epel_v,12, 8, 64, sse4) |
| 466 |
2/2✓ Branch 1 taken 324 times.
✓ Branch 2 taken 54 times.
|
756 | mc_rep_funcs(epel_v,12, 8, 48, sse4) |
| 467 |
2/2✓ Branch 1 taken 216 times.
✓ Branch 2 taken 54 times.
|
540 | mc_rep_funcs(epel_v,12, 8, 32, sse4) |
| 468 |
2/2✓ Branch 1 taken 162 times.
✓ Branch 2 taken 54 times.
|
432 | mc_rep_funcs(epel_v,12, 8, 24, sse4) |
| 469 |
2/2✓ Branch 1 taken 108 times.
✓ Branch 2 taken 54 times.
|
324 | mc_rep_funcs(epel_v,12, 8, 16, sse4) |
| 470 |
2/2✓ Branch 1 taken 162 times.
✓ Branch 2 taken 54 times.
|
432 | mc_rep_funcs(epel_v,12, 4, 12, sse4) |
| 471 |
2/2✓ Branch 1 taken 228 times.
✓ Branch 2 taken 57 times.
|
570 | mc_rep_funcs(epel_hv, 8, 16, 64, sse4) |
| 472 |
2/2✓ Branch 1 taken 171 times.
✓ Branch 2 taken 57 times.
|
456 | mc_rep_funcs(epel_hv, 8, 16, 48, sse4) |
| 473 |
2/2✓ Branch 1 taken 1890 times.
✓ Branch 2 taken 945 times.
|
5670 | mc_rep_funcs(epel_hv, 8, 16, 32, sse4) |
| 474 |
2/2✓ Branch 1 taken 162 times.
✓ Branch 2 taken 54 times.
|
432 | mc_rep_funcs(epel_hv, 8, 8, 24, sse4) |
| 475 | 108 | mc_rep_funcs2(epel_hv,8, 8, 4, 12, sse4) | |
| 476 |
2/2✓ Branch 1 taken 456 times.
✓ Branch 2 taken 57 times.
|
1026 | mc_rep_funcs(epel_hv,10, 8, 64, sse4) |
| 477 |
2/2✓ Branch 1 taken 342 times.
✓ Branch 2 taken 57 times.
|
798 | mc_rep_funcs(epel_hv,10, 8, 48, sse4) |
| 478 |
2/2✓ Branch 1 taken 372 times.
✓ Branch 2 taken 93 times.
|
930 | mc_rep_funcs(epel_hv,10, 8, 32, sse4) |
| 479 |
2/2✓ Branch 1 taken 171 times.
✓ Branch 2 taken 57 times.
|
456 | mc_rep_funcs(epel_hv,10, 8, 24, sse4) |
| 480 |
2/2✓ Branch 1 taken 266 times.
✓ Branch 2 taken 133 times.
|
798 | mc_rep_funcs(epel_hv,10, 8, 16, sse4) |
| 481 |
2/2✓ Branch 1 taken 162 times.
✓ Branch 2 taken 54 times.
|
432 | mc_rep_funcs(epel_hv,10, 4, 12, sse4) |
| 482 |
2/2✓ Branch 1 taken 432 times.
✓ Branch 2 taken 54 times.
|
972 | mc_rep_funcs(epel_hv,12, 8, 64, sse4) |
| 483 |
2/2✓ Branch 1 taken 324 times.
✓ Branch 2 taken 54 times.
|
756 | mc_rep_funcs(epel_hv,12, 8, 48, sse4) |
| 484 |
2/2✓ Branch 1 taken 216 times.
✓ Branch 2 taken 54 times.
|
540 | mc_rep_funcs(epel_hv,12, 8, 32, sse4) |
| 485 |
2/2✓ Branch 1 taken 162 times.
✓ Branch 2 taken 54 times.
|
432 | mc_rep_funcs(epel_hv,12, 8, 24, sse4) |
| 486 |
2/2✓ Branch 1 taken 108 times.
✓ Branch 2 taken 54 times.
|
324 | mc_rep_funcs(epel_hv,12, 8, 16, sse4) |
| 487 |
2/2✓ Branch 1 taken 162 times.
✓ Branch 2 taken 54 times.
|
432 | mc_rep_funcs(epel_hv,12, 4, 12, sse4) |
| 488 | |||
| 489 |
2/2✓ Branch 1 taken 228 times.
✓ Branch 2 taken 57 times.
|
570 | mc_rep_funcs(qpel_h, 8, 16, 64, sse4) |
| 490 |
2/2✓ Branch 1 taken 171 times.
✓ Branch 2 taken 57 times.
|
456 | mc_rep_funcs(qpel_h, 8, 16, 48, sse4) |
| 491 |
2/2✓ Branch 1 taken 188 times.
✓ Branch 2 taken 94 times.
|
564 | mc_rep_funcs(qpel_h, 8, 16, 32, sse4) |
| 492 |
2/2✓ Branch 1 taken 162 times.
✓ Branch 2 taken 54 times.
|
432 | mc_rep_funcs(qpel_h, 8, 8, 24, sse4) |
| 493 |
2/2✓ Branch 1 taken 1304 times.
✓ Branch 2 taken 163 times.
|
2934 | mc_rep_funcs(qpel_h,10, 8, 64, sse4) |
| 494 |
2/2✓ Branch 1 taken 342 times.
✓ Branch 2 taken 57 times.
|
798 | mc_rep_funcs(qpel_h,10, 8, 48, sse4) |
| 495 |
2/2✓ Branch 1 taken 1308 times.
✓ Branch 2 taken 327 times.
|
3270 | mc_rep_funcs(qpel_h,10, 8, 32, sse4) |
| 496 |
2/2✓ Branch 1 taken 177 times.
✓ Branch 2 taken 59 times.
|
472 | mc_rep_funcs(qpel_h,10, 8, 24, sse4) |
| 497 |
2/2✓ Branch 1 taken 454 times.
✓ Branch 2 taken 227 times.
|
1362 | mc_rep_funcs(qpel_h,10, 8, 16, sse4) |
| 498 |
2/2✓ Branch 1 taken 162 times.
✓ Branch 2 taken 54 times.
|
432 | mc_rep_funcs(qpel_h,10, 4, 12, sse4) |
| 499 |
2/2✓ Branch 1 taken 432 times.
✓ Branch 2 taken 54 times.
|
972 | mc_rep_funcs(qpel_h,12, 8, 64, sse4) |
| 500 |
2/2✓ Branch 1 taken 324 times.
✓ Branch 2 taken 54 times.
|
756 | mc_rep_funcs(qpel_h,12, 8, 48, sse4) |
| 501 |
2/2✓ Branch 1 taken 216 times.
✓ Branch 2 taken 54 times.
|
540 | mc_rep_funcs(qpel_h,12, 8, 32, sse4) |
| 502 |
2/2✓ Branch 1 taken 162 times.
✓ Branch 2 taken 54 times.
|
432 | mc_rep_funcs(qpel_h,12, 8, 24, sse4) |
| 503 |
2/2✓ Branch 1 taken 108 times.
✓ Branch 2 taken 54 times.
|
324 | mc_rep_funcs(qpel_h,12, 8, 16, sse4) |
| 504 |
2/2✓ Branch 1 taken 162 times.
✓ Branch 2 taken 54 times.
|
432 | mc_rep_funcs(qpel_h,12, 4, 12, sse4) |
| 505 |
2/2✓ Branch 1 taken 236 times.
✓ Branch 2 taken 59 times.
|
590 | mc_rep_funcs(qpel_v, 8, 16, 64, sse4) |
| 506 |
2/2✓ Branch 1 taken 171 times.
✓ Branch 2 taken 57 times.
|
456 | mc_rep_funcs(qpel_v, 8, 16, 48, sse4) |
| 507 |
2/2✓ Branch 1 taken 164 times.
✓ Branch 2 taken 82 times.
|
492 | mc_rep_funcs(qpel_v, 8, 16, 32, sse4) |
| 508 |
2/2✓ Branch 1 taken 162 times.
✓ Branch 2 taken 54 times.
|
432 | mc_rep_funcs(qpel_v, 8, 8, 24, sse4) |
| 509 |
2/2✓ Branch 1 taken 584 times.
✓ Branch 2 taken 73 times.
|
1314 | mc_rep_funcs(qpel_v,10, 8, 64, sse4) |
| 510 |
2/2✓ Branch 1 taken 342 times.
✓ Branch 2 taken 57 times.
|
798 | mc_rep_funcs(qpel_v,10, 8, 48, sse4) |
| 511 |
2/2✓ Branch 1 taken 364 times.
✓ Branch 2 taken 91 times.
|
910 | mc_rep_funcs(qpel_v,10, 8, 32, sse4) |
| 512 |
2/2✓ Branch 1 taken 183 times.
✓ Branch 2 taken 61 times.
|
488 | mc_rep_funcs(qpel_v,10, 8, 24, sse4) |
| 513 |
2/2✓ Branch 1 taken 126 times.
✓ Branch 2 taken 63 times.
|
378 | mc_rep_funcs(qpel_v,10, 8, 16, sse4) |
| 514 |
2/2✓ Branch 1 taken 162 times.
✓ Branch 2 taken 54 times.
|
432 | mc_rep_funcs(qpel_v,10, 4, 12, sse4) |
| 515 |
2/2✓ Branch 1 taken 432 times.
✓ Branch 2 taken 54 times.
|
972 | mc_rep_funcs(qpel_v,12, 8, 64, sse4) |
| 516 |
2/2✓ Branch 1 taken 324 times.
✓ Branch 2 taken 54 times.
|
756 | mc_rep_funcs(qpel_v,12, 8, 48, sse4) |
| 517 |
2/2✓ Branch 1 taken 216 times.
✓ Branch 2 taken 54 times.
|
540 | mc_rep_funcs(qpel_v,12, 8, 32, sse4) |
| 518 |
2/2✓ Branch 1 taken 162 times.
✓ Branch 2 taken 54 times.
|
432 | mc_rep_funcs(qpel_v,12, 8, 24, sse4) |
| 519 |
2/2✓ Branch 1 taken 108 times.
✓ Branch 2 taken 54 times.
|
324 | mc_rep_funcs(qpel_v,12, 8, 16, sse4) |
| 520 |
2/2✓ Branch 1 taken 162 times.
✓ Branch 2 taken 54 times.
|
432 | mc_rep_funcs(qpel_v,12, 4, 12, sse4) |
| 521 |
2/2✓ Branch 1 taken 1048 times.
✓ Branch 2 taken 131 times.
|
2358 | mc_rep_funcs(qpel_hv, 8, 8, 64, sse4) |
| 522 |
2/2✓ Branch 1 taken 324 times.
✓ Branch 2 taken 54 times.
|
756 | mc_rep_funcs(qpel_hv, 8, 8, 48, sse4) |
| 523 |
2/2✓ Branch 1 taken 764 times.
✓ Branch 2 taken 191 times.
|
1910 | mc_rep_funcs(qpel_hv, 8, 8, 32, sse4) |
| 524 |
2/2✓ Branch 1 taken 162 times.
✓ Branch 2 taken 54 times.
|
432 | mc_rep_funcs(qpel_hv, 8, 8, 24, sse4) |
| 525 |
2/2✓ Branch 1 taken 1252 times.
✓ Branch 2 taken 626 times.
|
3756 | mc_rep_funcs(qpel_hv, 8, 8, 16, sse4) |
| 526 | 108 | mc_rep_funcs2(qpel_hv,8, 8, 4, 12, sse4) | |
| 527 |
2/2✓ Branch 1 taken 600 times.
✓ Branch 2 taken 75 times.
|
1350 | mc_rep_funcs(qpel_hv,10, 8, 64, sse4) |
| 528 |
2/2✓ Branch 1 taken 342 times.
✓ Branch 2 taken 57 times.
|
798 | mc_rep_funcs(qpel_hv,10, 8, 48, sse4) |
| 529 |
2/2✓ Branch 1 taken 332 times.
✓ Branch 2 taken 83 times.
|
830 | mc_rep_funcs(qpel_hv,10, 8, 32, sse4) |
| 530 |
2/2✓ Branch 1 taken 171 times.
✓ Branch 2 taken 57 times.
|
456 | mc_rep_funcs(qpel_hv,10, 8, 24, sse4) |
| 531 |
2/2✓ Branch 1 taken 130 times.
✓ Branch 2 taken 65 times.
|
390 | mc_rep_funcs(qpel_hv,10, 8, 16, sse4) |
| 532 |
2/2✓ Branch 1 taken 162 times.
✓ Branch 2 taken 54 times.
|
432 | mc_rep_funcs(qpel_hv,10, 4, 12, sse4) |
| 533 |
2/2✓ Branch 1 taken 432 times.
✓ Branch 2 taken 54 times.
|
972 | mc_rep_funcs(qpel_hv,12, 8, 64, sse4) |
| 534 |
2/2✓ Branch 1 taken 324 times.
✓ Branch 2 taken 54 times.
|
756 | mc_rep_funcs(qpel_hv,12, 8, 48, sse4) |
| 535 |
2/2✓ Branch 1 taken 216 times.
✓ Branch 2 taken 54 times.
|
540 | mc_rep_funcs(qpel_hv,12, 8, 32, sse4) |
| 536 |
2/2✓ Branch 1 taken 162 times.
✓ Branch 2 taken 54 times.
|
432 | mc_rep_funcs(qpel_hv,12, 8, 24, sse4) |
| 537 |
2/2✓ Branch 1 taken 108 times.
✓ Branch 2 taken 54 times.
|
324 | mc_rep_funcs(qpel_hv,12, 8, 16, sse4) |
| 538 |
2/2✓ Branch 1 taken 162 times.
✓ Branch 2 taken 54 times.
|
432 | mc_rep_funcs(qpel_hv,12, 4, 12, sse4) |
| 539 | |||
| 540 | #define mc_rep_uni_w(bitd, step, W, opt) \ | ||
| 541 | void ff_hevc_put_uni_w##W##_##bitd##_##opt(uint8_t *_dst, ptrdiff_t dststride, const int16_t *_src, \ | ||
| 542 | int height, int denom, int _wx, int _ox) \ | ||
| 543 | { \ | ||
| 544 | int i; \ | ||
| 545 | uint8_t *dst; \ | ||
| 546 | for (i = 0; i < W; i += step) { \ | ||
| 547 | const int16_t *src = _src + i; \ | ||
| 548 | dst= _dst + (i * ((bitd + 7) / 8)); \ | ||
| 549 | ff_hevc_put_uni_w##step##_##bitd##_##opt(dst, dststride, src, \ | ||
| 550 | height, denom, _wx, _ox); \ | ||
| 551 | } \ | ||
| 552 | } | ||
| 553 | |||
| 554 |
2/2✓ Branch 1 taken 336 times.
✓ Branch 2 taken 168 times.
|
504 | mc_rep_uni_w(8, 6, 12, sse4) |
| 555 |
2/2✓ Branch 1 taken 23652 times.
✓ Branch 2 taken 11826 times.
|
35478 | mc_rep_uni_w(8, 8, 16, sse4) |
| 556 |
2/2✓ Branch 1 taken 504 times.
✓ Branch 2 taken 168 times.
|
672 | mc_rep_uni_w(8, 8, 24, sse4) |
| 557 |
2/2✓ Branch 1 taken 55472 times.
✓ Branch 2 taken 13868 times.
|
69340 | mc_rep_uni_w(8, 8, 32, sse4) |
| 558 |
2/2✓ Branch 1 taken 1008 times.
✓ Branch 2 taken 168 times.
|
1176 | mc_rep_uni_w(8, 8, 48, sse4) |
| 559 |
2/2✓ Branch 1 taken 43352 times.
✓ Branch 2 taken 5419 times.
|
48771 | mc_rep_uni_w(8, 8, 64, sse4) |
| 560 | |||
| 561 |
2/2✓ Branch 1 taken 368 times.
✓ Branch 2 taken 184 times.
|
552 | mc_rep_uni_w(10, 6, 12, sse4) |
| 562 |
2/2✓ Branch 1 taken 3304 times.
✓ Branch 2 taken 1652 times.
|
4956 | mc_rep_uni_w(10, 8, 16, sse4) |
| 563 |
2/2✓ Branch 1 taken 528 times.
✓ Branch 2 taken 176 times.
|
704 | mc_rep_uni_w(10, 8, 24, sse4) |
| 564 |
2/2✓ Branch 1 taken 4896 times.
✓ Branch 2 taken 1224 times.
|
6120 | mc_rep_uni_w(10, 8, 32, sse4) |
| 565 |
2/2✓ Branch 1 taken 1008 times.
✓ Branch 2 taken 168 times.
|
1176 | mc_rep_uni_w(10, 8, 48, sse4) |
| 566 |
2/2✓ Branch 1 taken 3168 times.
✓ Branch 2 taken 396 times.
|
3564 | mc_rep_uni_w(10, 8, 64, sse4) |
| 567 | |||
| 568 |
2/2✓ Branch 1 taken 336 times.
✓ Branch 2 taken 168 times.
|
504 | mc_rep_uni_w(12, 6, 12, sse4) |
| 569 |
2/2✓ Branch 1 taken 336 times.
✓ Branch 2 taken 168 times.
|
504 | mc_rep_uni_w(12, 8, 16, sse4) |
| 570 |
2/2✓ Branch 1 taken 504 times.
✓ Branch 2 taken 168 times.
|
672 | mc_rep_uni_w(12, 8, 24, sse4) |
| 571 |
2/2✓ Branch 1 taken 672 times.
✓ Branch 2 taken 168 times.
|
840 | mc_rep_uni_w(12, 8, 32, sse4) |
| 572 |
2/2✓ Branch 1 taken 1008 times.
✓ Branch 2 taken 168 times.
|
1176 | mc_rep_uni_w(12, 8, 48, sse4) |
| 573 |
2/2✓ Branch 1 taken 1344 times.
✓ Branch 2 taken 168 times.
|
1512 | mc_rep_uni_w(12, 8, 64, sse4) |
| 574 | |||
| 575 | #define mc_rep_bi_w(bitd, step, W, opt) \ | ||
| 576 | void ff_hevc_put_bi_w##W##_##bitd##_##opt(uint8_t *_dst, ptrdiff_t dststride, const int16_t *_src, \ | ||
| 577 | const int16_t *_src2, int height, \ | ||
| 578 | int denom, int wx0, int wx1, int ox) \ | ||
| 579 | { \ | ||
| 580 | int i; \ | ||
| 581 | uint8_t *dst; \ | ||
| 582 | for (i = 0; i < W; i += step) { \ | ||
| 583 | const int16_t *src = _src + i; \ | ||
| 584 | const int16_t *src2 = _src2 + i; \ | ||
| 585 | dst = _dst + (i * ((bitd + 7) / 8)); \ | ||
| 586 | ff_hevc_put_bi_w##step##_##bitd##_##opt(dst, dststride, src, src2, \ | ||
| 587 | height, denom, wx0, wx1, ox); \ | ||
| 588 | } \ | ||
| 589 | } | ||
| 590 | |||
| 591 |
2/2✓ Branch 1 taken 336 times.
✓ Branch 2 taken 168 times.
|
504 | mc_rep_bi_w(8, 6, 12, sse4) |
| 592 |
2/2✓ Branch 1 taken 4980 times.
✓ Branch 2 taken 2490 times.
|
7470 | mc_rep_bi_w(8, 8, 16, sse4) |
| 593 |
2/2✓ Branch 1 taken 504 times.
✓ Branch 2 taken 168 times.
|
672 | mc_rep_bi_w(8, 8, 24, sse4) |
| 594 |
2/2✓ Branch 1 taken 23720 times.
✓ Branch 2 taken 5930 times.
|
29650 | mc_rep_bi_w(8, 8, 32, sse4) |
| 595 |
2/2✓ Branch 1 taken 1008 times.
✓ Branch 2 taken 168 times.
|
1176 | mc_rep_bi_w(8, 8, 48, sse4) |
| 596 |
2/2✓ Branch 1 taken 21480 times.
✓ Branch 2 taken 2685 times.
|
24165 | mc_rep_bi_w(8, 8, 64, sse4) |
| 597 | |||
| 598 |
2/2✓ Branch 1 taken 352 times.
✓ Branch 2 taken 176 times.
|
528 | mc_rep_bi_w(10, 6, 12, sse4) |
| 599 |
2/2✓ Branch 1 taken 3000 times.
✓ Branch 2 taken 1500 times.
|
4500 | mc_rep_bi_w(10, 8, 16, sse4) |
| 600 |
2/2✓ Branch 1 taken 516 times.
✓ Branch 2 taken 172 times.
|
688 | mc_rep_bi_w(10, 8, 24, sse4) |
| 601 |
2/2✓ Branch 1 taken 4928 times.
✓ Branch 2 taken 1232 times.
|
6160 | mc_rep_bi_w(10, 8, 32, sse4) |
| 602 |
2/2✓ Branch 1 taken 1008 times.
✓ Branch 2 taken 168 times.
|
1176 | mc_rep_bi_w(10, 8, 48, sse4) |
| 603 |
2/2✓ Branch 1 taken 3264 times.
✓ Branch 2 taken 408 times.
|
3672 | mc_rep_bi_w(10, 8, 64, sse4) |
| 604 | |||
| 605 |
2/2✓ Branch 1 taken 336 times.
✓ Branch 2 taken 168 times.
|
504 | mc_rep_bi_w(12, 6, 12, sse4) |
| 606 |
2/2✓ Branch 1 taken 336 times.
✓ Branch 2 taken 168 times.
|
504 | mc_rep_bi_w(12, 8, 16, sse4) |
| 607 |
2/2✓ Branch 1 taken 504 times.
✓ Branch 2 taken 168 times.
|
672 | mc_rep_bi_w(12, 8, 24, sse4) |
| 608 |
2/2✓ Branch 1 taken 672 times.
✓ Branch 2 taken 168 times.
|
840 | mc_rep_bi_w(12, 8, 32, sse4) |
| 609 |
2/2✓ Branch 1 taken 1008 times.
✓ Branch 2 taken 168 times.
|
1176 | mc_rep_bi_w(12, 8, 48, sse4) |
| 610 |
2/2✓ Branch 1 taken 1344 times.
✓ Branch 2 taken 168 times.
|
1512 | mc_rep_bi_w(12, 8, 64, sse4) |
| 611 | |||
| 612 | #define mc_uni_w_func(name, bitd, W, opt) \ | ||
| 613 | static void hevc_put_uni_w_##name##W##_##bitd##_##opt(uint8_t *_dst, ptrdiff_t _dststride, \ | ||
| 614 | const uint8_t *_src, ptrdiff_t _srcstride, \ | ||
| 615 | int height, int denom, \ | ||
| 616 | int _wx, int _ox, \ | ||
| 617 | intptr_t mx, intptr_t my, int width) \ | ||
| 618 | { \ | ||
| 619 | LOCAL_ALIGNED_16(int16_t, temp, [71 * MAX_PB_SIZE]); \ | ||
| 620 | hevc_put_##name##W##_##bitd##_##opt(temp, _src, _srcstride, height, mx, my, width); \ | ||
| 621 | ff_hevc_put_uni_w##W##_##bitd##_##opt(_dst, _dststride, temp, height, denom, _wx, _ox); \ | ||
| 622 | } | ||
| 623 | |||
| 624 | #define mc_uni_w_funcs(name, bitd, opt) \ | ||
| 625 | mc_uni_w_func(name, bitd, 4, opt) \ | ||
| 626 | mc_uni_w_func(name, bitd, 8, opt) \ | ||
| 627 | mc_uni_w_func(name, bitd, 12, opt) \ | ||
| 628 | mc_uni_w_func(name, bitd, 16, opt) \ | ||
| 629 | mc_uni_w_func(name, bitd, 24, opt) \ | ||
| 630 | mc_uni_w_func(name, bitd, 32, opt) \ | ||
| 631 | mc_uni_w_func(name, bitd, 48, opt) \ | ||
| 632 | mc_uni_w_func(name, bitd, 64, opt) | ||
| 633 | |||
| 634 | 86198 | mc_uni_w_funcs(pel_pixels, 8, sse4) | |
| 635 | 24 | mc_uni_w_func(pel_pixels, 8, 6, sse4) | |
| 636 | 10360 | mc_uni_w_funcs(epel_h, 8, sse4) | |
| 637 | 24 | mc_uni_w_func(epel_h, 8, 6, sse4) | |
| 638 | 9276 | mc_uni_w_funcs(epel_v, 8, sse4) | |
| 639 | 24 | mc_uni_w_func(epel_v, 8, 6, sse4) | |
| 640 | 13300 | mc_uni_w_funcs(epel_hv, 8, sse4) | |
| 641 | 24 | mc_uni_w_func(epel_hv, 8, 6, sse4) | |
| 642 | 1952 | mc_uni_w_funcs(qpel_h, 8, sse4) | |
| 643 | 1508 | mc_uni_w_funcs(qpel_v, 8, sse4) | |
| 644 | 3960 | mc_uni_w_funcs(qpel_hv, 8, sse4) | |
| 645 | |||
| 646 | 5076 | mc_uni_w_funcs(pel_pixels, 10, sse4) | |
| 647 | 24 | mc_uni_w_func(pel_pixels, 10, 6, sse4) | |
| 648 | 1448 | mc_uni_w_funcs(epel_h, 10, sse4) | |
| 649 | 24 | mc_uni_w_func(epel_h, 10, 6, sse4) | |
| 650 | 456 | mc_uni_w_funcs(epel_v, 10, sse4) | |
| 651 | 24 | mc_uni_w_func(epel_v, 10, 6, sse4) | |
| 652 | 632 | mc_uni_w_funcs(epel_hv, 10, sse4) | |
| 653 | 24 | mc_uni_w_func(epel_hv, 10, 6, sse4) | |
| 654 | 940 | mc_uni_w_funcs(qpel_h, 10, sse4) | |
| 655 | 428 | mc_uni_w_funcs(qpel_v, 10, sse4) | |
| 656 | 476 | mc_uni_w_funcs(qpel_hv, 10, sse4) | |
| 657 | |||
| 658 | 384 | mc_uni_w_funcs(pel_pixels, 12, sse4) | |
| 659 | 24 | mc_uni_w_func(pel_pixels, 12, 6, sse4) | |
| 660 | 384 | mc_uni_w_funcs(epel_h, 12, sse4) | |
| 661 | 24 | mc_uni_w_func(epel_h, 12, 6, sse4) | |
| 662 | 384 | mc_uni_w_funcs(epel_v, 12, sse4) | |
| 663 | 24 | mc_uni_w_func(epel_v, 12, 6, sse4) | |
| 664 | 384 | mc_uni_w_funcs(epel_hv, 12, sse4) | |
| 665 | 24 | mc_uni_w_func(epel_hv, 12, 6, sse4) | |
| 666 | 384 | mc_uni_w_funcs(qpel_h, 12, sse4) | |
| 667 | 384 | mc_uni_w_funcs(qpel_v, 12, sse4) | |
| 668 | 384 | mc_uni_w_funcs(qpel_hv, 12, sse4) | |
| 669 | |||
| 670 | #define mc_bi_w_func(name, bitd, W, opt) \ | ||
| 671 | static void hevc_put_bi_w_##name##W##_##bitd##_##opt(uint8_t *_dst, ptrdiff_t _dststride, \ | ||
| 672 | const uint8_t *_src, ptrdiff_t _srcstride, \ | ||
| 673 | const int16_t *_src2, \ | ||
| 674 | int height, int denom, \ | ||
| 675 | int wx0, int wx1, int ox, \ | ||
| 676 | intptr_t mx, intptr_t my, int width) \ | ||
| 677 | { \ | ||
| 678 | LOCAL_ALIGNED_16(int16_t, temp, [71 * MAX_PB_SIZE]); \ | ||
| 679 | hevc_put_##name##W##_##bitd##_##opt(temp, _src, _srcstride, height, mx, my, width); \ | ||
| 680 | ff_hevc_put_bi_w##W##_##bitd##_##opt(_dst, _dststride, temp, _src2, \ | ||
| 681 | height, denom, wx0, wx1, ox); \ | ||
| 682 | } | ||
| 683 | |||
| 684 | #define mc_bi_w_funcs(name, bitd, opt) \ | ||
| 685 | mc_bi_w_func(name, bitd, 4, opt) \ | ||
| 686 | mc_bi_w_func(name, bitd, 8, opt) \ | ||
| 687 | mc_bi_w_func(name, bitd, 12, opt) \ | ||
| 688 | mc_bi_w_func(name, bitd, 16, opt) \ | ||
| 689 | mc_bi_w_func(name, bitd, 24, opt) \ | ||
| 690 | mc_bi_w_func(name, bitd, 32, opt) \ | ||
| 691 | mc_bi_w_func(name, bitd, 48, opt) \ | ||
| 692 | mc_bi_w_func(name, bitd, 64, opt) | ||
| 693 | |||
| 694 | 24022 | mc_bi_w_funcs(pel_pixels, 8, sse4) | |
| 695 | 24 | mc_bi_w_func(pel_pixels, 8, 6, sse4) | |
| 696 | 1336 | mc_bi_w_funcs(epel_h, 8, sse4) | |
| 697 | 24 | mc_bi_w_func(epel_h, 8, 6, sse4) | |
| 698 | 4956 | mc_bi_w_funcs(epel_v, 8, sse4) | |
| 699 | 24 | mc_bi_w_func(epel_v, 8, 6, sse4) | |
| 700 | 2512 | mc_bi_w_funcs(epel_hv, 8, sse4) | |
| 701 | 24 | mc_bi_w_func(epel_hv, 8, 6, sse4) | |
| 702 | 384 | mc_bi_w_funcs(qpel_h, 8, sse4) | |
| 703 | 384 | mc_bi_w_funcs(qpel_v, 8, sse4) | |
| 704 | 384 | mc_bi_w_funcs(qpel_hv, 8, sse4) | |
| 705 | |||
| 706 | 4432 | mc_bi_w_funcs(pel_pixels, 10, sse4) | |
| 707 | 24 | mc_bi_w_func(pel_pixels, 10, 6, sse4) | |
| 708 | 1488 | mc_bi_w_funcs(epel_h, 10, sse4) | |
| 709 | 24 | mc_bi_w_func(epel_h, 10, 6, sse4) | |
| 710 | 544 | mc_bi_w_funcs(epel_v, 10, sse4) | |
| 711 | 24 | mc_bi_w_func(epel_v, 10, 6, sse4) | |
| 712 | 408 | mc_bi_w_funcs(epel_hv, 10, sse4) | |
| 713 | 24 | mc_bi_w_func(epel_hv, 10, 6, sse4) | |
| 714 | 932 | mc_bi_w_funcs(qpel_h, 10, sse4) | |
| 715 | 464 | mc_bi_w_funcs(qpel_v, 10, sse4) | |
| 716 | 396 | mc_bi_w_funcs(qpel_hv, 10, sse4) | |
| 717 | |||
| 718 | 384 | mc_bi_w_funcs(pel_pixels, 12, sse4) | |
| 719 | 24 | mc_bi_w_func(pel_pixels, 12, 6, sse4) | |
| 720 | 384 | mc_bi_w_funcs(epel_h, 12, sse4) | |
| 721 | 24 | mc_bi_w_func(epel_h, 12, 6, sse4) | |
| 722 | 384 | mc_bi_w_funcs(epel_v, 12, sse4) | |
| 723 | 24 | mc_bi_w_func(epel_v, 12, 6, sse4) | |
| 724 | 384 | mc_bi_w_funcs(epel_hv, 12, sse4) | |
| 725 | 24 | mc_bi_w_func(epel_hv, 12, 6, sse4) | |
| 726 | 384 | mc_bi_w_funcs(qpel_h, 12, sse4) | |
| 727 | 384 | mc_bi_w_funcs(qpel_v, 12, sse4) | |
| 728 | 384 | mc_bi_w_funcs(qpel_hv, 12, sse4) | |
| 729 | #endif //ARCH_X86_64 && HAVE_SSE4_EXTERNAL | ||
| 730 | |||
| 731 | #define SAO_BAND_FILTER_FUNCS(bitd, opt) \ | ||
| 732 | void ff_hevc_sao_band_filter_8_##bitd##_##opt(uint8_t *_dst, const uint8_t *_src, ptrdiff_t _stride_dst, ptrdiff_t _stride_src, \ | ||
| 733 | const int16_t *sao_offset_val, int sao_left_class, int width, int height); \ | ||
| 734 | void ff_hevc_sao_band_filter_16_##bitd##_##opt(uint8_t *_dst, const uint8_t *_src, ptrdiff_t _stride_dst, ptrdiff_t _stride_src, \ | ||
| 735 | const int16_t *sao_offset_val, int sao_left_class, int width, int height); \ | ||
| 736 | void ff_hevc_sao_band_filter_32_##bitd##_##opt(uint8_t *_dst, const uint8_t *_src, ptrdiff_t _stride_dst, ptrdiff_t _stride_src, \ | ||
| 737 | const int16_t *sao_offset_val, int sao_left_class, int width, int height); \ | ||
| 738 | void ff_hevc_sao_band_filter_48_##bitd##_##opt(uint8_t *_dst, const uint8_t *_src, ptrdiff_t _stride_dst, ptrdiff_t _stride_src, \ | ||
| 739 | const int16_t *sao_offset_val, int sao_left_class, int width, int height); \ | ||
| 740 | void ff_hevc_sao_band_filter_64_##bitd##_##opt(uint8_t *_dst, const uint8_t *_src, ptrdiff_t _stride_dst, ptrdiff_t _stride_src, \ | ||
| 741 | const int16_t *sao_offset_val, int sao_left_class, int width, int height); | ||
| 742 | |||
| 743 | SAO_BAND_FILTER_FUNCS(8, sse2) | ||
| 744 | SAO_BAND_FILTER_FUNCS(10, sse2) | ||
| 745 | SAO_BAND_FILTER_FUNCS(12, sse2) | ||
| 746 | SAO_BAND_FILTER_FUNCS(8, avx) | ||
| 747 | SAO_BAND_FILTER_FUNCS(10, avx) | ||
| 748 | SAO_BAND_FILTER_FUNCS(12, avx) | ||
| 749 | SAO_BAND_FILTER_FUNCS(8, avx2) | ||
| 750 | SAO_BAND_FILTER_FUNCS(10, avx2) | ||
| 751 | SAO_BAND_FILTER_FUNCS(12, avx2) | ||
| 752 | |||
| 753 | #define SAO_BAND_INIT(bitd, opt) do { \ | ||
| 754 | c->sao_band_filter[0] = ff_hevc_sao_band_filter_8_##bitd##_##opt; \ | ||
| 755 | c->sao_band_filter[1] = ff_hevc_sao_band_filter_16_##bitd##_##opt; \ | ||
| 756 | c->sao_band_filter[2] = ff_hevc_sao_band_filter_32_##bitd##_##opt; \ | ||
| 757 | c->sao_band_filter[3] = ff_hevc_sao_band_filter_48_##bitd##_##opt; \ | ||
| 758 | c->sao_band_filter[4] = ff_hevc_sao_band_filter_64_##bitd##_##opt; \ | ||
| 759 | } while (0) | ||
| 760 | |||
| 761 | #define SAO_EDGE_FILTER_FUNCS(bitd, opt) \ | ||
| 762 | void ff_hevc_sao_edge_filter_8_##bitd##_##opt(uint8_t *_dst, const uint8_t *_src, ptrdiff_t stride_dst, \ | ||
| 763 | const int16_t *sao_offset_val, int eo, int width, int height); \ | ||
| 764 | void ff_hevc_sao_edge_filter_16_##bitd##_##opt(uint8_t *_dst, const uint8_t *_src, ptrdiff_t stride_dst, \ | ||
| 765 | const int16_t *sao_offset_val, int eo, int width, int height); \ | ||
| 766 | void ff_hevc_sao_edge_filter_32_##bitd##_##opt(uint8_t *_dst, const uint8_t *_src, ptrdiff_t stride_dst, \ | ||
| 767 | const int16_t *sao_offset_val, int eo, int width, int height); \ | ||
| 768 | void ff_hevc_sao_edge_filter_48_##bitd##_##opt(uint8_t *_dst, const uint8_t *_src, ptrdiff_t stride_dst, \ | ||
| 769 | const int16_t *sao_offset_val, int eo, int width, int height); \ | ||
| 770 | void ff_hevc_sao_edge_filter_64_##bitd##_##opt(uint8_t *_dst, const uint8_t *_src, ptrdiff_t stride_dst, \ | ||
| 771 | const int16_t *sao_offset_val, int eo, int width, int height); \ | ||
| 772 | |||
| 773 | SAO_EDGE_FILTER_FUNCS(8, ssse3) | ||
| 774 | SAO_EDGE_FILTER_FUNCS(8, avx2) | ||
| 775 | SAO_EDGE_FILTER_FUNCS(10, sse2) | ||
| 776 | SAO_EDGE_FILTER_FUNCS(10, avx2) | ||
| 777 | SAO_EDGE_FILTER_FUNCS(12, sse2) | ||
| 778 | SAO_EDGE_FILTER_FUNCS(12, avx2) | ||
| 779 | |||
| 780 | #define SAO_EDGE_INIT(bitd, opt) do { \ | ||
| 781 | c->sao_edge_filter[0] = ff_hevc_sao_edge_filter_8_##bitd##_##opt; \ | ||
| 782 | c->sao_edge_filter[1] = ff_hevc_sao_edge_filter_16_##bitd##_##opt; \ | ||
| 783 | c->sao_edge_filter[2] = ff_hevc_sao_edge_filter_32_##bitd##_##opt; \ | ||
| 784 | c->sao_edge_filter[3] = ff_hevc_sao_edge_filter_48_##bitd##_##opt; \ | ||
| 785 | c->sao_edge_filter[4] = ff_hevc_sao_edge_filter_64_##bitd##_##opt; \ | ||
| 786 | } while (0) | ||
| 787 | |||
| 788 | #define PEL_LINK(dst, idx1, idx2, idx3, name, D, opt) \ | ||
| 789 | dst [idx1][idx2][idx3] = hevc_put_ ## name ## _ ## D ## _##opt; \ | ||
| 790 | dst ## _bi [idx1][idx2][idx3] = ff_hevc_put_bi_ ## name ## _ ## D ## _##opt; \ | ||
| 791 | dst ## _uni [idx1][idx2][idx3] = hevc_put_uni_ ## name ## _ ## D ## _##opt; \ | ||
| 792 | dst ## _uni_w[idx1][idx2][idx3] = hevc_put_uni_w_ ## name ## _ ## D ## _##opt; \ | ||
| 793 | dst ## _bi_w [idx1][idx2][idx3] = hevc_put_bi_w_ ## name ## _ ## D ## _##opt | ||
| 794 | |||
| 795 | #define EPEL_LINKS(pointer, my, mx, fname, bitd, opt ) \ | ||
| 796 | PEL_LINK(pointer, 1, my , mx , fname##4 , bitd, opt ); \ | ||
| 797 | PEL_LINK(pointer, 2, my , mx , fname##6 , bitd, opt ); \ | ||
| 798 | PEL_LINK(pointer, 3, my , mx , fname##8 , bitd, opt ); \ | ||
| 799 | PEL_LINK(pointer, 4, my , mx , fname##12, bitd, opt ); \ | ||
| 800 | PEL_LINK(pointer, 5, my , mx , fname##16, bitd, opt ); \ | ||
| 801 | PEL_LINK(pointer, 6, my , mx , fname##24, bitd, opt ); \ | ||
| 802 | PEL_LINK(pointer, 7, my , mx , fname##32, bitd, opt ); \ | ||
| 803 | PEL_LINK(pointer, 8, my , mx , fname##48, bitd, opt ); \ | ||
| 804 | PEL_LINK(pointer, 9, my , mx , fname##64, bitd, opt ) | ||
| 805 | #define QPEL_LINKS(pointer, my, mx, fname, bitd, opt) \ | ||
| 806 | PEL_LINK(pointer, 1, my , mx , fname##4 , bitd, opt ); \ | ||
| 807 | PEL_LINK(pointer, 3, my , mx , fname##8 , bitd, opt ); \ | ||
| 808 | PEL_LINK(pointer, 4, my , mx , fname##12, bitd, opt ); \ | ||
| 809 | PEL_LINK(pointer, 5, my , mx , fname##16, bitd, opt ); \ | ||
| 810 | PEL_LINK(pointer, 6, my , mx , fname##24, bitd, opt ); \ | ||
| 811 | PEL_LINK(pointer, 7, my , mx , fname##32, bitd, opt ); \ | ||
| 812 | PEL_LINK(pointer, 8, my , mx , fname##48, bitd, opt ); \ | ||
| 813 | PEL_LINK(pointer, 9, my , mx , fname##64, bitd, opt ) | ||
| 814 | |||
| 815 | 1651 | void ff_hevc_dsp_init_x86(HEVCDSPContext *c, const int bit_depth) | |
| 816 | { | ||
| 817 | 1651 | int cpu_flags = av_get_cpu_flags(); | |
| 818 | |||
| 819 |
2/2✓ Branch 0 taken 685 times.
✓ Branch 1 taken 966 times.
|
1651 | if (bit_depth == 8) { |
| 820 |
2/2✓ Branch 0 taken 219 times.
✓ Branch 1 taken 466 times.
|
685 | if (EXTERNAL_SSE2(cpu_flags)) { |
| 821 | 219 | c->add_residual[0] = ff_hevc_add_residual_4_8_sse2; | |
| 822 | |||
| 823 | 219 | c->hevc_v_loop_filter_chroma = ff_hevc_v_loop_filter_chroma_8_sse2; | |
| 824 | 219 | c->hevc_h_loop_filter_chroma = ff_hevc_h_loop_filter_chroma_8_sse2; | |
| 825 | #if ARCH_X86_64 | ||
| 826 | 219 | c->hevc_v_loop_filter_luma = ff_hevc_v_loop_filter_luma_8_sse2; | |
| 827 | 219 | c->hevc_h_loop_filter_luma = ff_hevc_h_loop_filter_luma_8_sse2; | |
| 828 | |||
| 829 | 219 | c->idct[2] = ff_hevc_idct_16x16_8_sse2; | |
| 830 | 219 | c->idct[3] = ff_hevc_idct_32x32_8_sse2; | |
| 831 | #endif | ||
| 832 | 219 | SAO_BAND_INIT(8, sse2); | |
| 833 | |||
| 834 | 219 | c->idct_dc[0] = ff_hevc_idct_4x4_dc_8_sse2; | |
| 835 | 219 | c->idct_dc[1] = ff_hevc_idct_8x8_dc_8_sse2; | |
| 836 | 219 | c->idct_dc[2] = ff_hevc_idct_16x16_dc_8_sse2; | |
| 837 | 219 | c->idct_dc[3] = ff_hevc_idct_32x32_dc_8_sse2; | |
| 838 | |||
| 839 | 219 | c->idct[0] = ff_hevc_idct_4x4_8_sse2; | |
| 840 | 219 | c->idct[1] = ff_hevc_idct_8x8_8_sse2; | |
| 841 | |||
| 842 | 219 | c->add_residual[1] = ff_hevc_add_residual_8_8_sse2; | |
| 843 | 219 | c->add_residual[2] = ff_hevc_add_residual_16_8_sse2; | |
| 844 | 219 | c->add_residual[3] = ff_hevc_add_residual_32_8_sse2; | |
| 845 | } | ||
| 846 |
2/2✓ Branch 0 taken 177 times.
✓ Branch 1 taken 508 times.
|
685 | if (EXTERNAL_SSSE3(cpu_flags)) { |
| 847 | #if ARCH_X86_64 | ||
| 848 | 177 | c->hevc_v_loop_filter_luma = ff_hevc_v_loop_filter_luma_8_ssse3; | |
| 849 | 177 | c->hevc_h_loop_filter_luma = ff_hevc_h_loop_filter_luma_8_ssse3; | |
| 850 | #endif | ||
| 851 | 177 | c->dequant = ff_hevc_dequant_8_ssse3; | |
| 852 | 177 | SAO_EDGE_INIT(8, ssse3); | |
| 853 | } | ||
| 854 | #if HAVE_SSE4_EXTERNAL && ARCH_X86_64 | ||
| 855 |
2/2✓ Branch 0 taken 156 times.
✓ Branch 1 taken 529 times.
|
685 | if (EXTERNAL_SSE4(cpu_flags)) { |
| 856 | |||
| 857 | 156 | EPEL_LINKS(c->put_hevc_epel, 0, 0, pel_pixels, 8, sse4); | |
| 858 | 156 | EPEL_LINKS(c->put_hevc_epel, 0, 1, epel_h, 8, sse4); | |
| 859 | 156 | EPEL_LINKS(c->put_hevc_epel, 1, 0, epel_v, 8, sse4); | |
| 860 | 156 | EPEL_LINKS(c->put_hevc_epel, 1, 1, epel_hv, 8, sse4); | |
| 861 | |||
| 862 | 156 | QPEL_LINKS(c->put_hevc_qpel, 0, 0, pel_pixels, 8, sse4); | |
| 863 | 156 | QPEL_LINKS(c->put_hevc_qpel, 0, 1, qpel_h, 8, sse4); | |
| 864 | 156 | QPEL_LINKS(c->put_hevc_qpel, 1, 0, qpel_v, 8, sse4); | |
| 865 | 156 | QPEL_LINKS(c->put_hevc_qpel, 1, 1, qpel_hv, 8, sse4); | |
| 866 | } | ||
| 867 | #endif | ||
| 868 |
2/2✓ Branch 0 taken 72 times.
✓ Branch 1 taken 613 times.
|
685 | if (EXTERNAL_AVX(cpu_flags)) { |
| 869 | 72 | c->hevc_v_loop_filter_chroma = ff_hevc_v_loop_filter_chroma_8_avx; | |
| 870 | 72 | c->hevc_h_loop_filter_chroma = ff_hevc_h_loop_filter_chroma_8_avx; | |
| 871 | #if ARCH_X86_64 | ||
| 872 | 72 | c->hevc_v_loop_filter_luma = ff_hevc_v_loop_filter_luma_8_avx; | |
| 873 | 72 | c->hevc_h_loop_filter_luma = ff_hevc_h_loop_filter_luma_8_avx; | |
| 874 | |||
| 875 | 72 | c->idct[2] = ff_hevc_idct_16x16_8_avx; | |
| 876 | 72 | c->idct[3] = ff_hevc_idct_32x32_8_avx; | |
| 877 | #endif | ||
| 878 | 72 | SAO_BAND_INIT(8, avx); | |
| 879 | |||
| 880 | 72 | c->idct[0] = ff_hevc_idct_4x4_8_avx; | |
| 881 | 72 | c->idct[1] = ff_hevc_idct_8x8_8_avx; | |
| 882 | } | ||
| 883 |
2/2✓ Branch 0 taken 30 times.
✓ Branch 1 taken 655 times.
|
685 | if (EXTERNAL_AVX2(cpu_flags)) { |
| 884 | 30 | c->sao_band_filter[0] = ff_hevc_sao_band_filter_8_8_avx2; | |
| 885 | 30 | c->sao_band_filter[1] = ff_hevc_sao_band_filter_16_8_avx2; | |
| 886 | } | ||
| 887 | #if HAVE_AVX2_EXTERNAL | ||
| 888 |
3/4✓ Branch 0 taken 30 times.
✓ Branch 1 taken 655 times.
✓ Branch 2 taken 30 times.
✗ Branch 3 not taken.
|
685 | if (EXTERNAL_AVX2_FAST(cpu_flags)) { |
| 889 | 30 | c->idct_dc[2] = ff_hevc_idct_16x16_dc_8_avx2; | |
| 890 | 30 | c->idct_dc[3] = ff_hevc_idct_32x32_dc_8_avx2; | |
| 891 | |||
| 892 | #if ARCH_X86_64 | ||
| 893 | 30 | c->put_hevc_epel[7][0][0] = hevc_put_pel_pixels32_8_avx2; | |
| 894 | 30 | c->put_hevc_epel[8][0][0] = hevc_put_pel_pixels48_8_avx2; | |
| 895 | 30 | c->put_hevc_epel[9][0][0] = hevc_put_pel_pixels64_8_avx2; | |
| 896 | |||
| 897 | 30 | c->put_hevc_qpel[7][0][0] = hevc_put_pel_pixels32_8_avx2; | |
| 898 | 30 | c->put_hevc_qpel[8][0][0] = hevc_put_pel_pixels48_8_avx2; | |
| 899 | 30 | c->put_hevc_qpel[9][0][0] = hevc_put_pel_pixels64_8_avx2; | |
| 900 | |||
| 901 | 30 | c->put_hevc_epel_uni[7][0][0] = hevc_put_uni_pel_pixels32_8_avx2; | |
| 902 | 30 | c->put_hevc_epel_uni[8][0][0] = hevc_put_uni_pel_pixels48_8_avx2; | |
| 903 | 30 | c->put_hevc_epel_uni[9][0][0] = hevc_put_uni_pel_pixels64_8_avx2; | |
| 904 | |||
| 905 | 30 | c->put_hevc_qpel_uni[7][0][0] = hevc_put_uni_pel_pixels32_8_avx2; | |
| 906 | 30 | c->put_hevc_qpel_uni[8][0][0] = hevc_put_uni_pel_pixels48_8_avx2; | |
| 907 | 30 | c->put_hevc_qpel_uni[9][0][0] = hevc_put_uni_pel_pixels64_8_avx2; | |
| 908 | |||
| 909 | 30 | c->put_hevc_qpel_bi[7][0][0] = ff_hevc_put_bi_pel_pixels32_8_avx2; | |
| 910 | 30 | c->put_hevc_qpel_bi[8][0][0] = ff_hevc_put_bi_pel_pixels48_8_avx2; | |
| 911 | 30 | c->put_hevc_qpel_bi[9][0][0] = ff_hevc_put_bi_pel_pixels64_8_avx2; | |
| 912 | |||
| 913 | 30 | c->put_hevc_epel_bi[7][0][0] = ff_hevc_put_bi_pel_pixels32_8_avx2; | |
| 914 | 30 | c->put_hevc_epel_bi[8][0][0] = ff_hevc_put_bi_pel_pixels48_8_avx2; | |
| 915 | 30 | c->put_hevc_epel_bi[9][0][0] = ff_hevc_put_bi_pel_pixels64_8_avx2; | |
| 916 | |||
| 917 | 30 | c->put_hevc_epel[7][0][1] = hevc_put_epel_h32_8_avx2; | |
| 918 | 30 | c->put_hevc_epel[8][0][1] = hevc_put_epel_h48_8_avx2; | |
| 919 | 30 | c->put_hevc_epel[9][0][1] = hevc_put_epel_h64_8_avx2; | |
| 920 | |||
| 921 | 30 | c->put_hevc_epel_uni[7][0][1] = hevc_put_uni_epel_h32_8_avx2; | |
| 922 | 30 | c->put_hevc_epel_uni[8][0][1] = hevc_put_uni_epel_h48_8_avx2; | |
| 923 | 30 | c->put_hevc_epel_uni[9][0][1] = hevc_put_uni_epel_h64_8_avx2; | |
| 924 | |||
| 925 | 30 | c->put_hevc_epel_bi[7][0][1] = ff_hevc_put_bi_epel_h32_8_avx2; | |
| 926 | 30 | c->put_hevc_epel_bi[8][0][1] = ff_hevc_put_bi_epel_h48_8_avx2; | |
| 927 | 30 | c->put_hevc_epel_bi[9][0][1] = ff_hevc_put_bi_epel_h64_8_avx2; | |
| 928 | |||
| 929 | 30 | c->put_hevc_epel[7][1][0] = hevc_put_epel_v32_8_avx2; | |
| 930 | 30 | c->put_hevc_epel[8][1][0] = hevc_put_epel_v48_8_avx2; | |
| 931 | 30 | c->put_hevc_epel[9][1][0] = hevc_put_epel_v64_8_avx2; | |
| 932 | |||
| 933 | 30 | c->put_hevc_epel_uni[7][1][0] = hevc_put_uni_epel_v32_8_avx2; | |
| 934 | 30 | c->put_hevc_epel_uni[8][1][0] = hevc_put_uni_epel_v48_8_avx2; | |
| 935 | 30 | c->put_hevc_epel_uni[9][1][0] = hevc_put_uni_epel_v64_8_avx2; | |
| 936 | |||
| 937 | 30 | c->put_hevc_epel_bi[7][1][0] = ff_hevc_put_bi_epel_v32_8_avx2; | |
| 938 | 30 | c->put_hevc_epel_bi[8][1][0] = ff_hevc_put_bi_epel_v48_8_avx2; | |
| 939 | 30 | c->put_hevc_epel_bi[9][1][0] = ff_hevc_put_bi_epel_v64_8_avx2; | |
| 940 | |||
| 941 | 30 | c->put_hevc_epel[7][1][1] = hevc_put_epel_hv32_8_avx2; | |
| 942 | 30 | c->put_hevc_epel[8][1][1] = hevc_put_epel_hv48_8_avx2; | |
| 943 | 30 | c->put_hevc_epel[9][1][1] = hevc_put_epel_hv64_8_avx2; | |
| 944 | |||
| 945 | 30 | c->put_hevc_epel_uni[7][1][1] = hevc_put_uni_epel_hv32_8_avx2; | |
| 946 | 30 | c->put_hevc_epel_uni[8][1][1] = hevc_put_uni_epel_hv48_8_avx2; | |
| 947 | 30 | c->put_hevc_epel_uni[9][1][1] = hevc_put_uni_epel_hv64_8_avx2; | |
| 948 | |||
| 949 | 30 | c->put_hevc_epel_bi[7][1][1] = ff_hevc_put_bi_epel_hv32_8_avx2; | |
| 950 | 30 | c->put_hevc_epel_bi[8][1][1] = ff_hevc_put_bi_epel_hv48_8_avx2; | |
| 951 | 30 | c->put_hevc_epel_bi[9][1][1] = ff_hevc_put_bi_epel_hv64_8_avx2; | |
| 952 | |||
| 953 | 30 | c->put_hevc_qpel[7][0][1] = hevc_put_qpel_h32_8_avx2; | |
| 954 | 30 | c->put_hevc_qpel[8][0][1] = hevc_put_qpel_h48_8_avx2; | |
| 955 | 30 | c->put_hevc_qpel[9][0][1] = hevc_put_qpel_h64_8_avx2; | |
| 956 | |||
| 957 | 30 | c->put_hevc_qpel[7][1][0] = hevc_put_qpel_v32_8_avx2; | |
| 958 | 30 | c->put_hevc_qpel[8][1][0] = hevc_put_qpel_v48_8_avx2; | |
| 959 | 30 | c->put_hevc_qpel[9][1][0] = hevc_put_qpel_v64_8_avx2; | |
| 960 | |||
| 961 | 30 | c->put_hevc_qpel_uni[7][0][1] = hevc_put_uni_qpel_h32_8_avx2; | |
| 962 | 30 | c->put_hevc_qpel_uni[8][0][1] = hevc_put_uni_qpel_h48_8_avx2; | |
| 963 | 30 | c->put_hevc_qpel_uni[9][0][1] = hevc_put_uni_qpel_h64_8_avx2; | |
| 964 | |||
| 965 | 30 | c->put_hevc_qpel_uni[7][1][0] = hevc_put_uni_qpel_v32_8_avx2; | |
| 966 | 30 | c->put_hevc_qpel_uni[8][1][0] = hevc_put_uni_qpel_v48_8_avx2; | |
| 967 | 30 | c->put_hevc_qpel_uni[9][1][0] = hevc_put_uni_qpel_v64_8_avx2; | |
| 968 | |||
| 969 | 30 | c->put_hevc_qpel_bi[7][0][1] = ff_hevc_put_bi_qpel_h32_8_avx2; | |
| 970 | 30 | c->put_hevc_qpel_bi[8][0][1] = ff_hevc_put_bi_qpel_h48_8_avx2; | |
| 971 | 30 | c->put_hevc_qpel_bi[9][0][1] = ff_hevc_put_bi_qpel_h64_8_avx2; | |
| 972 | |||
| 973 | 30 | c->put_hevc_qpel_bi[7][1][0] = ff_hevc_put_bi_qpel_v32_8_avx2; | |
| 974 | 30 | c->put_hevc_qpel_bi[8][1][0] = ff_hevc_put_bi_qpel_v48_8_avx2; | |
| 975 | 30 | c->put_hevc_qpel_bi[9][1][0] = ff_hevc_put_bi_qpel_v64_8_avx2; | |
| 976 | #endif /* ARCH_X86_64 */ | ||
| 977 | |||
| 978 | 30 | SAO_BAND_INIT(8, avx2); | |
| 979 | |||
| 980 | 30 | c->sao_edge_filter[2] = ff_hevc_sao_edge_filter_32_8_avx2; | |
| 981 | 30 | c->sao_edge_filter[3] = ff_hevc_sao_edge_filter_48_8_avx2; | |
| 982 | 30 | c->sao_edge_filter[4] = ff_hevc_sao_edge_filter_64_8_avx2; | |
| 983 | |||
| 984 | 30 | c->add_residual[3] = ff_hevc_add_residual_32_8_avx2; | |
| 985 | } | ||
| 986 | #endif /* HAVE_AVX2_EXTERNAL */ | ||
| 987 | #if ARCH_X86_64 | ||
| 988 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 685 times.
|
685 | if (EXTERNAL_AVX512ICL(cpu_flags)) { |
| 989 | ✗ | c->put_hevc_qpel[1][0][1] = ff_hevc_put_qpel_h4_8_avx512icl; | |
| 990 | ✗ | c->put_hevc_qpel[3][0][1] = ff_hevc_put_qpel_h8_8_avx512icl; | |
| 991 | ✗ | c->put_hevc_qpel[5][0][1] = ff_hevc_put_qpel_h16_8_avx512icl; | |
| 992 | ✗ | c->put_hevc_qpel[7][0][1] = ff_hevc_put_qpel_h32_8_avx512icl; | |
| 993 | ✗ | c->put_hevc_qpel[9][0][1] = ff_hevc_put_qpel_h64_8_avx512icl; | |
| 994 | ✗ | c->put_hevc_qpel[3][1][1] = ff_hevc_put_qpel_hv8_8_avx512icl; | |
| 995 | } | ||
| 996 | #endif | ||
| 997 |
2/2✓ Branch 0 taken 354 times.
✓ Branch 1 taken 612 times.
|
966 | } else if (bit_depth == 10) { |
| 998 |
2/2✓ Branch 0 taken 264 times.
✓ Branch 1 taken 90 times.
|
354 | if (EXTERNAL_MMXEXT(cpu_flags)) { |
| 999 | 264 | c->add_residual[0] = ff_hevc_add_residual_4_10_mmxext; | |
| 1000 | } | ||
| 1001 |
2/2✓ Branch 0 taken 222 times.
✓ Branch 1 taken 132 times.
|
354 | if (EXTERNAL_SSE2(cpu_flags)) { |
| 1002 | 222 | c->hevc_v_loop_filter_chroma = ff_hevc_v_loop_filter_chroma_10_sse2; | |
| 1003 | 222 | c->hevc_h_loop_filter_chroma = ff_hevc_h_loop_filter_chroma_10_sse2; | |
| 1004 | #if ARCH_X86_64 | ||
| 1005 | 222 | c->hevc_v_loop_filter_luma = ff_hevc_v_loop_filter_luma_10_sse2; | |
| 1006 | 222 | c->hevc_h_loop_filter_luma = ff_hevc_h_loop_filter_luma_10_sse2; | |
| 1007 | |||
| 1008 | 222 | c->idct[2] = ff_hevc_idct_16x16_10_sse2; | |
| 1009 | 222 | c->idct[3] = ff_hevc_idct_32x32_10_sse2; | |
| 1010 | #endif | ||
| 1011 | 222 | SAO_BAND_INIT(10, sse2); | |
| 1012 | 222 | SAO_EDGE_INIT(10, sse2); | |
| 1013 | |||
| 1014 | 222 | c->idct_dc[0] = ff_hevc_idct_4x4_dc_10_sse2; | |
| 1015 | 222 | c->idct_dc[1] = ff_hevc_idct_8x8_dc_10_sse2; | |
| 1016 | 222 | c->idct_dc[2] = ff_hevc_idct_16x16_dc_10_sse2; | |
| 1017 | 222 | c->idct_dc[3] = ff_hevc_idct_32x32_dc_10_sse2; | |
| 1018 | |||
| 1019 | 222 | c->idct[0] = ff_hevc_idct_4x4_10_sse2; | |
| 1020 | 222 | c->idct[1] = ff_hevc_idct_8x8_10_sse2; | |
| 1021 | |||
| 1022 | 222 | c->add_residual[1] = ff_hevc_add_residual_8_10_sse2; | |
| 1023 | 222 | c->add_residual[2] = ff_hevc_add_residual_16_10_sse2; | |
| 1024 | 222 | c->add_residual[3] = ff_hevc_add_residual_32_10_sse2; | |
| 1025 | } | ||
| 1026 | #if ARCH_X86_64 | ||
| 1027 |
2/2✓ Branch 0 taken 180 times.
✓ Branch 1 taken 174 times.
|
354 | if (EXTERNAL_SSSE3(cpu_flags)) { |
| 1028 | 180 | c->hevc_v_loop_filter_luma = ff_hevc_v_loop_filter_luma_10_ssse3; | |
| 1029 | 180 | c->hevc_h_loop_filter_luma = ff_hevc_h_loop_filter_luma_10_ssse3; | |
| 1030 | } | ||
| 1031 | #endif | ||
| 1032 | #if HAVE_SSE4_EXTERNAL && ARCH_X86_64 | ||
| 1033 |
2/2✓ Branch 0 taken 159 times.
✓ Branch 1 taken 195 times.
|
354 | if (EXTERNAL_SSE4(cpu_flags)) { |
| 1034 | 159 | EPEL_LINKS(c->put_hevc_epel, 0, 0, pel_pixels, 10, sse4); | |
| 1035 | 159 | EPEL_LINKS(c->put_hevc_epel, 0, 1, epel_h, 10, sse4); | |
| 1036 | 159 | EPEL_LINKS(c->put_hevc_epel, 1, 0, epel_v, 10, sse4); | |
| 1037 | 159 | EPEL_LINKS(c->put_hevc_epel, 1, 1, epel_hv, 10, sse4); | |
| 1038 | |||
| 1039 | 159 | QPEL_LINKS(c->put_hevc_qpel, 0, 0, pel_pixels, 10, sse4); | |
| 1040 | 159 | QPEL_LINKS(c->put_hevc_qpel, 0, 1, qpel_h, 10, sse4); | |
| 1041 | 159 | QPEL_LINKS(c->put_hevc_qpel, 1, 0, qpel_v, 10, sse4); | |
| 1042 | 159 | QPEL_LINKS(c->put_hevc_qpel, 1, 1, qpel_hv, 10, sse4); | |
| 1043 | } | ||
| 1044 | #endif | ||
| 1045 |
2/2✓ Branch 0 taken 75 times.
✓ Branch 1 taken 279 times.
|
354 | if (EXTERNAL_AVX(cpu_flags)) { |
| 1046 | 75 | c->hevc_v_loop_filter_chroma = ff_hevc_v_loop_filter_chroma_10_avx; | |
| 1047 | 75 | c->hevc_h_loop_filter_chroma = ff_hevc_h_loop_filter_chroma_10_avx; | |
| 1048 | #if ARCH_X86_64 | ||
| 1049 | 75 | c->hevc_v_loop_filter_luma = ff_hevc_v_loop_filter_luma_10_avx; | |
| 1050 | 75 | c->hevc_h_loop_filter_luma = ff_hevc_h_loop_filter_luma_10_avx; | |
| 1051 | |||
| 1052 | 75 | c->idct[2] = ff_hevc_idct_16x16_10_avx; | |
| 1053 | 75 | c->idct[3] = ff_hevc_idct_32x32_10_avx; | |
| 1054 | #endif | ||
| 1055 | |||
| 1056 | 75 | c->idct[0] = ff_hevc_idct_4x4_10_avx; | |
| 1057 | 75 | c->idct[1] = ff_hevc_idct_8x8_10_avx; | |
| 1058 | |||
| 1059 | 75 | SAO_BAND_INIT(10, avx); | |
| 1060 | } | ||
| 1061 |
2/2✓ Branch 0 taken 33 times.
✓ Branch 1 taken 321 times.
|
354 | if (EXTERNAL_AVX2(cpu_flags)) { |
| 1062 | 33 | c->sao_band_filter[0] = ff_hevc_sao_band_filter_8_10_avx2; | |
| 1063 | } | ||
| 1064 | #if HAVE_AVX2_EXTERNAL | ||
| 1065 |
3/4✓ Branch 0 taken 33 times.
✓ Branch 1 taken 321 times.
✓ Branch 2 taken 33 times.
✗ Branch 3 not taken.
|
354 | if (EXTERNAL_AVX2_FAST(cpu_flags)) { |
| 1066 | 33 | c->idct_dc[2] = ff_hevc_idct_16x16_dc_10_avx2; | |
| 1067 | 33 | c->idct_dc[3] = ff_hevc_idct_32x32_dc_10_avx2; | |
| 1068 | |||
| 1069 | #if ARCH_X86_64 | ||
| 1070 | 33 | c->put_hevc_epel[5][0][0] = hevc_put_pel_pixels16_10_avx2; | |
| 1071 | 33 | c->put_hevc_epel[6][0][0] = hevc_put_pel_pixels24_10_avx2; | |
| 1072 | 33 | c->put_hevc_epel[7][0][0] = hevc_put_pel_pixels32_10_avx2; | |
| 1073 | 33 | c->put_hevc_epel[8][0][0] = hevc_put_pel_pixels48_10_avx2; | |
| 1074 | 33 | c->put_hevc_epel[9][0][0] = hevc_put_pel_pixels64_10_avx2; | |
| 1075 | |||
| 1076 | 33 | c->put_hevc_qpel[5][0][0] = hevc_put_pel_pixels16_10_avx2; | |
| 1077 | 33 | c->put_hevc_qpel[6][0][0] = hevc_put_pel_pixels24_10_avx2; | |
| 1078 | 33 | c->put_hevc_qpel[7][0][0] = hevc_put_pel_pixels32_10_avx2; | |
| 1079 | 33 | c->put_hevc_qpel[8][0][0] = hevc_put_pel_pixels48_10_avx2; | |
| 1080 | 33 | c->put_hevc_qpel[9][0][0] = hevc_put_pel_pixels64_10_avx2; | |
| 1081 | |||
| 1082 | 33 | c->put_hevc_epel_uni[5][0][0] = hevc_put_uni_pel_pixels32_8_avx2; | |
| 1083 | 33 | c->put_hevc_epel_uni[6][0][0] = hevc_put_uni_pel_pixels48_8_avx2; | |
| 1084 | 33 | c->put_hevc_epel_uni[7][0][0] = hevc_put_uni_pel_pixels64_8_avx2; | |
| 1085 | 33 | c->put_hevc_epel_uni[8][0][0] = hevc_put_uni_pel_pixels96_8_avx2; | |
| 1086 | 33 | c->put_hevc_epel_uni[9][0][0] = hevc_put_uni_pel_pixels128_8_avx2; | |
| 1087 | |||
| 1088 | 33 | c->put_hevc_qpel_uni[5][0][0] = hevc_put_uni_pel_pixels32_8_avx2; | |
| 1089 | 33 | c->put_hevc_qpel_uni[6][0][0] = hevc_put_uni_pel_pixels48_8_avx2; | |
| 1090 | 33 | c->put_hevc_qpel_uni[7][0][0] = hevc_put_uni_pel_pixels64_8_avx2; | |
| 1091 | 33 | c->put_hevc_qpel_uni[8][0][0] = hevc_put_uni_pel_pixels96_8_avx2; | |
| 1092 | 33 | c->put_hevc_qpel_uni[9][0][0] = hevc_put_uni_pel_pixels128_8_avx2; | |
| 1093 | |||
| 1094 | 33 | c->put_hevc_epel_bi[5][0][0] = ff_hevc_put_bi_pel_pixels16_10_avx2; | |
| 1095 | 33 | c->put_hevc_epel_bi[6][0][0] = ff_hevc_put_bi_pel_pixels24_10_avx2; | |
| 1096 | 33 | c->put_hevc_epel_bi[7][0][0] = ff_hevc_put_bi_pel_pixels32_10_avx2; | |
| 1097 | 33 | c->put_hevc_epel_bi[8][0][0] = ff_hevc_put_bi_pel_pixels48_10_avx2; | |
| 1098 | 33 | c->put_hevc_epel_bi[9][0][0] = ff_hevc_put_bi_pel_pixels64_10_avx2; | |
| 1099 | 33 | c->put_hevc_qpel_bi[5][0][0] = ff_hevc_put_bi_pel_pixels16_10_avx2; | |
| 1100 | 33 | c->put_hevc_qpel_bi[6][0][0] = ff_hevc_put_bi_pel_pixels24_10_avx2; | |
| 1101 | 33 | c->put_hevc_qpel_bi[7][0][0] = ff_hevc_put_bi_pel_pixels32_10_avx2; | |
| 1102 | 33 | c->put_hevc_qpel_bi[8][0][0] = ff_hevc_put_bi_pel_pixels48_10_avx2; | |
| 1103 | 33 | c->put_hevc_qpel_bi[9][0][0] = ff_hevc_put_bi_pel_pixels64_10_avx2; | |
| 1104 | |||
| 1105 | 33 | c->put_hevc_epel[5][0][1] = hevc_put_epel_h16_10_avx2; | |
| 1106 | 33 | c->put_hevc_epel[6][0][1] = hevc_put_epel_h24_10_avx2; | |
| 1107 | 33 | c->put_hevc_epel[7][0][1] = hevc_put_epel_h32_10_avx2; | |
| 1108 | 33 | c->put_hevc_epel[8][0][1] = hevc_put_epel_h48_10_avx2; | |
| 1109 | 33 | c->put_hevc_epel[9][0][1] = hevc_put_epel_h64_10_avx2; | |
| 1110 | |||
| 1111 | 33 | c->put_hevc_epel_uni[5][0][1] = hevc_put_uni_epel_h16_10_avx2; | |
| 1112 | 33 | c->put_hevc_epel_uni[6][0][1] = hevc_put_uni_epel_h24_10_avx2; | |
| 1113 | 33 | c->put_hevc_epel_uni[7][0][1] = hevc_put_uni_epel_h32_10_avx2; | |
| 1114 | 33 | c->put_hevc_epel_uni[8][0][1] = hevc_put_uni_epel_h48_10_avx2; | |
| 1115 | 33 | c->put_hevc_epel_uni[9][0][1] = hevc_put_uni_epel_h64_10_avx2; | |
| 1116 | |||
| 1117 | 33 | c->put_hevc_epel_bi[5][0][1] = ff_hevc_put_bi_epel_h16_10_avx2; | |
| 1118 | 33 | c->put_hevc_epel_bi[6][0][1] = ff_hevc_put_bi_epel_h24_10_avx2; | |
| 1119 | 33 | c->put_hevc_epel_bi[7][0][1] = ff_hevc_put_bi_epel_h32_10_avx2; | |
| 1120 | 33 | c->put_hevc_epel_bi[8][0][1] = ff_hevc_put_bi_epel_h48_10_avx2; | |
| 1121 | 33 | c->put_hevc_epel_bi[9][0][1] = ff_hevc_put_bi_epel_h64_10_avx2; | |
| 1122 | |||
| 1123 | 33 | c->put_hevc_epel[5][1][0] = hevc_put_epel_v16_10_avx2; | |
| 1124 | 33 | c->put_hevc_epel[6][1][0] = hevc_put_epel_v24_10_avx2; | |
| 1125 | 33 | c->put_hevc_epel[7][1][0] = hevc_put_epel_v32_10_avx2; | |
| 1126 | 33 | c->put_hevc_epel[8][1][0] = hevc_put_epel_v48_10_avx2; | |
| 1127 | 33 | c->put_hevc_epel[9][1][0] = hevc_put_epel_v64_10_avx2; | |
| 1128 | |||
| 1129 | 33 | c->put_hevc_epel_uni[5][1][0] = hevc_put_uni_epel_v16_10_avx2; | |
| 1130 | 33 | c->put_hevc_epel_uni[6][1][0] = hevc_put_uni_epel_v24_10_avx2; | |
| 1131 | 33 | c->put_hevc_epel_uni[7][1][0] = hevc_put_uni_epel_v32_10_avx2; | |
| 1132 | 33 | c->put_hevc_epel_uni[8][1][0] = hevc_put_uni_epel_v48_10_avx2; | |
| 1133 | 33 | c->put_hevc_epel_uni[9][1][0] = hevc_put_uni_epel_v64_10_avx2; | |
| 1134 | |||
| 1135 | 33 | c->put_hevc_epel_bi[5][1][0] = ff_hevc_put_bi_epel_v16_10_avx2; | |
| 1136 | 33 | c->put_hevc_epel_bi[6][1][0] = ff_hevc_put_bi_epel_v24_10_avx2; | |
| 1137 | 33 | c->put_hevc_epel_bi[7][1][0] = ff_hevc_put_bi_epel_v32_10_avx2; | |
| 1138 | 33 | c->put_hevc_epel_bi[8][1][0] = ff_hevc_put_bi_epel_v48_10_avx2; | |
| 1139 | 33 | c->put_hevc_epel_bi[9][1][0] = ff_hevc_put_bi_epel_v64_10_avx2; | |
| 1140 | |||
| 1141 | 33 | c->put_hevc_epel[5][1][1] = hevc_put_epel_hv16_10_avx2; | |
| 1142 | 33 | c->put_hevc_epel[6][1][1] = hevc_put_epel_hv24_10_avx2; | |
| 1143 | 33 | c->put_hevc_epel[7][1][1] = hevc_put_epel_hv32_10_avx2; | |
| 1144 | 33 | c->put_hevc_epel[8][1][1] = hevc_put_epel_hv48_10_avx2; | |
| 1145 | 33 | c->put_hevc_epel[9][1][1] = hevc_put_epel_hv64_10_avx2; | |
| 1146 | |||
| 1147 | 33 | c->put_hevc_epel_uni[5][1][1] = hevc_put_uni_epel_hv16_10_avx2; | |
| 1148 | 33 | c->put_hevc_epel_uni[6][1][1] = hevc_put_uni_epel_hv24_10_avx2; | |
| 1149 | 33 | c->put_hevc_epel_uni[7][1][1] = hevc_put_uni_epel_hv32_10_avx2; | |
| 1150 | 33 | c->put_hevc_epel_uni[8][1][1] = hevc_put_uni_epel_hv48_10_avx2; | |
| 1151 | 33 | c->put_hevc_epel_uni[9][1][1] = hevc_put_uni_epel_hv64_10_avx2; | |
| 1152 | |||
| 1153 | 33 | c->put_hevc_epel_bi[5][1][1] = ff_hevc_put_bi_epel_hv16_10_avx2; | |
| 1154 | 33 | c->put_hevc_epel_bi[6][1][1] = ff_hevc_put_bi_epel_hv24_10_avx2; | |
| 1155 | 33 | c->put_hevc_epel_bi[7][1][1] = ff_hevc_put_bi_epel_hv32_10_avx2; | |
| 1156 | 33 | c->put_hevc_epel_bi[8][1][1] = ff_hevc_put_bi_epel_hv48_10_avx2; | |
| 1157 | 33 | c->put_hevc_epel_bi[9][1][1] = ff_hevc_put_bi_epel_hv64_10_avx2; | |
| 1158 | |||
| 1159 | 33 | c->put_hevc_qpel[5][0][1] = hevc_put_qpel_h16_10_avx2; | |
| 1160 | 33 | c->put_hevc_qpel[6][0][1] = hevc_put_qpel_h24_10_avx2; | |
| 1161 | 33 | c->put_hevc_qpel[7][0][1] = hevc_put_qpel_h32_10_avx2; | |
| 1162 | 33 | c->put_hevc_qpel[8][0][1] = hevc_put_qpel_h48_10_avx2; | |
| 1163 | 33 | c->put_hevc_qpel[9][0][1] = hevc_put_qpel_h64_10_avx2; | |
| 1164 | |||
| 1165 | 33 | c->put_hevc_qpel_uni[5][0][1] = hevc_put_uni_qpel_h16_10_avx2; | |
| 1166 | 33 | c->put_hevc_qpel_uni[6][0][1] = hevc_put_uni_qpel_h24_10_avx2; | |
| 1167 | 33 | c->put_hevc_qpel_uni[7][0][1] = hevc_put_uni_qpel_h32_10_avx2; | |
| 1168 | 33 | c->put_hevc_qpel_uni[8][0][1] = hevc_put_uni_qpel_h48_10_avx2; | |
| 1169 | 33 | c->put_hevc_qpel_uni[9][0][1] = hevc_put_uni_qpel_h64_10_avx2; | |
| 1170 | |||
| 1171 | 33 | c->put_hevc_qpel_bi[5][0][1] = ff_hevc_put_bi_qpel_h16_10_avx2; | |
| 1172 | 33 | c->put_hevc_qpel_bi[6][0][1] = ff_hevc_put_bi_qpel_h24_10_avx2; | |
| 1173 | 33 | c->put_hevc_qpel_bi[7][0][1] = ff_hevc_put_bi_qpel_h32_10_avx2; | |
| 1174 | 33 | c->put_hevc_qpel_bi[8][0][1] = ff_hevc_put_bi_qpel_h48_10_avx2; | |
| 1175 | 33 | c->put_hevc_qpel_bi[9][0][1] = ff_hevc_put_bi_qpel_h64_10_avx2; | |
| 1176 | |||
| 1177 | 33 | c->put_hevc_qpel[5][1][0] = hevc_put_qpel_v16_10_avx2; | |
| 1178 | 33 | c->put_hevc_qpel[6][1][0] = hevc_put_qpel_v24_10_avx2; | |
| 1179 | 33 | c->put_hevc_qpel[7][1][0] = hevc_put_qpel_v32_10_avx2; | |
| 1180 | 33 | c->put_hevc_qpel[8][1][0] = hevc_put_qpel_v48_10_avx2; | |
| 1181 | 33 | c->put_hevc_qpel[9][1][0] = hevc_put_qpel_v64_10_avx2; | |
| 1182 | |||
| 1183 | 33 | c->put_hevc_qpel_uni[5][1][0] = hevc_put_uni_qpel_v16_10_avx2; | |
| 1184 | 33 | c->put_hevc_qpel_uni[6][1][0] = hevc_put_uni_qpel_v24_10_avx2; | |
| 1185 | 33 | c->put_hevc_qpel_uni[7][1][0] = hevc_put_uni_qpel_v32_10_avx2; | |
| 1186 | 33 | c->put_hevc_qpel_uni[8][1][0] = hevc_put_uni_qpel_v48_10_avx2; | |
| 1187 | 33 | c->put_hevc_qpel_uni[9][1][0] = hevc_put_uni_qpel_v64_10_avx2; | |
| 1188 | |||
| 1189 | 33 | c->put_hevc_qpel_bi[5][1][0] = ff_hevc_put_bi_qpel_v16_10_avx2; | |
| 1190 | 33 | c->put_hevc_qpel_bi[6][1][0] = ff_hevc_put_bi_qpel_v24_10_avx2; | |
| 1191 | 33 | c->put_hevc_qpel_bi[7][1][0] = ff_hevc_put_bi_qpel_v32_10_avx2; | |
| 1192 | 33 | c->put_hevc_qpel_bi[8][1][0] = ff_hevc_put_bi_qpel_v48_10_avx2; | |
| 1193 | 33 | c->put_hevc_qpel_bi[9][1][0] = ff_hevc_put_bi_qpel_v64_10_avx2; | |
| 1194 | |||
| 1195 | 33 | c->put_hevc_qpel[5][1][1] = hevc_put_qpel_hv16_10_avx2; | |
| 1196 | 33 | c->put_hevc_qpel[6][1][1] = hevc_put_qpel_hv24_10_avx2; | |
| 1197 | 33 | c->put_hevc_qpel[7][1][1] = hevc_put_qpel_hv32_10_avx2; | |
| 1198 | 33 | c->put_hevc_qpel[8][1][1] = hevc_put_qpel_hv48_10_avx2; | |
| 1199 | 33 | c->put_hevc_qpel[9][1][1] = hevc_put_qpel_hv64_10_avx2; | |
| 1200 | |||
| 1201 | 33 | c->put_hevc_qpel_uni[5][1][1] = hevc_put_uni_qpel_hv16_10_avx2; | |
| 1202 | 33 | c->put_hevc_qpel_uni[6][1][1] = hevc_put_uni_qpel_hv24_10_avx2; | |
| 1203 | 33 | c->put_hevc_qpel_uni[7][1][1] = hevc_put_uni_qpel_hv32_10_avx2; | |
| 1204 | 33 | c->put_hevc_qpel_uni[8][1][1] = hevc_put_uni_qpel_hv48_10_avx2; | |
| 1205 | 33 | c->put_hevc_qpel_uni[9][1][1] = hevc_put_uni_qpel_hv64_10_avx2; | |
| 1206 | |||
| 1207 | 33 | c->put_hevc_qpel_bi[5][1][1] = ff_hevc_put_bi_qpel_hv16_10_avx2; | |
| 1208 | 33 | c->put_hevc_qpel_bi[6][1][1] = ff_hevc_put_bi_qpel_hv24_10_avx2; | |
| 1209 | 33 | c->put_hevc_qpel_bi[7][1][1] = ff_hevc_put_bi_qpel_hv32_10_avx2; | |
| 1210 | 33 | c->put_hevc_qpel_bi[8][1][1] = ff_hevc_put_bi_qpel_hv48_10_avx2; | |
| 1211 | 33 | c->put_hevc_qpel_bi[9][1][1] = ff_hevc_put_bi_qpel_hv64_10_avx2; | |
| 1212 | #endif /* ARCH_X86_64 */ | ||
| 1213 | |||
| 1214 | 33 | SAO_BAND_INIT(10, avx2); | |
| 1215 | 33 | SAO_EDGE_INIT(10, avx2); | |
| 1216 | |||
| 1217 | 33 | c->add_residual[2] = ff_hevc_add_residual_16_10_avx2; | |
| 1218 | 33 | c->add_residual[3] = ff_hevc_add_residual_32_10_avx2; | |
| 1219 | } | ||
| 1220 | #endif /* HAVE_AVX2_EXTERNAL */ | ||
| 1221 |
2/2✓ Branch 0 taken 304 times.
✓ Branch 1 taken 308 times.
|
612 | } else if (bit_depth == 12) { |
| 1222 |
2/2✓ Branch 0 taken 210 times.
✓ Branch 1 taken 94 times.
|
304 | if (EXTERNAL_SSE2(cpu_flags)) { |
| 1223 | 210 | c->hevc_v_loop_filter_chroma = ff_hevc_v_loop_filter_chroma_12_sse2; | |
| 1224 | 210 | c->hevc_h_loop_filter_chroma = ff_hevc_h_loop_filter_chroma_12_sse2; | |
| 1225 | #if ARCH_X86_64 | ||
| 1226 | 210 | c->hevc_v_loop_filter_luma = ff_hevc_v_loop_filter_luma_12_sse2; | |
| 1227 | 210 | c->hevc_h_loop_filter_luma = ff_hevc_h_loop_filter_luma_12_sse2; | |
| 1228 | #endif | ||
| 1229 | 210 | SAO_BAND_INIT(12, sse2); | |
| 1230 | 210 | SAO_EDGE_INIT(12, sse2); | |
| 1231 | |||
| 1232 | 210 | c->idct_dc[0] = ff_hevc_idct_4x4_dc_12_sse2; | |
| 1233 | 210 | c->idct_dc[1] = ff_hevc_idct_8x8_dc_12_sse2; | |
| 1234 | 210 | c->idct_dc[2] = ff_hevc_idct_16x16_dc_12_sse2; | |
| 1235 | 210 | c->idct_dc[3] = ff_hevc_idct_32x32_dc_12_sse2; | |
| 1236 | } | ||
| 1237 | #if ARCH_X86_64 | ||
| 1238 |
2/2✓ Branch 0 taken 168 times.
✓ Branch 1 taken 136 times.
|
304 | if (EXTERNAL_SSSE3(cpu_flags)) { |
| 1239 | 168 | c->hevc_v_loop_filter_luma = ff_hevc_v_loop_filter_luma_12_ssse3; | |
| 1240 | 168 | c->hevc_h_loop_filter_luma = ff_hevc_h_loop_filter_luma_12_ssse3; | |
| 1241 | } | ||
| 1242 | #endif | ||
| 1243 | #if HAVE_SSE4_EXTERNAL && ARCH_X86_64 | ||
| 1244 |
2/2✓ Branch 0 taken 147 times.
✓ Branch 1 taken 157 times.
|
304 | if (EXTERNAL_SSE4(cpu_flags)) { |
| 1245 | 147 | EPEL_LINKS(c->put_hevc_epel, 0, 0, pel_pixels, 12, sse4); | |
| 1246 | 147 | EPEL_LINKS(c->put_hevc_epel, 0, 1, epel_h, 12, sse4); | |
| 1247 | 147 | EPEL_LINKS(c->put_hevc_epel, 1, 0, epel_v, 12, sse4); | |
| 1248 | 147 | EPEL_LINKS(c->put_hevc_epel, 1, 1, epel_hv, 12, sse4); | |
| 1249 | |||
| 1250 | 147 | QPEL_LINKS(c->put_hevc_qpel, 0, 0, pel_pixels, 12, sse4); | |
| 1251 | 147 | QPEL_LINKS(c->put_hevc_qpel, 0, 1, qpel_h, 12, sse4); | |
| 1252 | 147 | QPEL_LINKS(c->put_hevc_qpel, 1, 0, qpel_v, 12, sse4); | |
| 1253 | 147 | QPEL_LINKS(c->put_hevc_qpel, 1, 1, qpel_hv, 12, sse4); | |
| 1254 | } | ||
| 1255 | #endif | ||
| 1256 |
2/2✓ Branch 0 taken 63 times.
✓ Branch 1 taken 241 times.
|
304 | if (EXTERNAL_AVX(cpu_flags)) { |
| 1257 | 63 | c->hevc_v_loop_filter_chroma = ff_hevc_v_loop_filter_chroma_12_avx; | |
| 1258 | 63 | c->hevc_h_loop_filter_chroma = ff_hevc_h_loop_filter_chroma_12_avx; | |
| 1259 | #if ARCH_X86_64 | ||
| 1260 | 63 | c->hevc_v_loop_filter_luma = ff_hevc_v_loop_filter_luma_12_avx; | |
| 1261 | 63 | c->hevc_h_loop_filter_luma = ff_hevc_h_loop_filter_luma_12_avx; | |
| 1262 | #endif | ||
| 1263 | 63 | SAO_BAND_INIT(12, avx); | |
| 1264 | } | ||
| 1265 |
2/2✓ Branch 0 taken 21 times.
✓ Branch 1 taken 283 times.
|
304 | if (EXTERNAL_AVX2(cpu_flags)) { |
| 1266 | 21 | c->sao_band_filter[0] = ff_hevc_sao_band_filter_8_12_avx2; | |
| 1267 | } | ||
| 1268 |
3/4✓ Branch 0 taken 21 times.
✓ Branch 1 taken 283 times.
✓ Branch 2 taken 21 times.
✗ Branch 3 not taken.
|
304 | if (EXTERNAL_AVX2_FAST(cpu_flags)) { |
| 1269 | 21 | c->idct_dc[2] = ff_hevc_idct_16x16_dc_12_avx2; | |
| 1270 | 21 | c->idct_dc[3] = ff_hevc_idct_32x32_dc_12_avx2; | |
| 1271 | |||
| 1272 | 21 | SAO_BAND_INIT(12, avx2); | |
| 1273 | 21 | SAO_EDGE_INIT(12, avx2); | |
| 1274 | } | ||
| 1275 | } | ||
| 1276 | 1651 | } | |
| 1277 |