FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavcodec/x86/vc1dsp_init.c
Date: 2026-07-19 01:11:25
Exec Total Coverage
Lines: 44 44 100.0%
Functions: 10 10 100.0%
Branches: 14 16 87.5%

Line Branch Exec Source
1 /*
2 * VC-1 and WMV3 - DSP functions MMX-optimized
3 * Copyright (c) 2007 Christophe GISQUET <christophe.gisquet@free.fr>
4 *
5 * Permission is hereby granted, free of charge, to any person
6 * obtaining a copy of this software and associated documentation
7 * files (the "Software"), to deal in the Software without
8 * restriction, including without limitation the rights to use,
9 * copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following
12 * conditions:
13 *
14 * The above copyright notice and this permission notice shall be
15 * included in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
19 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
21 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
22 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
24 * OTHER DEALINGS IN THE SOFTWARE.
25 */
26
27 #include "libavutil/attributes.h"
28 #include "libavutil/cpu.h"
29 #include "libavutil/x86/cpu.h"
30 #include "libavutil/x86/asm.h"
31 #include "libavcodec/vc1dsp.h"
32 #include "fpel.h"
33 #include "vc1dsp.h"
34 #include "config.h"
35
36 #define LOOP_FILTER4(EXT) \
37 void ff_vc1_v_loop_filter4_ ## EXT(uint8_t *src, ptrdiff_t stride, int pq); \
38 void ff_vc1_h_loop_filter4_ ## EXT(uint8_t *src, ptrdiff_t stride, int pq);
39 #define LOOP_FILTER816(EXT) \
40 void ff_vc1_v_loop_filter8_ ## EXT(uint8_t *src, ptrdiff_t stride, int pq); \
41 void ff_vc1_h_loop_filter8_ ## EXT(uint8_t *src, ptrdiff_t stride, int pq); \
42 \
43 static void vc1_v_loop_filter16_ ## EXT(uint8_t *src, ptrdiff_t stride, int pq) \
44 { \
45 ff_vc1_v_loop_filter8_ ## EXT(src, stride, pq); \
46 ff_vc1_v_loop_filter8_ ## EXT(src+8, stride, pq); \
47 } \
48 \
49 static void vc1_h_loop_filter16_ ## EXT(uint8_t *src, ptrdiff_t stride, int pq) \
50 { \
51 ff_vc1_h_loop_filter8_ ## EXT(src, stride, pq); \
52 ff_vc1_h_loop_filter8_ ## EXT(src+8*stride, stride, pq); \
53 }
54
55 8008 LOOP_FILTER816(sse2)
56 LOOP_FILTER4(ssse3)
57 6008 LOOP_FILTER816(ssse3)
58
59 void ff_vc1_h_loop_filter8_sse4(uint8_t *src, ptrdiff_t stride, int pq);
60
61 1002 static void vc1_h_loop_filter16_sse4(uint8_t *src, ptrdiff_t stride, int pq)
62 {
63 1002 ff_vc1_h_loop_filter8_sse4(src, stride, pq);
64 1002 ff_vc1_h_loop_filter8_sse4(src+8*stride, stride, pq);
65 1002 }
66
67 #define DECLARE_FUNCTION(OP, DEPTH, INSN) \
68 static void OP##vc1_mspel_mc00_##DEPTH##INSN(uint8_t *dst, \
69 const uint8_t *src, ptrdiff_t stride, int rnd) \
70 { \
71 ff_ ## OP ## pixels ## DEPTH ## INSN(dst, src, stride, DEPTH); \
72 }
73
74 3 DECLARE_FUNCTION(put_, 8, _sse2)
75 3 DECLARE_FUNCTION(avg_, 8, _sse2)
76 3 DECLARE_FUNCTION(put_, 16, _sse2)
77 3 DECLARE_FUNCTION(avg_, 16, _sse2)
78
79 void ff_put_vc1_chroma_mc8_nornd_ssse3(uint8_t *dst, const uint8_t *src,
80 ptrdiff_t stride, int h, int x, int y);
81 void ff_avg_vc1_chroma_mc8_nornd_ssse3(uint8_t *dst, const uint8_t *src,
82 ptrdiff_t stride, int h, int x, int y);
83 void ff_vc1_inv_trans_4x4_dc_mmxext(uint8_t *dest, ptrdiff_t linesize,
84 int16_t *block);
85 void ff_vc1_inv_trans_4x8_dc_mmxext(uint8_t *dest, ptrdiff_t linesize,
86 int16_t *block);
87 void ff_vc1_inv_trans_8x4_dc_mmxext(uint8_t *dest, ptrdiff_t linesize,
88 int16_t *block);
89 void ff_vc1_inv_trans_8x8_dc_mmxext(uint8_t *dest, ptrdiff_t linesize,
90 int16_t *block);
91
92 #define MSPEL_FUNC(OP, X, Y, SIZE, XMM) \
93 void ff_vc1_ ## OP ## _mspel_mc ## X ## Y ## _ ## SIZE ##_ ## XMM \
94 (uint8_t *dst, const uint8_t *src, ptrdiff_t stride, int rnd); \
95 dsp->OP ## _vc1_mspel_pixels_tab[SIZE == 8][X + 4 * Y] = \
96 ff_vc1_ ## OP ## _mspel_mc ## X ## Y## _ ## SIZE ##_ ## XMM
97 #define MSPEL_FUNCS_SIZE(X, Y, SIZE, XMM) \
98 MSPEL_FUNC(put, X, Y, SIZE, XMM); \
99 MSPEL_FUNC(avg, X, Y, SIZE, XMM)
100 #define MSPEL_FUNCS(X, Y, XMM) \
101 MSPEL_FUNCS_SIZE(X, Y, 8, XMM); \
102 MSPEL_FUNCS_SIZE(X, Y, 16, XMM)
103
104 112 av_cold void ff_vc1dsp_init_x86(VC1DSPContext *dsp)
105 {
106 112 int cpu_flags = av_get_cpu_flags();
107
108 #if HAVE_6REGS && HAVE_INLINE_ASM && HAVE_MMX_EXTERNAL
109
2/2
✓ Branch 0 taken 65 times.
✓ Branch 1 taken 47 times.
112 if (HAVE_6REGS && INLINE_MMX(cpu_flags))
110
1/2
✓ Branch 0 taken 65 times.
✗ Branch 1 not taken.
65 if (EXTERNAL_MMX(cpu_flags))
111 65 ff_vc1dsp_init_mmx(dsp);
112
113
2/2
✓ Branch 0 taken 60 times.
✓ Branch 1 taken 52 times.
112 if (HAVE_6REGS && INLINE_MMXEXT(cpu_flags))
114
1/2
✓ Branch 0 taken 60 times.
✗ Branch 1 not taken.
60 if (EXTERNAL_MMXEXT(cpu_flags))
115 60 ff_vc1dsp_init_mmxext(dsp);
116 #endif /* HAVE_6REGS && HAVE_INLINE_ASM && HAVE_MMX_EXTERNAL */
117
118 #define ASSIGN_LF4(EXT) \
119 dsp->vc1_v_loop_filter4 = ff_vc1_v_loop_filter4_ ## EXT; \
120 dsp->vc1_h_loop_filter4 = ff_vc1_h_loop_filter4_ ## EXT
121 #define ASSIGN_LF816(EXT) \
122 dsp->vc1_v_loop_filter8 = ff_vc1_v_loop_filter8_ ## EXT; \
123 dsp->vc1_h_loop_filter8 = ff_vc1_h_loop_filter8_ ## EXT; \
124 dsp->vc1_v_loop_filter16 = vc1_v_loop_filter16_ ## EXT; \
125 dsp->vc1_h_loop_filter16 = vc1_h_loop_filter16_ ## EXT
126
127
2/2
✓ Branch 0 taken 60 times.
✓ Branch 1 taken 52 times.
112 if (EXTERNAL_MMXEXT(cpu_flags)) {
128 60 dsp->vc1_inv_trans_8x8_dc = ff_vc1_inv_trans_8x8_dc_mmxext;
129 60 dsp->vc1_inv_trans_4x8_dc = ff_vc1_inv_trans_4x8_dc_mmxext;
130 60 dsp->vc1_inv_trans_8x4_dc = ff_vc1_inv_trans_8x4_dc_mmxext;
131 60 dsp->vc1_inv_trans_4x4_dc = ff_vc1_inv_trans_4x4_dc_mmxext;
132 }
133
2/2
✓ Branch 0 taken 50 times.
✓ Branch 1 taken 62 times.
112 if (EXTERNAL_SSE2(cpu_flags)) {
134 50 ASSIGN_LF816(sse2);
135
136 50 dsp->put_vc1_mspel_pixels_tab[0][0] = put_vc1_mspel_mc00_16_sse2;
137 50 dsp->put_vc1_mspel_pixels_tab[1][0] = put_vc1_mspel_mc00_8_sse2;
138 50 dsp->avg_vc1_mspel_pixels_tab[0][0] = avg_vc1_mspel_mc00_16_sse2;
139 50 dsp->avg_vc1_mspel_pixels_tab[1][0] = avg_vc1_mspel_mc00_8_sse2;
140 }
141
2/2
✓ Branch 0 taken 40 times.
✓ Branch 1 taken 72 times.
112 if (EXTERNAL_SSSE3(cpu_flags)) {
142 40 ASSIGN_LF4(ssse3);
143 40 ASSIGN_LF816(ssse3);
144 40 dsp->put_no_rnd_vc1_chroma_pixels_tab[0] = ff_put_vc1_chroma_mc8_nornd_ssse3;
145 40 dsp->avg_no_rnd_vc1_chroma_pixels_tab[0] = ff_avg_vc1_chroma_mc8_nornd_ssse3;
146
147 40 MSPEL_FUNCS(0, 1, ssse3);
148 40 MSPEL_FUNCS(0, 2, ssse3);
149 40 MSPEL_FUNCS(0, 3, ssse3);
150 40 MSPEL_FUNCS(1, 0, ssse3);
151 40 MSPEL_FUNCS(2, 0, ssse3);
152 40 MSPEL_FUNCS(3, 0, ssse3);
153 }
154
2/2
✓ Branch 0 taken 35 times.
✓ Branch 1 taken 77 times.
112 if (EXTERNAL_SSE4(cpu_flags)) {
155 35 dsp->vc1_h_loop_filter8 = ff_vc1_h_loop_filter8_sse4;
156 35 dsp->vc1_h_loop_filter16 = vc1_h_loop_filter16_sse4;
157 }
158 112 }
159