FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavcodec/x86/h264dsp_init.c
Date: 2024-04-25 05:10:44
Exec Total Coverage
Lines: 112 112 100.0%
Functions: 1 1 100.0%
Branches: 42 42 100.0%

Line Branch Exec Source
1 /*
2 * Copyright (c) 2004-2005 Michael Niedermayer, Loren Merritt
3 *
4 * This file is part of FFmpeg.
5 *
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 #include "libavutil/attributes.h"
22 #include "libavutil/cpu.h"
23 #include "libavutil/x86/asm.h"
24 #include "libavutil/x86/cpu.h"
25 #include "libavcodec/h264dsp.h"
26
27 /***********************************/
28 /* IDCT */
29 #define IDCT_ADD_FUNC(NUM, DEPTH, OPT) \
30 void ff_h264_idct ## NUM ## _add_ ## DEPTH ## _ ## OPT(uint8_t *dst, \
31 int16_t *block, \
32 int stride);
33
34 IDCT_ADD_FUNC(, 8, sse2)
35 IDCT_ADD_FUNC(, 8, avx)
36 IDCT_ADD_FUNC(, 10, sse2)
37 IDCT_ADD_FUNC(_dc, 8, sse2)
38 IDCT_ADD_FUNC(_dc, 8, avx)
39 IDCT_ADD_FUNC(_dc, 10, mmxext)
40 IDCT_ADD_FUNC(8_dc, 8, mmxext)
41 IDCT_ADD_FUNC(8_dc, 10, sse2)
42 IDCT_ADD_FUNC(8, 8, sse2)
43 IDCT_ADD_FUNC(8, 10, sse2)
44 IDCT_ADD_FUNC(, 10, avx)
45 IDCT_ADD_FUNC(8_dc, 10, avx)
46 IDCT_ADD_FUNC(8, 10, avx)
47
48
49 #define IDCT_ADD_REP_FUNC(NUM, REP, DEPTH, OPT) \
50 void ff_h264_idct ## NUM ## _add ## REP ## _ ## DEPTH ## _ ## OPT \
51 (uint8_t *dst, const int *block_offset, \
52 int16_t *block, int stride, const uint8_t nnzc[5 * 8]);
53
54 IDCT_ADD_REP_FUNC(8, 4, 8, sse2)
55 IDCT_ADD_REP_FUNC(8, 4, 10, sse2)
56 IDCT_ADD_REP_FUNC(8, 4, 10, avx)
57 IDCT_ADD_REP_FUNC(, 16, 8, sse2)
58 IDCT_ADD_REP_FUNC(, 16, 10, sse2)
59 IDCT_ADD_REP_FUNC(, 16intra, 8, sse2)
60 IDCT_ADD_REP_FUNC(, 16intra, 10, sse2)
61 IDCT_ADD_REP_FUNC(, 16, 10, avx)
62 IDCT_ADD_REP_FUNC(, 16intra, 10, avx)
63
64
65 #define IDCT_ADD_REP_FUNC2(NUM, REP, DEPTH, OPT) \
66 void ff_h264_idct ## NUM ## _add ## REP ## _ ## DEPTH ## _ ## OPT \
67 (uint8_t **dst, const int *block_offset, \
68 int16_t *block, int stride, const uint8_t nnzc[15 * 8]);
69
70 IDCT_ADD_REP_FUNC2(, 8, 8, sse2)
71 IDCT_ADD_REP_FUNC2(, 8, 10, sse2)
72 IDCT_ADD_REP_FUNC2(, 8, 10, avx)
73
74 IDCT_ADD_REP_FUNC2(, 8_422, 8, mmx)
75
76 IDCT_ADD_REP_FUNC2(, 8_422, 10, sse2)
77 IDCT_ADD_REP_FUNC2(, 8_422, 10, avx)
78
79 void ff_h264_luma_dc_dequant_idct_sse2(int16_t *output, int16_t *input, int qmul);
80
81 /***********************************/
82 /* deblocking */
83
84 void ff_h264_loop_filter_strength_mmxext(int16_t bS[2][4][4], uint8_t nnz[40],
85 int8_t ref[2][40],
86 int16_t mv[2][40][2],
87 int bidir, int edges, int step,
88 int mask_mv0, int mask_mv1, int field);
89
90 #define LF_FUNC(DIR, TYPE, DEPTH, OPT) \
91 void ff_deblock_ ## DIR ## _ ## TYPE ## _ ## DEPTH ## _ ## OPT(uint8_t *pix, \
92 ptrdiff_t stride, \
93 int alpha, \
94 int beta, \
95 int8_t *tc0);
96 #define LF_IFUNC(DIR, TYPE, DEPTH, OPT) \
97 void ff_deblock_ ## DIR ## _ ## TYPE ## _ ## DEPTH ## _ ## OPT(uint8_t *pix, \
98 ptrdiff_t stride, \
99 int alpha, \
100 int beta);
101
102 #define LF_FUNCS(type, depth) \
103 LF_FUNC(h, luma, depth, sse2) \
104 LF_IFUNC(h, luma_intra, depth, sse2) \
105 LF_FUNC(v, luma, depth, sse2) \
106 LF_IFUNC(v, luma_intra, depth, sse2) \
107 LF_FUNC(h, chroma, depth, sse2) \
108 LF_IFUNC(h, chroma_intra, depth, sse2) \
109 LF_FUNC(h, chroma422, depth, sse2) \
110 LF_IFUNC(h, chroma422_intra, depth, sse2) \
111 LF_FUNC(v, chroma, depth, sse2) \
112 LF_IFUNC(v, chroma_intra, depth, sse2) \
113 LF_FUNC(h, luma, depth, avx) \
114 LF_IFUNC(h, luma_intra, depth, avx) \
115 LF_FUNC(v, luma, depth, avx) \
116 LF_IFUNC(v, luma_intra, depth, avx) \
117 LF_FUNC(h, chroma, depth, avx) \
118 LF_IFUNC(h, chroma_intra, depth, avx) \
119 LF_FUNC(h, chroma422, depth, avx) \
120 LF_IFUNC(h, chroma422_intra, depth, avx) \
121 LF_FUNC(v, chroma, depth, avx) \
122 LF_IFUNC(v, chroma_intra, depth, avx)
123
124 LF_FUNC(h, luma_mbaff, 8, sse2)
125 LF_FUNC(h, luma_mbaff, 8, avx)
126
127 LF_FUNCS(uint8_t, 8)
128 LF_FUNCS(uint16_t, 10)
129
130 LF_FUNC(v, luma, 10, mmxext)
131 LF_FUNC(h, luma, 10, mmxext)
132 LF_IFUNC(v, luma_intra, 10, mmxext)
133 LF_IFUNC(h, luma_intra, 10, mmxext)
134
135 /***********************************/
136 /* weighted prediction */
137
138 #define H264_WEIGHT(W, OPT) \
139 void ff_h264_weight_ ## W ## _ ## OPT(uint8_t *dst, ptrdiff_t stride, \
140 int height, int log2_denom, \
141 int weight, int offset);
142
143 #define H264_BIWEIGHT(W, OPT) \
144 void ff_h264_biweight_ ## W ## _ ## OPT(uint8_t *dst, uint8_t *src, \
145 ptrdiff_t stride, int height, \
146 int log2_denom, int weightd, \
147 int weights, int offset);
148
149 #define H264_BIWEIGHT_MMX(W) \
150 H264_WEIGHT(W, mmxext) \
151 H264_BIWEIGHT(W, mmxext)
152
153 #define H264_BIWEIGHT_SSE(W) \
154 H264_WEIGHT(W, sse2) \
155 H264_BIWEIGHT(W, sse2) \
156 H264_BIWEIGHT(W, ssse3)
157
158 H264_BIWEIGHT_SSE(16)
159 H264_BIWEIGHT_SSE(8)
160 H264_BIWEIGHT_MMX(4)
161
162 #define H264_WEIGHT_10(W, DEPTH, OPT) \
163 void ff_h264_weight_ ## W ## _ ## DEPTH ## _ ## OPT(uint8_t *dst, \
164 ptrdiff_t stride, \
165 int height, \
166 int log2_denom, \
167 int weight, \
168 int offset);
169
170 #define H264_BIWEIGHT_10(W, DEPTH, OPT) \
171 void ff_h264_biweight_ ## W ## _ ## DEPTH ## _ ## OPT(uint8_t *dst, \
172 uint8_t *src, \
173 ptrdiff_t stride, \
174 int height, \
175 int log2_denom, \
176 int weightd, \
177 int weights, \
178 int offset);
179
180 #define H264_BIWEIGHT_10_SSE(W, DEPTH) \
181 H264_WEIGHT_10(W, DEPTH, sse2) \
182 H264_WEIGHT_10(W, DEPTH, sse4) \
183 H264_BIWEIGHT_10(W, DEPTH, sse2) \
184 H264_BIWEIGHT_10(W, DEPTH, sse4)
185
186 H264_BIWEIGHT_10_SSE(16, 10)
187 H264_BIWEIGHT_10_SSE(8, 10)
188 H264_BIWEIGHT_10_SSE(4, 10)
189
190 1283 av_cold void ff_h264dsp_init_x86(H264DSPContext *c, const int bit_depth,
191 const int chroma_format_idc)
192 {
193 #if HAVE_X86ASM
194 1283 int cpu_flags = av_get_cpu_flags();
195
196
4/4
✓ Branch 0 taken 389 times.
✓ Branch 1 taken 894 times.
✓ Branch 2 taken 316 times.
✓ Branch 3 taken 73 times.
1283 if (EXTERNAL_MMXEXT(cpu_flags) && chroma_format_idc <= 1)
197 316 c->h264_loop_filter_strength = ff_h264_loop_filter_strength_mmxext;
198
199
2/2
✓ Branch 0 taken 1071 times.
✓ Branch 1 taken 212 times.
1283 if (bit_depth == 8) {
200
2/2
✓ Branch 0 taken 251 times.
✓ Branch 1 taken 820 times.
1071 if (EXTERNAL_MMX(cpu_flags)) {
201
2/2
✓ Branch 0 taken 31 times.
✓ Branch 1 taken 220 times.
251 if (chroma_format_idc <= 1) {
202 } else {
203 31 c->h264_idct_add8 = ff_h264_idct_add8_422_8_mmx;
204 }
205 }
206
2/2
✓ Branch 0 taken 245 times.
✓ Branch 1 taken 826 times.
1071 if (EXTERNAL_MMXEXT(cpu_flags)) {
207 245 c->h264_idct8_dc_add = ff_h264_idct8_dc_add_8_mmxext;
208
209 245 c->weight_h264_pixels_tab[2] = ff_h264_weight_4_mmxext;
210
211 245 c->biweight_h264_pixels_tab[2] = ff_h264_biweight_4_mmxext;
212 }
213
2/2
✓ Branch 0 taken 233 times.
✓ Branch 1 taken 838 times.
1071 if (EXTERNAL_SSE2(cpu_flags)) {
214 233 c->h264_idct8_add = ff_h264_idct8_add_8_sse2;
215
216 233 c->h264_idct_add16 = ff_h264_idct_add16_8_sse2;
217 233 c->h264_idct8_add4 = ff_h264_idct8_add4_8_sse2;
218
2/2
✓ Branch 0 taken 208 times.
✓ Branch 1 taken 25 times.
233 if (chroma_format_idc <= 1)
219 208 c->h264_idct_add8 = ff_h264_idct_add8_8_sse2;
220 233 c->h264_idct_add16intra = ff_h264_idct_add16intra_8_sse2;
221 233 c->h264_luma_dc_dequant_idct = ff_h264_luma_dc_dequant_idct_sse2;
222
223 233 c->weight_h264_pixels_tab[0] = ff_h264_weight_16_sse2;
224 233 c->weight_h264_pixels_tab[1] = ff_h264_weight_8_sse2;
225
226 233 c->biweight_h264_pixels_tab[0] = ff_h264_biweight_16_sse2;
227 233 c->biweight_h264_pixels_tab[1] = ff_h264_biweight_8_sse2;
228
229 233 c->h264_v_loop_filter_luma = ff_deblock_v_luma_8_sse2;
230 233 c->h264_h_loop_filter_luma = ff_deblock_h_luma_8_sse2;
231 233 c->h264_v_loop_filter_luma_intra = ff_deblock_v_luma_intra_8_sse2;
232 233 c->h264_h_loop_filter_luma_intra = ff_deblock_h_luma_intra_8_sse2;
233
234 #if ARCH_X86_64
235 233 c->h264_h_loop_filter_luma_mbaff = ff_deblock_h_luma_mbaff_8_sse2;
236 #endif
237
238 233 c->h264_v_loop_filter_chroma = ff_deblock_v_chroma_8_sse2;
239 233 c->h264_v_loop_filter_chroma_intra = ff_deblock_v_chroma_intra_8_sse2;
240
2/2
✓ Branch 0 taken 208 times.
✓ Branch 1 taken 25 times.
233 if (chroma_format_idc <= 1) {
241 208 c->h264_h_loop_filter_chroma = ff_deblock_h_chroma_8_sse2;
242 208 c->h264_h_loop_filter_chroma_intra = ff_deblock_h_chroma_intra_8_sse2;
243 } else {
244 25 c->h264_h_loop_filter_chroma = ff_deblock_h_chroma422_8_sse2;
245 25 c->h264_h_loop_filter_chroma_intra = ff_deblock_h_chroma422_intra_8_sse2;
246 }
247
248 233 c->h264_idct_add = ff_h264_idct_add_8_sse2;
249 233 c->h264_idct_dc_add = ff_h264_idct_dc_add_8_sse2;
250 }
251
2/2
✓ Branch 0 taken 221 times.
✓ Branch 1 taken 850 times.
1071 if (EXTERNAL_SSSE3(cpu_flags)) {
252 221 c->biweight_h264_pixels_tab[0] = ff_h264_biweight_16_ssse3;
253 221 c->biweight_h264_pixels_tab[1] = ff_h264_biweight_8_ssse3;
254 }
255
2/2
✓ Branch 0 taken 197 times.
✓ Branch 1 taken 874 times.
1071 if (EXTERNAL_AVX(cpu_flags)) {
256 197 c->h264_v_loop_filter_luma = ff_deblock_v_luma_8_avx;
257 197 c->h264_h_loop_filter_luma = ff_deblock_h_luma_8_avx;
258 197 c->h264_v_loop_filter_luma_intra = ff_deblock_v_luma_intra_8_avx;
259 197 c->h264_h_loop_filter_luma_intra = ff_deblock_h_luma_intra_8_avx;
260 #if ARCH_X86_64
261 197 c->h264_h_loop_filter_luma_mbaff = ff_deblock_h_luma_mbaff_8_avx;
262 #endif
263
264 197 c->h264_v_loop_filter_chroma = ff_deblock_v_chroma_8_avx;
265 197 c->h264_v_loop_filter_chroma_intra = ff_deblock_v_chroma_intra_8_avx;
266
2/2
✓ Branch 0 taken 184 times.
✓ Branch 1 taken 13 times.
197 if (chroma_format_idc <= 1) {
267 184 c->h264_h_loop_filter_chroma = ff_deblock_h_chroma_8_avx;
268 184 c->h264_h_loop_filter_chroma_intra = ff_deblock_h_chroma_intra_8_avx;
269 } else {
270 13 c->h264_h_loop_filter_chroma = ff_deblock_h_chroma422_8_avx;
271 13 c->h264_h_loop_filter_chroma_intra = ff_deblock_h_chroma422_intra_8_avx;
272 }
273
274 197 c->h264_idct_add = ff_h264_idct_add_8_avx;
275 197 c->h264_idct_dc_add = ff_h264_idct_dc_add_8_avx;
276 }
277
2/2
✓ Branch 0 taken 129 times.
✓ Branch 1 taken 83 times.
212 } else if (bit_depth == 10) {
278
2/2
✓ Branch 0 taken 78 times.
✓ Branch 1 taken 51 times.
129 if (EXTERNAL_MMXEXT(cpu_flags)) {
279 #if ARCH_X86_32 && !HAVE_ALIGNED_STACK
280 c->h264_v_loop_filter_luma = ff_deblock_v_luma_10_mmxext;
281 c->h264_h_loop_filter_luma = ff_deblock_h_luma_10_mmxext;
282 c->h264_v_loop_filter_luma_intra = ff_deblock_v_luma_intra_10_mmxext;
283 c->h264_h_loop_filter_luma_intra = ff_deblock_h_luma_intra_10_mmxext;
284 #endif /* ARCH_X86_32 && !HAVE_ALIGNED_STACK */
285 78 c->h264_idct_dc_add = ff_h264_idct_dc_add_10_mmxext;
286 }
287
2/2
✓ Branch 0 taken 66 times.
✓ Branch 1 taken 63 times.
129 if (EXTERNAL_SSE2(cpu_flags)) {
288 66 c->h264_idct_add = ff_h264_idct_add_10_sse2;
289 66 c->h264_idct8_dc_add = ff_h264_idct8_dc_add_10_sse2;
290
291 66 c->h264_idct_add16 = ff_h264_idct_add16_10_sse2;
292
2/2
✓ Branch 0 taken 48 times.
✓ Branch 1 taken 18 times.
66 if (chroma_format_idc <= 1) {
293 48 c->h264_idct_add8 = ff_h264_idct_add8_10_sse2;
294 } else {
295 18 c->h264_idct_add8 = ff_h264_idct_add8_422_10_sse2;
296 }
297 66 c->h264_idct_add16intra = ff_h264_idct_add16intra_10_sse2;
298 #if HAVE_ALIGNED_STACK
299 66 c->h264_idct8_add = ff_h264_idct8_add_10_sse2;
300 66 c->h264_idct8_add4 = ff_h264_idct8_add4_10_sse2;
301 #endif /* HAVE_ALIGNED_STACK */
302
303 66 c->weight_h264_pixels_tab[0] = ff_h264_weight_16_10_sse2;
304 66 c->weight_h264_pixels_tab[1] = ff_h264_weight_8_10_sse2;
305 66 c->weight_h264_pixels_tab[2] = ff_h264_weight_4_10_sse2;
306
307 66 c->biweight_h264_pixels_tab[0] = ff_h264_biweight_16_10_sse2;
308 66 c->biweight_h264_pixels_tab[1] = ff_h264_biweight_8_10_sse2;
309 66 c->biweight_h264_pixels_tab[2] = ff_h264_biweight_4_10_sse2;
310
311 66 c->h264_v_loop_filter_chroma = ff_deblock_v_chroma_10_sse2;
312 66 c->h264_v_loop_filter_chroma_intra = ff_deblock_v_chroma_intra_10_sse2;
313
2/2
✓ Branch 0 taken 48 times.
✓ Branch 1 taken 18 times.
66 if (chroma_format_idc <= 1) {
314 48 c->h264_h_loop_filter_chroma = ff_deblock_h_chroma_10_sse2;
315 } else {
316 18 c->h264_h_loop_filter_chroma = ff_deblock_h_chroma422_10_sse2;
317 }
318 #if HAVE_ALIGNED_STACK
319 66 c->h264_v_loop_filter_luma = ff_deblock_v_luma_10_sse2;
320 66 c->h264_h_loop_filter_luma = ff_deblock_h_luma_10_sse2;
321 66 c->h264_v_loop_filter_luma_intra = ff_deblock_v_luma_intra_10_sse2;
322 66 c->h264_h_loop_filter_luma_intra = ff_deblock_h_luma_intra_10_sse2;
323 #endif /* HAVE_ALIGNED_STACK */
324 }
325
2/2
✓ Branch 0 taken 48 times.
✓ Branch 1 taken 81 times.
129 if (EXTERNAL_SSE4(cpu_flags)) {
326 48 c->weight_h264_pixels_tab[0] = ff_h264_weight_16_10_sse4;
327 48 c->weight_h264_pixels_tab[1] = ff_h264_weight_8_10_sse4;
328 48 c->weight_h264_pixels_tab[2] = ff_h264_weight_4_10_sse4;
329
330 48 c->biweight_h264_pixels_tab[0] = ff_h264_biweight_16_10_sse4;
331 48 c->biweight_h264_pixels_tab[1] = ff_h264_biweight_8_10_sse4;
332 48 c->biweight_h264_pixels_tab[2] = ff_h264_biweight_4_10_sse4;
333 }
334
2/2
✓ Branch 0 taken 30 times.
✓ Branch 1 taken 99 times.
129 if (EXTERNAL_AVX(cpu_flags)) {
335 30 c->h264_idct_dc_add =
336 30 c->h264_idct_add = ff_h264_idct_add_10_avx;
337 30 c->h264_idct8_dc_add = ff_h264_idct8_dc_add_10_avx;
338
339 30 c->h264_idct_add16 = ff_h264_idct_add16_10_avx;
340
2/2
✓ Branch 0 taken 24 times.
✓ Branch 1 taken 6 times.
30 if (chroma_format_idc <= 1) {
341 24 c->h264_idct_add8 = ff_h264_idct_add8_10_avx;
342 } else {
343 6 c->h264_idct_add8 = ff_h264_idct_add8_422_10_avx;
344 }
345 30 c->h264_idct_add16intra = ff_h264_idct_add16intra_10_avx;
346 #if HAVE_ALIGNED_STACK
347 30 c->h264_idct8_add = ff_h264_idct8_add_10_avx;
348 30 c->h264_idct8_add4 = ff_h264_idct8_add4_10_avx;
349 #endif /* HAVE_ALIGNED_STACK */
350
351 30 c->h264_v_loop_filter_chroma = ff_deblock_v_chroma_10_avx;
352 30 c->h264_v_loop_filter_chroma_intra = ff_deblock_v_chroma_intra_10_avx;
353
2/2
✓ Branch 0 taken 24 times.
✓ Branch 1 taken 6 times.
30 if (chroma_format_idc <= 1) {
354 24 c->h264_h_loop_filter_chroma = ff_deblock_h_chroma_10_avx;
355 } else {
356 6 c->h264_h_loop_filter_chroma = ff_deblock_h_chroma422_10_avx;
357 }
358 #if HAVE_ALIGNED_STACK
359 30 c->h264_v_loop_filter_luma = ff_deblock_v_luma_10_avx;
360 30 c->h264_h_loop_filter_luma = ff_deblock_h_luma_10_avx;
361 30 c->h264_v_loop_filter_luma_intra = ff_deblock_v_luma_intra_10_avx;
362 30 c->h264_h_loop_filter_luma_intra = ff_deblock_h_luma_intra_10_avx;
363 #endif /* HAVE_ALIGNED_STACK */
364 }
365 }
366 #endif
367 1283 }
368