Line | Branch | Exec | Source |
---|---|---|---|
1 | /* | ||
2 | * Copyright (C) 2001-2011 Michael Niedermayer <michaelni@gmx.at> | ||
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 <inttypes.h> | ||
22 | #include "config.h" | ||
23 | #include "libswscale/swscale.h" | ||
24 | #include "libswscale/swscale_internal.h" | ||
25 | #include "libavutil/attributes.h" | ||
26 | #include "libavutil/avassert.h" | ||
27 | #include "libavutil/intreadwrite.h" | ||
28 | #include "libavutil/x86/cpu.h" | ||
29 | #include "libavutil/cpu.h" | ||
30 | #include "libavutil/mem_internal.h" | ||
31 | #include "libavutil/pixdesc.h" | ||
32 | |||
33 | const DECLARE_ALIGNED(8, uint64_t, ff_dither4)[2] = { | ||
34 | 0x0103010301030103LL, | ||
35 | 0x0200020002000200LL,}; | ||
36 | |||
37 | const DECLARE_ALIGNED(8, uint64_t, ff_dither8)[2] = { | ||
38 | 0x0602060206020602LL, | ||
39 | 0x0004000400040004LL,}; | ||
40 | |||
41 | #if HAVE_INLINE_ASM | ||
42 | |||
43 | DECLARE_ASM_CONST(8, uint64_t, bF8)= 0xF8F8F8F8F8F8F8F8LL; | ||
44 | DECLARE_ASM_CONST(8, uint64_t, bFC)= 0xFCFCFCFCFCFCFCFCLL; | ||
45 | |||
46 | DECLARE_ASM_ALIGNED(8, const uint64_t, ff_M24A) = 0x00FF0000FF0000FFLL; | ||
47 | DECLARE_ASM_ALIGNED(8, const uint64_t, ff_M24B) = 0xFF0000FF0000FF00LL; | ||
48 | DECLARE_ASM_ALIGNED(8, const uint64_t, ff_M24C) = 0x0000FF0000FF0000LL; | ||
49 | |||
50 | DECLARE_ASM_ALIGNED(8, const uint64_t, ff_bgr2YOffset) = 0x1010101010101010ULL; | ||
51 | DECLARE_ASM_ALIGNED(8, const uint64_t, ff_bgr2UVOffset) = 0x8080808080808080ULL; | ||
52 | DECLARE_ASM_ALIGNED(8, const uint64_t, ff_w1111) = 0x0001000100010001ULL; | ||
53 | |||
54 | |||
55 | // MMXEXT versions | ||
56 | #if HAVE_MMXEXT_INLINE | ||
57 | #undef RENAME | ||
58 | #undef COMPILE_TEMPLATE_MMXEXT | ||
59 | #define COMPILE_TEMPLATE_MMXEXT 1 | ||
60 | #define RENAME(a) a ## _mmxext | ||
61 | #include "swscale_template.c" | ||
62 | #endif | ||
63 | |||
64 | 22610881 | void ff_updateMMXDitherTables(SwsInternal *c, int dstY) | |
65 | { | ||
66 | 22610881 | const int dstH= c->opts.dst_h; | |
67 | 22610881 | const int flags= c->opts.flags; | |
68 | |||
69 | 22610881 | SwsPlane *lumPlane = &c->slice[c->numSlice-2].plane[0]; | |
70 | 22610881 | SwsPlane *chrUPlane = &c->slice[c->numSlice-2].plane[1]; | |
71 | 22610881 | SwsPlane *alpPlane = &c->slice[c->numSlice-2].plane[3]; | |
72 | |||
73 | 22610881 | int hasAlpha = c->needAlpha; | |
74 | 22610881 | int32_t *vLumFilterPos= c->vLumFilterPos; | |
75 | 22610881 | int32_t *vChrFilterPos= c->vChrFilterPos; | |
76 | 22610881 | int16_t *vLumFilter= c->vLumFilter; | |
77 | 22610881 | int16_t *vChrFilter= c->vChrFilter; | |
78 | 22610881 | int32_t *lumMmxFilter= c->lumMmxFilter; | |
79 | 22610881 | int32_t *chrMmxFilter= c->chrMmxFilter; | |
80 | 22610881 | int32_t av_unused *alpMmxFilter= c->alpMmxFilter; | |
81 | 22610881 | const int vLumFilterSize= c->vLumFilterSize; | |
82 | 22610881 | const int vChrFilterSize= c->vChrFilterSize; | |
83 | 22610881 | const int chrDstY= dstY>>c->chrDstVSubSample; | |
84 | 22610881 | const int firstLumSrcY= vLumFilterPos[dstY]; //First line needed as input | |
85 | 22610881 | const int firstChrSrcY= vChrFilterPos[chrDstY]; //First line needed as input | |
86 | |||
87 | 22610881 | c->blueDither= ff_dither8[dstY&1]; | |
88 |
4/4✓ Branch 0 taken 22411253 times.
✓ Branch 1 taken 199628 times.
✓ Branch 2 taken 51048 times.
✓ Branch 3 taken 22360205 times.
|
22610881 | if (c->opts.dst_format == AV_PIX_FMT_RGB555 || c->opts.dst_format == AV_PIX_FMT_BGR555) |
89 | 250676 | c->greenDither= ff_dither8[dstY&1]; | |
90 | else | ||
91 | 22360205 | c->greenDither= ff_dither4[dstY&1]; | |
92 | 22610881 | c->redDither= ff_dither8[(dstY+1)&1]; | |
93 |
2/2✓ Branch 0 taken 22461259 times.
✓ Branch 1 taken 149622 times.
|
22610881 | if (dstY < dstH - 2) { |
94 | 22461259 | const int16_t **lumSrcPtr = (const int16_t **)(void*) lumPlane->line + firstLumSrcY - lumPlane->sliceY; | |
95 | 22461259 | const int16_t **chrUSrcPtr = (const int16_t **)(void*) chrUPlane->line + firstChrSrcY - chrUPlane->sliceY; | |
96 |
2/2✓ Branch 0 taken 97859 times.
✓ Branch 1 taken 22363400 times.
|
22461259 | const int16_t **alpSrcPtr = (CONFIG_SWSCALE_ALPHA && hasAlpha) ? (const int16_t **)(void*) alpPlane->line + firstLumSrcY - alpPlane->sliceY : NULL; |
97 | |||
98 | int i; | ||
99 |
2/4✓ Branch 0 taken 22461259 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 22461259 times.
|
22461259 | if (firstLumSrcY < 0 || firstLumSrcY + vLumFilterSize > c->opts.src_h) { |
100 | ✗ | const int16_t **tmpY = (const int16_t **) lumPlane->tmp; | |
101 | |||
102 | ✗ | int neg = -firstLumSrcY, i, end = FFMIN(c->opts.src_h - firstLumSrcY, vLumFilterSize); | |
103 | ✗ | for (i = 0; i < neg; i++) | |
104 | ✗ | tmpY[i] = lumSrcPtr[neg]; | |
105 | ✗ | for ( ; i < end; i++) | |
106 | ✗ | tmpY[i] = lumSrcPtr[i]; | |
107 | ✗ | for ( ; i < vLumFilterSize; i++) | |
108 | ✗ | tmpY[i] = tmpY[i-1]; | |
109 | ✗ | lumSrcPtr = tmpY; | |
110 | |||
111 | ✗ | if (alpSrcPtr) { | |
112 | ✗ | const int16_t **tmpA = (const int16_t **) alpPlane->tmp; | |
113 | ✗ | for (i = 0; i < neg; i++) | |
114 | ✗ | tmpA[i] = alpSrcPtr[neg]; | |
115 | ✗ | for ( ; i < end; i++) | |
116 | ✗ | tmpA[i] = alpSrcPtr[i]; | |
117 | ✗ | for ( ; i < vLumFilterSize; i++) | |
118 | ✗ | tmpA[i] = tmpA[i - 1]; | |
119 | ✗ | alpSrcPtr = tmpA; | |
120 | } | ||
121 | } | ||
122 |
2/4✓ Branch 0 taken 22461259 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 22461259 times.
|
22461259 | if (firstChrSrcY < 0 || firstChrSrcY + vChrFilterSize > c->chrSrcH) { |
123 | ✗ | const int16_t **tmpU = (const int16_t **) chrUPlane->tmp; | |
124 | ✗ | int neg = -firstChrSrcY, i, end = FFMIN(c->chrSrcH - firstChrSrcY, vChrFilterSize); | |
125 | ✗ | for (i = 0; i < neg; i++) { | |
126 | ✗ | tmpU[i] = chrUSrcPtr[neg]; | |
127 | } | ||
128 | ✗ | for ( ; i < end; i++) { | |
129 | ✗ | tmpU[i] = chrUSrcPtr[i]; | |
130 | } | ||
131 | ✗ | for ( ; i < vChrFilterSize; i++) { | |
132 | ✗ | tmpU[i] = tmpU[i - 1]; | |
133 | } | ||
134 | ✗ | chrUSrcPtr = tmpU; | |
135 | } | ||
136 | |||
137 |
2/2✓ Branch 0 taken 21971512 times.
✓ Branch 1 taken 489747 times.
|
22461259 | if (flags & SWS_ACCURATE_RND) { |
138 | 21971512 | int s= APCK_SIZE / 8; | |
139 |
2/2✓ Branch 0 taken 23703936 times.
✓ Branch 1 taken 21971512 times.
|
45675448 | for (i=0; i<vLumFilterSize; i+=2) { |
140 | 23703936 | *(const void**)&lumMmxFilter[s*i ]= lumSrcPtr[i ]; | |
141 | 23703936 | *(const void**)&lumMmxFilter[s*i+APCK_PTR2/4 ]= lumSrcPtr[i+(vLumFilterSize>1)]; | |
142 | 23703936 | lumMmxFilter[s*i+APCK_COEF/4 ]= | |
143 | 47407872 | lumMmxFilter[s*i+APCK_COEF/4+1]= vLumFilter[dstY*vLumFilterSize + i ] | |
144 |
2/2✓ Branch 0 taken 4968412 times.
✓ Branch 1 taken 18735524 times.
|
23703936 | + (vLumFilterSize>1 ? vLumFilter[dstY*vLumFilterSize + i + 1] * (1 << 16) : 0); |
145 |
2/2✓ Branch 0 taken 118544 times.
✓ Branch 1 taken 23585392 times.
|
23703936 | if (CONFIG_SWSCALE_ALPHA && hasAlpha) { |
146 | 118544 | *(const void**)&alpMmxFilter[s*i ]= alpSrcPtr[i ]; | |
147 | 118544 | *(const void**)&alpMmxFilter[s*i+APCK_PTR2/4 ]= alpSrcPtr[i+(vLumFilterSize>1)]; | |
148 | 118544 | alpMmxFilter[s*i+APCK_COEF/4 ]= | |
149 | 118544 | alpMmxFilter[s*i+APCK_COEF/4+1]= lumMmxFilter[s*i+APCK_COEF/4 ]; | |
150 | } | ||
151 | } | ||
152 |
2/2✓ Branch 0 taken 38680758 times.
✓ Branch 1 taken 21971512 times.
|
60652270 | for (i=0; i<vChrFilterSize; i+=2) { |
153 | 38680758 | *(const void**)&chrMmxFilter[s*i ]= chrUSrcPtr[i ]; | |
154 | 38680758 | *(const void**)&chrMmxFilter[s*i+APCK_PTR2/4 ]= chrUSrcPtr[i+(vChrFilterSize>1)]; | |
155 | 38680758 | chrMmxFilter[s*i+APCK_COEF/4 ]= | |
156 | 77361516 | chrMmxFilter[s*i+APCK_COEF/4+1]= vChrFilter[chrDstY*vChrFilterSize + i ] | |
157 |
2/2✓ Branch 0 taken 28137046 times.
✓ Branch 1 taken 10543712 times.
|
38680758 | + (vChrFilterSize>1 ? vChrFilter[chrDstY*vChrFilterSize + i + 1] * (1 << 16) : 0); |
158 | } | ||
159 | } else { | ||
160 |
2/2✓ Branch 0 taken 1376368 times.
✓ Branch 1 taken 489747 times.
|
1866115 | for (i=0; i<vLumFilterSize; i++) { |
161 | 1376368 | *(const void**)&lumMmxFilter[4*i+0]= lumSrcPtr[i]; | |
162 | 1376368 | lumMmxFilter[4*i+2]= | |
163 | 1376368 | lumMmxFilter[4*i+3]= | |
164 | 1376368 | ((uint16_t)vLumFilter[dstY*vLumFilterSize + i])*0x10001U; | |
165 |
2/2✓ Branch 0 taken 26510 times.
✓ Branch 1 taken 1349858 times.
|
1376368 | if (CONFIG_SWSCALE_ALPHA && hasAlpha) { |
166 | 26510 | *(const void**)&alpMmxFilter[4*i+0]= alpSrcPtr[i]; | |
167 | 26510 | alpMmxFilter[4*i+2]= | |
168 | 26510 | alpMmxFilter[4*i+3]= lumMmxFilter[4*i+2]; | |
169 | } | ||
170 | } | ||
171 |
2/2✓ Branch 0 taken 1928580 times.
✓ Branch 1 taken 489747 times.
|
2418327 | for (i=0; i<vChrFilterSize; i++) { |
172 | 1928580 | *(const void**)&chrMmxFilter[4*i+0]= chrUSrcPtr[i]; | |
173 | 1928580 | chrMmxFilter[4*i+2]= | |
174 | 1928580 | chrMmxFilter[4*i+3]= | |
175 | 1928580 | ((uint16_t)vChrFilter[chrDstY*vChrFilterSize + i])*0x10001U; | |
176 | } | ||
177 | } | ||
178 | } | ||
179 | 22610881 | } | |
180 | #endif /* HAVE_INLINE_ASM */ | ||
181 | |||
182 | #define YUV2YUVX_FUNC_MMX(opt, step) \ | ||
183 | void ff_yuv2yuvX_ ##opt(const int16_t *filter, int filterSize, int srcOffset, \ | ||
184 | uint8_t *dest, int dstW, \ | ||
185 | const uint8_t *dither, int offset); \ | ||
186 | static void yuv2yuvX_ ##opt(const int16_t *filter, int filterSize, \ | ||
187 | const int16_t **src, uint8_t *dest, int dstW, \ | ||
188 | const uint8_t *dither, int offset) \ | ||
189 | { \ | ||
190 | if(dstW > 0) \ | ||
191 | ff_yuv2yuvX_ ##opt(filter, filterSize - 1, 0, dest - offset, dstW + offset, dither, offset); \ | ||
192 | return; \ | ||
193 | } | ||
194 | |||
195 | #define YUV2YUVX_FUNC(opt, step) \ | ||
196 | void ff_yuv2yuvX_ ##opt(const int16_t *filter, int filterSize, int srcOffset, \ | ||
197 | uint8_t *dest, int dstW, \ | ||
198 | const uint8_t *dither, int offset); \ | ||
199 | static void yuv2yuvX_ ##opt(const int16_t *filter, int filterSize, \ | ||
200 | const int16_t **src, uint8_t *dest, int dstW, \ | ||
201 | const uint8_t *dither, int offset) \ | ||
202 | { \ | ||
203 | int remainder = (dstW % step); \ | ||
204 | int pixelsProcessed = dstW - remainder; \ | ||
205 | if(((uintptr_t)dest) & 15){ \ | ||
206 | yuv2yuvX_mmxext(filter, filterSize, src, dest, dstW, dither, offset); \ | ||
207 | return; \ | ||
208 | } \ | ||
209 | if(pixelsProcessed > 0) \ | ||
210 | ff_yuv2yuvX_ ##opt(filter, filterSize - 1, 0, dest - offset, pixelsProcessed + offset, dither, offset); \ | ||
211 | if(remainder > 0){ \ | ||
212 | ff_yuv2yuvX_mmxext(filter, filterSize - 1, pixelsProcessed, dest - offset, pixelsProcessed + remainder + offset, dither, offset); \ | ||
213 | } \ | ||
214 | return; \ | ||
215 | } | ||
216 | |||
217 | #if HAVE_MMXEXT_EXTERNAL | ||
218 |
1/2✓ Branch 0 taken 76 times.
✗ Branch 1 not taken.
|
76 | YUV2YUVX_FUNC_MMX(mmxext, 16) |
219 | #endif | ||
220 | #if HAVE_SSE3_EXTERNAL | ||
221 |
5/6✗ Branch 0 not taken.
✓ Branch 1 taken 76 times.
✓ Branch 3 taken 64 times.
✓ Branch 4 taken 12 times.
✓ Branch 6 taken 44 times.
✓ Branch 7 taken 32 times.
|
76 | YUV2YUVX_FUNC(sse3, 32) |
222 | #endif | ||
223 | #if HAVE_AVX2_EXTERNAL | ||
224 |
5/6✗ Branch 0 not taken.
✓ Branch 1 taken 76 times.
✓ Branch 3 taken 64 times.
✓ Branch 4 taken 12 times.
✓ Branch 6 taken 60 times.
✓ Branch 7 taken 16 times.
|
76 | YUV2YUVX_FUNC(avx2, 64) |
225 | #endif | ||
226 | |||
227 | #define SCALE_FUNC(filter_n, from_bpc, to_bpc, opt) \ | ||
228 | void ff_hscale ## from_bpc ## to ## to_bpc ## _ ## filter_n ## _ ## opt( \ | ||
229 | SwsInternal *c, int16_t *data, \ | ||
230 | int dstW, const uint8_t *src, \ | ||
231 | const int16_t *filter, \ | ||
232 | const int32_t *filterPos, int filterSize) | ||
233 | |||
234 | #define SCALE_FUNCS(filter_n, opt) \ | ||
235 | SCALE_FUNC(filter_n, 8, 15, opt); \ | ||
236 | SCALE_FUNC(filter_n, 9, 15, opt); \ | ||
237 | SCALE_FUNC(filter_n, 10, 15, opt); \ | ||
238 | SCALE_FUNC(filter_n, 12, 15, opt); \ | ||
239 | SCALE_FUNC(filter_n, 14, 15, opt); \ | ||
240 | SCALE_FUNC(filter_n, 16, 15, opt); \ | ||
241 | SCALE_FUNC(filter_n, 8, 19, opt); \ | ||
242 | SCALE_FUNC(filter_n, 9, 19, opt); \ | ||
243 | SCALE_FUNC(filter_n, 10, 19, opt); \ | ||
244 | SCALE_FUNC(filter_n, 12, 19, opt); \ | ||
245 | SCALE_FUNC(filter_n, 14, 19, opt); \ | ||
246 | SCALE_FUNC(filter_n, 16, 19, opt) | ||
247 | |||
248 | #define SCALE_FUNCS_MMX(opt) \ | ||
249 | SCALE_FUNCS(4, opt); \ | ||
250 | SCALE_FUNCS(8, opt); \ | ||
251 | SCALE_FUNCS(X, opt) | ||
252 | |||
253 | #define SCALE_FUNCS_SSE(opt) \ | ||
254 | SCALE_FUNCS(4, opt); \ | ||
255 | SCALE_FUNCS(8, opt); \ | ||
256 | SCALE_FUNCS(X4, opt); \ | ||
257 | SCALE_FUNCS(X8, opt) | ||
258 | |||
259 | SCALE_FUNCS_SSE(sse2); | ||
260 | SCALE_FUNCS_SSE(ssse3); | ||
261 | SCALE_FUNCS_SSE(sse4); | ||
262 | |||
263 | SCALE_FUNC(4, 8, 15, avx2); | ||
264 | SCALE_FUNC(X4, 8, 15, avx2); | ||
265 | |||
266 | #define VSCALEX_FUNC(size, opt) \ | ||
267 | void ff_yuv2planeX_ ## size ## _ ## opt(const int16_t *filter, int filterSize, \ | ||
268 | const int16_t **src, uint8_t *dest, int dstW, \ | ||
269 | const uint8_t *dither, int offset) | ||
270 | #define VSCALEX_FUNCS(opt) \ | ||
271 | VSCALEX_FUNC(8, opt); \ | ||
272 | VSCALEX_FUNC(9, opt); \ | ||
273 | VSCALEX_FUNC(10, opt) | ||
274 | |||
275 | VSCALEX_FUNC(8, mmxext); | ||
276 | VSCALEX_FUNCS(sse2); | ||
277 | VSCALEX_FUNCS(sse4); | ||
278 | VSCALEX_FUNC(16, sse4); | ||
279 | VSCALEX_FUNCS(avx); | ||
280 | |||
281 | #define VSCALE_FUNC(size, opt) \ | ||
282 | void ff_yuv2plane1_ ## size ## _ ## opt(const int16_t *src, uint8_t *dst, int dstW, \ | ||
283 | const uint8_t *dither, int offset) | ||
284 | #define VSCALE_FUNCS(opt1, opt2) \ | ||
285 | VSCALE_FUNC(8, opt1); \ | ||
286 | VSCALE_FUNC(9, opt2); \ | ||
287 | VSCALE_FUNC(10, opt2); \ | ||
288 | VSCALE_FUNC(16, opt1) | ||
289 | |||
290 | VSCALE_FUNCS(sse2, sse2); | ||
291 | VSCALE_FUNC(16, sse4); | ||
292 | VSCALE_FUNCS(avx, avx); | ||
293 | |||
294 | #define INPUT_Y_FUNC(fmt, opt) \ | ||
295 | void ff_ ## fmt ## ToY_ ## opt(uint8_t *dst, const uint8_t *src, \ | ||
296 | const uint8_t *unused1, const uint8_t *unused2, \ | ||
297 | int w, uint32_t *unused, void *opq) | ||
298 | #define INPUT_UV_FUNC(fmt, opt) \ | ||
299 | void ff_ ## fmt ## ToUV_ ## opt(uint8_t *dstU, uint8_t *dstV, \ | ||
300 | const uint8_t *unused0, \ | ||
301 | const uint8_t *src1, \ | ||
302 | const uint8_t *src2, \ | ||
303 | int w, uint32_t *unused, void *opq) | ||
304 | #define INPUT_FUNC(fmt, opt) \ | ||
305 | INPUT_Y_FUNC(fmt, opt); \ | ||
306 | INPUT_UV_FUNC(fmt, opt) | ||
307 | #define INPUT_FUNCS(opt) \ | ||
308 | INPUT_FUNC(uyvy, opt); \ | ||
309 | INPUT_FUNC(yuyv, opt); \ | ||
310 | INPUT_UV_FUNC(nv12, opt); \ | ||
311 | INPUT_UV_FUNC(nv21, opt); \ | ||
312 | INPUT_FUNC(rgba, opt); \ | ||
313 | INPUT_FUNC(bgra, opt); \ | ||
314 | INPUT_FUNC(argb, opt); \ | ||
315 | INPUT_FUNC(abgr, opt); \ | ||
316 | INPUT_FUNC(rgb24, opt); \ | ||
317 | INPUT_FUNC(bgr24, opt) | ||
318 | |||
319 | INPUT_FUNCS(sse2); | ||
320 | INPUT_FUNCS(ssse3); | ||
321 | INPUT_FUNCS(avx); | ||
322 | INPUT_FUNC(rgba, avx2); | ||
323 | INPUT_FUNC(bgra, avx2); | ||
324 | INPUT_FUNC(argb, avx2); | ||
325 | INPUT_FUNC(abgr, avx2); | ||
326 | INPUT_FUNC(rgb24, avx2); | ||
327 | INPUT_FUNC(bgr24, avx2); | ||
328 | |||
329 | #if ARCH_X86_64 | ||
330 | #define YUV2NV_DECL(fmt, opt) \ | ||
331 | void ff_yuv2 ## fmt ## cX_ ## opt(enum AVPixelFormat format, const uint8_t *dither, \ | ||
332 | const int16_t *filter, int filterSize, \ | ||
333 | const int16_t **u, const int16_t **v, \ | ||
334 | uint8_t *dst, int dstWidth) | ||
335 | |||
336 | YUV2NV_DECL(nv12, avx2); | ||
337 | YUV2NV_DECL(nv21, avx2); | ||
338 | |||
339 | #define YUV2GBRP_FN_DECL(fmt, opt) \ | ||
340 | void ff_yuv2##fmt##_full_X_ ##opt(SwsInternal *c, const int16_t *lumFilter, \ | ||
341 | const int16_t **lumSrcx, int lumFilterSize, \ | ||
342 | const int16_t *chrFilter, const int16_t **chrUSrcx, \ | ||
343 | const int16_t **chrVSrcx, int chrFilterSize, \ | ||
344 | const int16_t **alpSrcx, uint8_t **dest, \ | ||
345 | int dstW, int y) | ||
346 | |||
347 | #define YUV2GBRP_DECL(opt) \ | ||
348 | YUV2GBRP_FN_DECL(gbrp, opt); \ | ||
349 | YUV2GBRP_FN_DECL(gbrap, opt); \ | ||
350 | YUV2GBRP_FN_DECL(gbrp9le, opt); \ | ||
351 | YUV2GBRP_FN_DECL(gbrp10le, opt); \ | ||
352 | YUV2GBRP_FN_DECL(gbrap10le, opt); \ | ||
353 | YUV2GBRP_FN_DECL(gbrp12le, opt); \ | ||
354 | YUV2GBRP_FN_DECL(gbrap12le, opt); \ | ||
355 | YUV2GBRP_FN_DECL(gbrp14le, opt); \ | ||
356 | YUV2GBRP_FN_DECL(gbrp16le, opt); \ | ||
357 | YUV2GBRP_FN_DECL(gbrap16le, opt); \ | ||
358 | YUV2GBRP_FN_DECL(gbrpf32le, opt); \ | ||
359 | YUV2GBRP_FN_DECL(gbrapf32le, opt); \ | ||
360 | YUV2GBRP_FN_DECL(gbrp9be, opt); \ | ||
361 | YUV2GBRP_FN_DECL(gbrp10be, opt); \ | ||
362 | YUV2GBRP_FN_DECL(gbrap10be, opt); \ | ||
363 | YUV2GBRP_FN_DECL(gbrp12be, opt); \ | ||
364 | YUV2GBRP_FN_DECL(gbrap12be, opt); \ | ||
365 | YUV2GBRP_FN_DECL(gbrp14be, opt); \ | ||
366 | YUV2GBRP_FN_DECL(gbrp16be, opt); \ | ||
367 | YUV2GBRP_FN_DECL(gbrap16be, opt); \ | ||
368 | YUV2GBRP_FN_DECL(gbrpf32be, opt); \ | ||
369 | YUV2GBRP_FN_DECL(gbrapf32be, opt) | ||
370 | |||
371 | YUV2GBRP_DECL(sse2); | ||
372 | YUV2GBRP_DECL(sse4); | ||
373 | YUV2GBRP_DECL(avx2); | ||
374 | |||
375 | #define INPUT_PLANAR_RGB_Y_FN_DECL(fmt, opt) \ | ||
376 | void ff_planar_##fmt##_to_y_##opt(uint8_t *dst, \ | ||
377 | const uint8_t *src[4], int w, int32_t *rgb2yuv, \ | ||
378 | void *opq) | ||
379 | |||
380 | #define INPUT_PLANAR_RGB_UV_FN_DECL(fmt, opt) \ | ||
381 | void ff_planar_##fmt##_to_uv_##opt(uint8_t *dstU, uint8_t *dstV, \ | ||
382 | const uint8_t *src[4], int w, int32_t *rgb2yuv, \ | ||
383 | void *opq) | ||
384 | |||
385 | #define INPUT_PLANAR_RGB_A_FN_DECL(fmt, opt) \ | ||
386 | void ff_planar_##fmt##_to_a_##opt(uint8_t *dst, \ | ||
387 | const uint8_t *src[4], int w, int32_t *rgb2yuv, \ | ||
388 | void *opq) | ||
389 | |||
390 | |||
391 | #define INPUT_PLANAR_RGBXX_A_DECL(fmt, opt) \ | ||
392 | INPUT_PLANAR_RGB_A_FN_DECL(fmt##le, opt); \ | ||
393 | INPUT_PLANAR_RGB_A_FN_DECL(fmt##be, opt) | ||
394 | |||
395 | #define INPUT_PLANAR_RGBXX_Y_DECL(fmt, opt) \ | ||
396 | INPUT_PLANAR_RGB_Y_FN_DECL(fmt##le, opt); \ | ||
397 | INPUT_PLANAR_RGB_Y_FN_DECL(fmt##be, opt) | ||
398 | |||
399 | #define INPUT_PLANAR_RGBXX_UV_DECL(fmt, opt) \ | ||
400 | INPUT_PLANAR_RGB_UV_FN_DECL(fmt##le, opt); \ | ||
401 | INPUT_PLANAR_RGB_UV_FN_DECL(fmt##be, opt) | ||
402 | |||
403 | #define INPUT_PLANAR_RGBXX_YUVA_DECL(fmt, opt) \ | ||
404 | INPUT_PLANAR_RGBXX_Y_DECL(fmt, opt); \ | ||
405 | INPUT_PLANAR_RGBXX_UV_DECL(fmt, opt); \ | ||
406 | INPUT_PLANAR_RGBXX_A_DECL(fmt, opt) | ||
407 | |||
408 | #define INPUT_PLANAR_RGBXX_YUV_DECL(fmt, opt) \ | ||
409 | INPUT_PLANAR_RGBXX_Y_DECL(fmt, opt); \ | ||
410 | INPUT_PLANAR_RGBXX_UV_DECL(fmt, opt) | ||
411 | |||
412 | #define INPUT_PLANAR_RGBXX_UVA_DECL(fmt, opt) \ | ||
413 | INPUT_PLANAR_RGBXX_UV_DECL(fmt, opt); \ | ||
414 | INPUT_PLANAR_RGBXX_A_DECL(fmt, opt) | ||
415 | |||
416 | #define INPUT_PLANAR_RGB_A_ALL_DECL(opt) \ | ||
417 | INPUT_PLANAR_RGB_A_FN_DECL(rgb, opt); \ | ||
418 | INPUT_PLANAR_RGBXX_A_DECL(rgb10, opt); \ | ||
419 | INPUT_PLANAR_RGBXX_A_DECL(rgb12, opt); \ | ||
420 | INPUT_PLANAR_RGBXX_A_DECL(rgb16, opt); \ | ||
421 | INPUT_PLANAR_RGBXX_A_DECL(rgbf32, opt) | ||
422 | |||
423 | #define INPUT_PLANAR_RGB_Y_ALL_DECL(opt) \ | ||
424 | INPUT_PLANAR_RGB_Y_FN_DECL(rgb, opt); \ | ||
425 | INPUT_PLANAR_RGBXX_Y_DECL(rgb9, opt); \ | ||
426 | INPUT_PLANAR_RGBXX_Y_DECL(rgb10, opt); \ | ||
427 | INPUT_PLANAR_RGBXX_Y_DECL(rgb12, opt); \ | ||
428 | INPUT_PLANAR_RGBXX_Y_DECL(rgb14, opt); \ | ||
429 | INPUT_PLANAR_RGBXX_Y_DECL(rgb16, opt); \ | ||
430 | INPUT_PLANAR_RGBXX_Y_DECL(rgbf32, opt) | ||
431 | |||
432 | #define INPUT_PLANAR_RGB_UV_ALL_DECL(opt) \ | ||
433 | INPUT_PLANAR_RGB_UV_FN_DECL(rgb, opt); \ | ||
434 | INPUT_PLANAR_RGBXX_UV_DECL(rgb9, opt); \ | ||
435 | INPUT_PLANAR_RGBXX_UV_DECL(rgb10, opt); \ | ||
436 | INPUT_PLANAR_RGBXX_UV_DECL(rgb12, opt); \ | ||
437 | INPUT_PLANAR_RGBXX_UV_DECL(rgb14, opt); \ | ||
438 | INPUT_PLANAR_RGBXX_UV_DECL(rgb16, opt); \ | ||
439 | INPUT_PLANAR_RGBXX_UV_DECL(rgbf32, opt) | ||
440 | |||
441 | INPUT_PLANAR_RGBXX_Y_DECL(rgbf32, sse2); | ||
442 | INPUT_PLANAR_RGB_UV_ALL_DECL(sse2); | ||
443 | INPUT_PLANAR_RGB_A_ALL_DECL(sse2); | ||
444 | |||
445 | INPUT_PLANAR_RGB_Y_ALL_DECL(sse4); | ||
446 | INPUT_PLANAR_RGB_UV_ALL_DECL(sse4); | ||
447 | INPUT_PLANAR_RGBXX_A_DECL(rgbf32, sse4); | ||
448 | |||
449 | INPUT_PLANAR_RGB_Y_ALL_DECL(avx2); | ||
450 | INPUT_PLANAR_RGB_UV_ALL_DECL(avx2); | ||
451 | INPUT_PLANAR_RGB_A_ALL_DECL(avx2); | ||
452 | #endif | ||
453 | |||
454 | #define RANGE_CONVERT_FUNCS(opt, bpc) do { \ | ||
455 | if (c->opts.src_range) { \ | ||
456 | c->lumConvertRange = ff_lumRangeFromJpeg##bpc##_##opt; \ | ||
457 | c->chrConvertRange = ff_chrRangeFromJpeg##bpc##_##opt; \ | ||
458 | } else { \ | ||
459 | c->lumConvertRange = ff_lumRangeToJpeg##bpc##_##opt; \ | ||
460 | c->chrConvertRange = ff_chrRangeToJpeg##bpc##_##opt; \ | ||
461 | } \ | ||
462 | } while (0) | ||
463 | |||
464 | #define RANGE_CONVERT_FUNCS_DECL(opt, bpc) \ | ||
465 | void ff_lumRangeFromJpeg##bpc##_##opt(int16_t *dst, int width, \ | ||
466 | uint32_t coeff, int64_t offset); \ | ||
467 | void ff_chrRangeFromJpeg##bpc##_##opt(int16_t *dstU, int16_t *dstV, int width, \ | ||
468 | uint32_t coeff, int64_t offset); \ | ||
469 | void ff_lumRangeToJpeg##bpc##_##opt(int16_t *dst, int width, \ | ||
470 | uint32_t coeff, int64_t offset); \ | ||
471 | void ff_chrRangeToJpeg##bpc##_##opt(int16_t *dstU, int16_t *dstV, int width, \ | ||
472 | uint32_t coeff, int64_t offset); \ | ||
473 | |||
474 | RANGE_CONVERT_FUNCS_DECL(sse2, 8) | ||
475 | RANGE_CONVERT_FUNCS_DECL(sse4, 16) | ||
476 | RANGE_CONVERT_FUNCS_DECL(avx2, 8) | ||
477 | RANGE_CONVERT_FUNCS_DECL(avx2, 16) | ||
478 | |||
479 | 3799 | av_cold void ff_sws_init_range_convert_x86(SwsInternal *c) | |
480 | { | ||
481 | 3799 | int cpu_flags = av_get_cpu_flags(); | |
482 |
3/4✓ Branch 0 taken 24 times.
✓ Branch 1 taken 3775 times.
✓ Branch 2 taken 24 times.
✗ Branch 3 not taken.
|
3799 | if (EXTERNAL_AVX2_FAST(cpu_flags)) { |
483 |
2/2✓ Branch 0 taken 20 times.
✓ Branch 1 taken 4 times.
|
24 | if (c->dstBpc <= 14) { |
484 |
2/2✓ Branch 0 taken 10 times.
✓ Branch 1 taken 10 times.
|
20 | RANGE_CONVERT_FUNCS(avx2, 8); |
485 | } else { | ||
486 |
2/2✓ Branch 0 taken 2 times.
✓ Branch 1 taken 2 times.
|
4 | RANGE_CONVERT_FUNCS(avx2, 16); |
487 | } | ||
488 |
4/4✓ Branch 0 taken 192 times.
✓ Branch 1 taken 3583 times.
✓ Branch 2 taken 160 times.
✓ Branch 3 taken 32 times.
|
3775 | } else if (EXTERNAL_SSE2(cpu_flags) && c->dstBpc <= 14) { |
489 |
2/2✓ Branch 0 taken 80 times.
✓ Branch 1 taken 80 times.
|
160 | RANGE_CONVERT_FUNCS(sse2, 8); |
490 |
3/4✓ Branch 0 taken 20 times.
✓ Branch 1 taken 3595 times.
✓ Branch 2 taken 20 times.
✗ Branch 3 not taken.
|
3615 | } else if (EXTERNAL_SSE4(cpu_flags) && c->dstBpc > 14) { |
491 |
2/2✓ Branch 0 taken 10 times.
✓ Branch 1 taken 10 times.
|
20 | RANGE_CONVERT_FUNCS(sse4, 16); |
492 | } | ||
493 | 3799 | } | |
494 | |||
495 | 33058 | av_cold void ff_sws_init_swscale_x86(SwsInternal *c) | |
496 | { | ||
497 | 33058 | int cpu_flags = av_get_cpu_flags(); | |
498 | |||
499 | #if HAVE_MMXEXT_INLINE | ||
500 |
2/2✓ Branch 0 taken 11799 times.
✓ Branch 1 taken 21259 times.
|
33058 | if (INLINE_MMXEXT(cpu_flags)) |
501 | 11799 | sws_init_swscale_mmxext(c); | |
502 | #endif | ||
503 |
3/4✓ Branch 0 taken 2485 times.
✓ Branch 1 taken 30573 times.
✓ Branch 2 taken 2485 times.
✗ Branch 3 not taken.
|
33058 | if(c->use_mmx_vfilter && !(c->opts.flags & SWS_ACCURATE_RND)) { |
504 | #if HAVE_MMXEXT_EXTERNAL | ||
505 |
1/2✓ Branch 0 taken 2485 times.
✗ Branch 1 not taken.
|
2485 | if (EXTERNAL_MMXEXT(cpu_flags)) |
506 | 2485 | c->yuv2planeX = yuv2yuvX_mmxext; | |
507 | #endif | ||
508 | #if HAVE_SSE3_EXTERNAL | ||
509 |
2/2✓ Branch 0 taken 1819 times.
✓ Branch 1 taken 666 times.
|
2485 | if (EXTERNAL_SSE3(cpu_flags)) |
510 | 1819 | c->yuv2planeX = yuv2yuvX_sse3; | |
511 | #endif | ||
512 | #if HAVE_AVX2_EXTERNAL | ||
513 |
3/4✓ Branch 0 taken 265 times.
✓ Branch 1 taken 2220 times.
✓ Branch 2 taken 265 times.
✗ Branch 3 not taken.
|
2485 | if (EXTERNAL_AVX2_FAST(cpu_flags)) |
514 | 265 | c->yuv2planeX = yuv2yuvX_avx2; | |
515 | #endif | ||
516 | } | ||
517 | #if ARCH_X86_32 && !HAVE_ALIGNED_STACK | ||
518 | // The better yuv2planeX_8 functions need aligned stack on x86-32, | ||
519 | // so we use MMXEXT in this case if they are not available. | ||
520 | if (EXTERNAL_MMXEXT(cpu_flags)) { | ||
521 | if (c->dstBpc == 8 && !c->use_mmx_vfilter) | ||
522 | c->yuv2planeX = ff_yuv2planeX_8_mmxext; | ||
523 | } | ||
524 | #endif /* ARCH_X86_32 && !HAVE_ALIGNED_STACK */ | ||
525 | |||
526 | #define ASSIGN_SCALE_FUNC2(hscalefn, filtersize, opt1, opt2) do { \ | ||
527 | if (c->srcBpc == 8) { \ | ||
528 | hscalefn = c->dstBpc <= 14 ? ff_hscale8to15_ ## filtersize ## _ ## opt2 : \ | ||
529 | ff_hscale8to19_ ## filtersize ## _ ## opt1; \ | ||
530 | } else if (c->srcBpc == 9) { \ | ||
531 | hscalefn = c->dstBpc <= 14 ? ff_hscale9to15_ ## filtersize ## _ ## opt2 : \ | ||
532 | ff_hscale9to19_ ## filtersize ## _ ## opt1; \ | ||
533 | } else if (c->srcBpc == 10) { \ | ||
534 | hscalefn = c->dstBpc <= 14 ? ff_hscale10to15_ ## filtersize ## _ ## opt2 : \ | ||
535 | ff_hscale10to19_ ## filtersize ## _ ## opt1; \ | ||
536 | } else if (c->srcBpc == 12) { \ | ||
537 | hscalefn = c->dstBpc <= 14 ? ff_hscale12to15_ ## filtersize ## _ ## opt2 : \ | ||
538 | ff_hscale12to19_ ## filtersize ## _ ## opt1; \ | ||
539 | } else if (c->srcBpc == 14 || ((c->opts.src_format==AV_PIX_FMT_PAL8||isAnyRGB(c->opts.src_format)) && av_pix_fmt_desc_get(c->opts.src_format)->comp[0].depth<16)) { \ | ||
540 | hscalefn = c->dstBpc <= 14 ? ff_hscale14to15_ ## filtersize ## _ ## opt2 : \ | ||
541 | ff_hscale14to19_ ## filtersize ## _ ## opt1; \ | ||
542 | } else { /* c->srcBpc == 16 */ \ | ||
543 | av_assert0(c->srcBpc == 16);\ | ||
544 | hscalefn = c->dstBpc <= 14 ? ff_hscale16to15_ ## filtersize ## _ ## opt2 : \ | ||
545 | ff_hscale16to19_ ## filtersize ## _ ## opt1; \ | ||
546 | } \ | ||
547 | } while (0) | ||
548 | #define ASSIGN_VSCALEX_FUNC(vscalefn, opt, do_16_case, condition_8bit) \ | ||
549 | switch(c->dstBpc){ \ | ||
550 | case 16: do_16_case; break; \ | ||
551 | case 10: if (!isBE(c->opts.dst_format) && !isSemiPlanarYUV(c->opts.dst_format)) vscalefn = ff_yuv2planeX_10_ ## opt; break; \ | ||
552 | case 9: if (!isBE(c->opts.dst_format)) vscalefn = ff_yuv2planeX_9_ ## opt; break; \ | ||
553 | case 8: if ((condition_8bit) && !c->use_mmx_vfilter) vscalefn = ff_yuv2planeX_8_ ## opt; break; \ | ||
554 | } | ||
555 | #define ASSIGN_VSCALE_FUNC(vscalefn, opt) \ | ||
556 | switch(c->dstBpc){ \ | ||
557 | case 16: if (!isBE(c->opts.dst_format)) vscalefn = ff_yuv2plane1_16_ ## opt; break; \ | ||
558 | case 10: if (!isBE(c->opts.dst_format) && !isSemiPlanarYUV(c->opts.dst_format)) vscalefn = ff_yuv2plane1_10_ ## opt; break; \ | ||
559 | case 9: if (!isBE(c->opts.dst_format)) vscalefn = ff_yuv2plane1_9_ ## opt; break; \ | ||
560 | case 8: vscalefn = ff_yuv2plane1_8_ ## opt; break; \ | ||
561 | default: av_assert0(c->dstBpc>8); \ | ||
562 | } | ||
563 | #define case_rgb(x, X, opt) \ | ||
564 | case AV_PIX_FMT_ ## X: \ | ||
565 | c->lumToYV12 = ff_ ## x ## ToY_ ## opt; \ | ||
566 | if (!c->chrSrcHSubSample) \ | ||
567 | c->chrToYV12 = ff_ ## x ## ToUV_ ## opt; \ | ||
568 | break | ||
569 | #define ASSIGN_SSE_SCALE_FUNC(hscalefn, filtersize, opt1, opt2) \ | ||
570 | switch (filtersize) { \ | ||
571 | case 4: ASSIGN_SCALE_FUNC2(hscalefn, 4, opt1, opt2); break; \ | ||
572 | case 8: ASSIGN_SCALE_FUNC2(hscalefn, 8, opt1, opt2); break; \ | ||
573 | default: if (filtersize & 4) ASSIGN_SCALE_FUNC2(hscalefn, X4, opt1, opt2); \ | ||
574 | else ASSIGN_SCALE_FUNC2(hscalefn, X8, opt1, opt2); \ | ||
575 | break; \ | ||
576 | } | ||
577 |
2/2✓ Branch 0 taken 9665 times.
✓ Branch 1 taken 23393 times.
|
33058 | if (EXTERNAL_SSE2(cpu_flags)) { |
578 |
53/125✓ Branch 0 taken 1239 times.
✓ Branch 1 taken 109 times.
✓ Branch 2 taken 8317 times.
✓ Branch 3 taken 973 times.
✓ Branch 4 taken 266 times.
✓ Branch 5 taken 702 times.
✓ Branch 6 taken 271 times.
✓ Branch 7 taken 1 times.
✓ Branch 8 taken 265 times.
✗ Branch 9 not taken.
✓ Branch 10 taken 1 times.
✓ Branch 11 taken 1 times.
✓ Branch 12 taken 264 times.
✗ Branch 13 not taken.
✓ Branch 14 taken 1 times.
✓ Branch 15 taken 1 times.
✓ Branch 16 taken 263 times.
✗ Branch 17 not taken.
✓ Branch 18 taken 1 times.
✓ Branch 19 taken 262 times.
✓ Branch 20 taken 1 times.
✓ Branch 21 taken 262 times.
✗ Branch 22 not taken.
✓ Branch 24 taken 261 times.
✓ Branch 25 taken 1 times.
✓ Branch 27 taken 225 times.
✓ Branch 28 taken 36 times.
✓ Branch 29 taken 207 times.
✓ Branch 30 taken 19 times.
✗ Branch 31 not taken.
✓ Branch 32 taken 37 times.
✓ Branch 35 taken 23 times.
✓ Branch 36 taken 14 times.
✓ Branch 37 taken 108 times.
✓ Branch 38 taken 1 times.
✓ Branch 39 taken 54 times.
✓ Branch 40 taken 54 times.
✗ Branch 41 not taken.
✓ Branch 42 taken 1 times.
✗ Branch 43 not taken.
✗ Branch 44 not taken.
✗ Branch 45 not taken.
✓ Branch 46 taken 1 times.
✗ Branch 47 not taken.
✗ Branch 48 not taken.
✓ Branch 49 taken 1 times.
✗ Branch 50 not taken.
✗ Branch 51 not taken.
✓ Branch 52 taken 1 times.
✗ Branch 53 not taken.
✗ Branch 54 not taken.
✗ Branch 55 not taken.
✗ Branch 56 not taken.
✗ Branch 58 not taken.
✗ Branch 59 not taken.
✗ Branch 61 not taken.
✗ Branch 62 not taken.
✗ Branch 63 not taken.
✗ Branch 64 not taken.
✗ Branch 65 not taken.
✗ Branch 66 not taken.
✗ Branch 69 not taken.
✗ Branch 70 not taken.
✓ Branch 71 taken 108 times.
✓ Branch 72 taken 8209 times.
✓ Branch 73 taken 108 times.
✗ Branch 74 not taken.
✓ Branch 75 taken 54 times.
✓ Branch 76 taken 54 times.
✗ Branch 77 not taken.
✗ Branch 78 not taken.
✗ Branch 79 not taken.
✗ Branch 80 not taken.
✗ Branch 81 not taken.
✗ Branch 82 not taken.
✗ Branch 83 not taken.
✗ Branch 84 not taken.
✗ Branch 85 not taken.
✗ Branch 86 not taken.
✗ Branch 87 not taken.
✗ Branch 88 not taken.
✗ Branch 89 not taken.
✗ Branch 90 not taken.
✗ Branch 91 not taken.
✗ Branch 92 not taken.
✗ Branch 94 not taken.
✗ Branch 95 not taken.
✗ Branch 97 not taken.
✗ Branch 98 not taken.
✗ Branch 99 not taken.
✗ Branch 100 not taken.
✗ Branch 101 not taken.
✗ Branch 102 not taken.
✗ Branch 105 not taken.
✗ Branch 106 not taken.
✓ Branch 107 taken 8208 times.
✓ Branch 108 taken 1 times.
✓ Branch 109 taken 8010 times.
✓ Branch 110 taken 198 times.
✗ Branch 111 not taken.
✓ Branch 112 taken 1 times.
✗ Branch 113 not taken.
✗ Branch 114 not taken.
✗ Branch 115 not taken.
✓ Branch 116 taken 1 times.
✗ Branch 117 not taken.
✗ Branch 118 not taken.
✗ Branch 119 not taken.
✓ Branch 120 taken 1 times.
✗ Branch 121 not taken.
✗ Branch 122 not taken.
✓ Branch 123 taken 1 times.
✗ Branch 124 not taken.
✓ Branch 125 taken 1 times.
✗ Branch 126 not taken.
✓ Branch 128 taken 1 times.
✗ Branch 129 not taken.
✓ Branch 131 taken 1 times.
✗ Branch 132 not taken.
✓ Branch 133 taken 1 times.
✗ Branch 134 not taken.
✗ Branch 135 not taken.
✗ Branch 136 not taken.
✗ Branch 139 not taken.
✗ Branch 140 not taken.
|
9773 | ASSIGN_SSE_SCALE_FUNC(c->hyScale, c->hLumFilterSize, sse2, sse2); |
579 |
53/125✓ Branch 0 taken 1239 times.
✓ Branch 1 taken 109 times.
✓ Branch 2 taken 8317 times.
✓ Branch 3 taken 973 times.
✓ Branch 4 taken 266 times.
✓ Branch 5 taken 702 times.
✓ Branch 6 taken 271 times.
✓ Branch 7 taken 1 times.
✓ Branch 8 taken 265 times.
✗ Branch 9 not taken.
✓ Branch 10 taken 1 times.
✓ Branch 11 taken 1 times.
✓ Branch 12 taken 264 times.
✗ Branch 13 not taken.
✓ Branch 14 taken 1 times.
✓ Branch 15 taken 1 times.
✓ Branch 16 taken 263 times.
✗ Branch 17 not taken.
✓ Branch 18 taken 1 times.
✓ Branch 19 taken 262 times.
✓ Branch 20 taken 1 times.
✓ Branch 21 taken 262 times.
✗ Branch 22 not taken.
✓ Branch 24 taken 261 times.
✓ Branch 25 taken 1 times.
✓ Branch 27 taken 225 times.
✓ Branch 28 taken 36 times.
✓ Branch 29 taken 207 times.
✓ Branch 30 taken 19 times.
✗ Branch 31 not taken.
✓ Branch 32 taken 37 times.
✓ Branch 35 taken 23 times.
✓ Branch 36 taken 14 times.
✓ Branch 37 taken 108 times.
✓ Branch 38 taken 1 times.
✓ Branch 39 taken 54 times.
✓ Branch 40 taken 54 times.
✗ Branch 41 not taken.
✓ Branch 42 taken 1 times.
✗ Branch 43 not taken.
✗ Branch 44 not taken.
✗ Branch 45 not taken.
✓ Branch 46 taken 1 times.
✗ Branch 47 not taken.
✗ Branch 48 not taken.
✓ Branch 49 taken 1 times.
✗ Branch 50 not taken.
✗ Branch 51 not taken.
✓ Branch 52 taken 1 times.
✗ Branch 53 not taken.
✗ Branch 54 not taken.
✗ Branch 55 not taken.
✗ Branch 56 not taken.
✗ Branch 58 not taken.
✗ Branch 59 not taken.
✗ Branch 61 not taken.
✗ Branch 62 not taken.
✗ Branch 63 not taken.
✗ Branch 64 not taken.
✗ Branch 65 not taken.
✗ Branch 66 not taken.
✗ Branch 69 not taken.
✗ Branch 70 not taken.
✓ Branch 71 taken 108 times.
✓ Branch 72 taken 8209 times.
✓ Branch 73 taken 108 times.
✗ Branch 74 not taken.
✓ Branch 75 taken 54 times.
✓ Branch 76 taken 54 times.
✗ Branch 77 not taken.
✗ Branch 78 not taken.
✗ Branch 79 not taken.
✗ Branch 80 not taken.
✗ Branch 81 not taken.
✗ Branch 82 not taken.
✗ Branch 83 not taken.
✗ Branch 84 not taken.
✗ Branch 85 not taken.
✗ Branch 86 not taken.
✗ Branch 87 not taken.
✗ Branch 88 not taken.
✗ Branch 89 not taken.
✗ Branch 90 not taken.
✗ Branch 91 not taken.
✗ Branch 92 not taken.
✗ Branch 94 not taken.
✗ Branch 95 not taken.
✗ Branch 97 not taken.
✗ Branch 98 not taken.
✗ Branch 99 not taken.
✗ Branch 100 not taken.
✗ Branch 101 not taken.
✗ Branch 102 not taken.
✗ Branch 105 not taken.
✗ Branch 106 not taken.
✓ Branch 107 taken 8208 times.
✓ Branch 108 taken 1 times.
✓ Branch 109 taken 8010 times.
✓ Branch 110 taken 198 times.
✗ Branch 111 not taken.
✓ Branch 112 taken 1 times.
✗ Branch 113 not taken.
✗ Branch 114 not taken.
✗ Branch 115 not taken.
✓ Branch 116 taken 1 times.
✗ Branch 117 not taken.
✗ Branch 118 not taken.
✗ Branch 119 not taken.
✓ Branch 120 taken 1 times.
✗ Branch 121 not taken.
✗ Branch 122 not taken.
✓ Branch 123 taken 1 times.
✗ Branch 124 not taken.
✓ Branch 125 taken 1 times.
✗ Branch 126 not taken.
✓ Branch 128 taken 1 times.
✗ Branch 129 not taken.
✓ Branch 131 taken 1 times.
✗ Branch 132 not taken.
✓ Branch 133 taken 1 times.
✗ Branch 134 not taken.
✗ Branch 135 not taken.
✗ Branch 136 not taken.
✗ Branch 139 not taken.
✗ Branch 140 not taken.
|
9773 | ASSIGN_SSE_SCALE_FUNC(c->hcScale, c->hChrFilterSize, sse2, sse2); |
580 |
10/13✓ Branch 0 taken 260 times.
✓ Branch 1 taken 39 times.
✓ Branch 2 taken 38 times.
✓ Branch 3 taken 8573 times.
✓ Branch 4 taken 755 times.
✓ Branch 6 taken 39 times.
✗ Branch 7 not taken.
✓ Branch 9 taken 39 times.
✗ Branch 10 not taken.
✓ Branch 12 taken 38 times.
✗ Branch 13 not taken.
✓ Branch 14 taken 7210 times.
✓ Branch 15 taken 1363 times.
|
9665 | ASSIGN_VSCALEX_FUNC(c->yuv2planeX, sse2, , |
581 | HAVE_ALIGNED_STACK || ARCH_X86_64); | ||
582 |
2/2✓ Branch 0 taken 8567 times.
✓ Branch 1 taken 1098 times.
|
9665 | if (!(c->opts.flags & SWS_ACCURATE_RND)) |
583 |
10/15✓ Branch 0 taken 44 times.
✓ Branch 1 taken 39 times.
✓ Branch 2 taken 38 times.
✓ Branch 3 taken 7691 times.
✓ Branch 4 taken 755 times.
✓ Branch 6 taken 44 times.
✗ Branch 7 not taken.
✓ Branch 9 taken 39 times.
✗ Branch 10 not taken.
✓ Branch 12 taken 39 times.
✗ Branch 13 not taken.
✓ Branch 15 taken 38 times.
✗ Branch 16 not taken.
✗ Branch 17 not taken.
✓ Branch 18 taken 755 times.
|
8567 | ASSIGN_VSCALE_FUNC(c->yuv2plane1, sse2); |
584 | |||
585 |
7/12✗ Branch 0 not taken.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 37 times.
✓ Branch 6 taken 28 times.
✓ Branch 7 taken 39 times.
✓ Branch 8 taken 38 times.
✓ Branch 9 taken 38 times.
✓ Branch 10 taken 38 times.
✓ Branch 11 taken 9447 times.
|
9665 | switch (c->opts.src_format) { |
586 | ✗ | case AV_PIX_FMT_YA8: | |
587 | ✗ | c->lumToYV12 = ff_yuyvToY_sse2; | |
588 | ✗ | if (c->needAlpha) | |
589 | ✗ | c->alpToYV12 = ff_uyvyToY_sse2; | |
590 | ✗ | break; | |
591 | ✗ | case AV_PIX_FMT_YUYV422: | |
592 | ✗ | c->lumToYV12 = ff_yuyvToY_sse2; | |
593 | ✗ | c->chrToYV12 = ff_yuyvToUV_sse2; | |
594 | ✗ | break; | |
595 | ✗ | case AV_PIX_FMT_UYVY422: | |
596 | ✗ | c->lumToYV12 = ff_uyvyToY_sse2; | |
597 | ✗ | c->chrToYV12 = ff_uyvyToUV_sse2; | |
598 | ✗ | break; | |
599 | ✗ | case AV_PIX_FMT_NV12: | |
600 | ✗ | c->chrToYV12 = ff_nv12ToUV_sse2; | |
601 | ✗ | break; | |
602 | ✗ | case AV_PIX_FMT_NV21: | |
603 | ✗ | c->chrToYV12 = ff_nv21ToUV_sse2; | |
604 | ✗ | break; | |
605 |
2/2✓ Branch 0 taken 10 times.
✓ Branch 1 taken 27 times.
|
37 | case_rgb(rgb24, RGB24, sse2); |
606 |
2/2✓ Branch 0 taken 10 times.
✓ Branch 1 taken 18 times.
|
28 | case_rgb(bgr24, BGR24, sse2); |
607 |
2/2✓ Branch 0 taken 21 times.
✓ Branch 1 taken 18 times.
|
39 | case_rgb(bgra, BGRA, sse2); |
608 |
2/2✓ Branch 0 taken 20 times.
✓ Branch 1 taken 18 times.
|
38 | case_rgb(rgba, RGBA, sse2); |
609 |
2/2✓ Branch 0 taken 20 times.
✓ Branch 1 taken 18 times.
|
38 | case_rgb(abgr, ABGR, sse2); |
610 |
2/2✓ Branch 0 taken 20 times.
✓ Branch 1 taken 18 times.
|
38 | case_rgb(argb, ARGB, sse2); |
611 | 9447 | default: | |
612 | 9447 | break; | |
613 | } | ||
614 | } | ||
615 |
2/2✓ Branch 0 taken 7531 times.
✓ Branch 1 taken 25527 times.
|
33058 | if (EXTERNAL_SSSE3(cpu_flags)) { |
616 |
53/125✓ Branch 0 taken 977 times.
✓ Branch 1 taken 85 times.
✓ Branch 2 taken 6469 times.
✓ Branch 3 taken 757 times.
✓ Branch 4 taken 220 times.
✓ Branch 5 taken 546 times.
✓ Branch 6 taken 211 times.
✓ Branch 7 taken 1 times.
✓ Branch 8 taken 219 times.
✗ Branch 9 not taken.
✓ Branch 10 taken 1 times.
✓ Branch 11 taken 1 times.
✓ Branch 12 taken 218 times.
✗ Branch 13 not taken.
✓ Branch 14 taken 1 times.
✓ Branch 15 taken 1 times.
✓ Branch 16 taken 217 times.
✗ Branch 17 not taken.
✓ Branch 18 taken 1 times.
✓ Branch 19 taken 216 times.
✓ Branch 20 taken 1 times.
✓ Branch 21 taken 216 times.
✗ Branch 22 not taken.
✓ Branch 24 taken 215 times.
✓ Branch 25 taken 1 times.
✓ Branch 27 taken 179 times.
✓ Branch 28 taken 36 times.
✓ Branch 29 taken 161 times.
✓ Branch 30 taken 19 times.
✗ Branch 31 not taken.
✓ Branch 32 taken 37 times.
✓ Branch 35 taken 23 times.
✓ Branch 36 taken 14 times.
✓ Branch 37 taken 84 times.
✓ Branch 38 taken 1 times.
✓ Branch 39 taken 42 times.
✓ Branch 40 taken 42 times.
✗ Branch 41 not taken.
✓ Branch 42 taken 1 times.
✗ Branch 43 not taken.
✗ Branch 44 not taken.
✗ Branch 45 not taken.
✓ Branch 46 taken 1 times.
✗ Branch 47 not taken.
✗ Branch 48 not taken.
✓ Branch 49 taken 1 times.
✗ Branch 50 not taken.
✗ Branch 51 not taken.
✓ Branch 52 taken 1 times.
✗ Branch 53 not taken.
✗ Branch 54 not taken.
✗ Branch 55 not taken.
✗ Branch 56 not taken.
✗ Branch 58 not taken.
✗ Branch 59 not taken.
✗ Branch 61 not taken.
✗ Branch 62 not taken.
✗ Branch 63 not taken.
✗ Branch 64 not taken.
✗ Branch 65 not taken.
✗ Branch 66 not taken.
✗ Branch 69 not taken.
✗ Branch 70 not taken.
✓ Branch 71 taken 84 times.
✓ Branch 72 taken 6385 times.
✓ Branch 73 taken 84 times.
✗ Branch 74 not taken.
✓ Branch 75 taken 42 times.
✓ Branch 76 taken 42 times.
✗ Branch 77 not taken.
✗ Branch 78 not taken.
✗ Branch 79 not taken.
✗ Branch 80 not taken.
✗ Branch 81 not taken.
✗ Branch 82 not taken.
✗ Branch 83 not taken.
✗ Branch 84 not taken.
✗ Branch 85 not taken.
✗ Branch 86 not taken.
✗ Branch 87 not taken.
✗ Branch 88 not taken.
✗ Branch 89 not taken.
✗ Branch 90 not taken.
✗ Branch 91 not taken.
✗ Branch 92 not taken.
✗ Branch 94 not taken.
✗ Branch 95 not taken.
✗ Branch 97 not taken.
✗ Branch 98 not taken.
✗ Branch 99 not taken.
✗ Branch 100 not taken.
✗ Branch 101 not taken.
✗ Branch 102 not taken.
✗ Branch 105 not taken.
✗ Branch 106 not taken.
✓ Branch 107 taken 6384 times.
✓ Branch 108 taken 1 times.
✓ Branch 109 taken 6230 times.
✓ Branch 110 taken 154 times.
✗ Branch 111 not taken.
✓ Branch 112 taken 1 times.
✗ Branch 113 not taken.
✗ Branch 114 not taken.
✗ Branch 115 not taken.
✓ Branch 116 taken 1 times.
✗ Branch 117 not taken.
✗ Branch 118 not taken.
✗ Branch 119 not taken.
✓ Branch 120 taken 1 times.
✗ Branch 121 not taken.
✗ Branch 122 not taken.
✓ Branch 123 taken 1 times.
✗ Branch 124 not taken.
✓ Branch 125 taken 1 times.
✗ Branch 126 not taken.
✓ Branch 128 taken 1 times.
✗ Branch 129 not taken.
✓ Branch 131 taken 1 times.
✗ Branch 132 not taken.
✓ Branch 133 taken 1 times.
✗ Branch 134 not taken.
✗ Branch 135 not taken.
✗ Branch 136 not taken.
✗ Branch 139 not taken.
✗ Branch 140 not taken.
|
7615 | ASSIGN_SSE_SCALE_FUNC(c->hyScale, c->hLumFilterSize, ssse3, ssse3); |
617 |
53/125✓ Branch 0 taken 977 times.
✓ Branch 1 taken 85 times.
✓ Branch 2 taken 6469 times.
✓ Branch 3 taken 757 times.
✓ Branch 4 taken 220 times.
✓ Branch 5 taken 546 times.
✓ Branch 6 taken 211 times.
✓ Branch 7 taken 1 times.
✓ Branch 8 taken 219 times.
✗ Branch 9 not taken.
✓ Branch 10 taken 1 times.
✓ Branch 11 taken 1 times.
✓ Branch 12 taken 218 times.
✗ Branch 13 not taken.
✓ Branch 14 taken 1 times.
✓ Branch 15 taken 1 times.
✓ Branch 16 taken 217 times.
✗ Branch 17 not taken.
✓ Branch 18 taken 1 times.
✓ Branch 19 taken 216 times.
✓ Branch 20 taken 1 times.
✓ Branch 21 taken 216 times.
✗ Branch 22 not taken.
✓ Branch 24 taken 215 times.
✓ Branch 25 taken 1 times.
✓ Branch 27 taken 179 times.
✓ Branch 28 taken 36 times.
✓ Branch 29 taken 161 times.
✓ Branch 30 taken 19 times.
✗ Branch 31 not taken.
✓ Branch 32 taken 37 times.
✓ Branch 35 taken 23 times.
✓ Branch 36 taken 14 times.
✓ Branch 37 taken 84 times.
✓ Branch 38 taken 1 times.
✓ Branch 39 taken 42 times.
✓ Branch 40 taken 42 times.
✗ Branch 41 not taken.
✓ Branch 42 taken 1 times.
✗ Branch 43 not taken.
✗ Branch 44 not taken.
✗ Branch 45 not taken.
✓ Branch 46 taken 1 times.
✗ Branch 47 not taken.
✗ Branch 48 not taken.
✓ Branch 49 taken 1 times.
✗ Branch 50 not taken.
✗ Branch 51 not taken.
✓ Branch 52 taken 1 times.
✗ Branch 53 not taken.
✗ Branch 54 not taken.
✗ Branch 55 not taken.
✗ Branch 56 not taken.
✗ Branch 58 not taken.
✗ Branch 59 not taken.
✗ Branch 61 not taken.
✗ Branch 62 not taken.
✗ Branch 63 not taken.
✗ Branch 64 not taken.
✗ Branch 65 not taken.
✗ Branch 66 not taken.
✗ Branch 69 not taken.
✗ Branch 70 not taken.
✓ Branch 71 taken 84 times.
✓ Branch 72 taken 6385 times.
✓ Branch 73 taken 84 times.
✗ Branch 74 not taken.
✓ Branch 75 taken 42 times.
✓ Branch 76 taken 42 times.
✗ Branch 77 not taken.
✗ Branch 78 not taken.
✗ Branch 79 not taken.
✗ Branch 80 not taken.
✗ Branch 81 not taken.
✗ Branch 82 not taken.
✗ Branch 83 not taken.
✗ Branch 84 not taken.
✗ Branch 85 not taken.
✗ Branch 86 not taken.
✗ Branch 87 not taken.
✗ Branch 88 not taken.
✗ Branch 89 not taken.
✗ Branch 90 not taken.
✗ Branch 91 not taken.
✗ Branch 92 not taken.
✗ Branch 94 not taken.
✗ Branch 95 not taken.
✗ Branch 97 not taken.
✗ Branch 98 not taken.
✗ Branch 99 not taken.
✗ Branch 100 not taken.
✗ Branch 101 not taken.
✗ Branch 102 not taken.
✗ Branch 105 not taken.
✗ Branch 106 not taken.
✓ Branch 107 taken 6384 times.
✓ Branch 108 taken 1 times.
✓ Branch 109 taken 6230 times.
✓ Branch 110 taken 154 times.
✗ Branch 111 not taken.
✓ Branch 112 taken 1 times.
✗ Branch 113 not taken.
✗ Branch 114 not taken.
✗ Branch 115 not taken.
✓ Branch 116 taken 1 times.
✗ Branch 117 not taken.
✗ Branch 118 not taken.
✗ Branch 119 not taken.
✓ Branch 120 taken 1 times.
✗ Branch 121 not taken.
✗ Branch 122 not taken.
✓ Branch 123 taken 1 times.
✗ Branch 124 not taken.
✓ Branch 125 taken 1 times.
✗ Branch 126 not taken.
✓ Branch 128 taken 1 times.
✗ Branch 129 not taken.
✓ Branch 131 taken 1 times.
✗ Branch 132 not taken.
✓ Branch 133 taken 1 times.
✗ Branch 134 not taken.
✗ Branch 135 not taken.
✗ Branch 136 not taken.
✗ Branch 139 not taken.
✗ Branch 140 not taken.
|
7615 | ASSIGN_SSE_SCALE_FUNC(c->hcScale, c->hChrFilterSize, ssse3, ssse3); |
618 |
3/3✓ Branch 0 taken 29 times.
✓ Branch 1 taken 22 times.
✓ Branch 2 taken 7480 times.
|
7531 | switch (c->opts.src_format) { |
619 |
2/2✓ Branch 0 taken 8 times.
✓ Branch 1 taken 21 times.
|
29 | case_rgb(rgb24, RGB24, ssse3); |
620 |
2/2✓ Branch 0 taken 8 times.
✓ Branch 1 taken 14 times.
|
22 | case_rgb(bgr24, BGR24, ssse3); |
621 | 7480 | default: | |
622 | 7480 | break; | |
623 | } | ||
624 | } | ||
625 |
2/2✓ Branch 0 taken 6464 times.
✓ Branch 1 taken 26594 times.
|
33058 | if (EXTERNAL_SSE4(cpu_flags)) { |
626 | /* Xto15 don't need special sse4 functions */ | ||
627 |
53/125✓ Branch 0 taken 846 times.
✓ Branch 1 taken 73 times.
✓ Branch 2 taken 5545 times.
✓ Branch 3 taken 649 times.
✓ Branch 4 taken 197 times.
✓ Branch 5 taken 468 times.
✓ Branch 6 taken 181 times.
✓ Branch 7 taken 1 times.
✓ Branch 8 taken 196 times.
✗ Branch 9 not taken.
✓ Branch 10 taken 1 times.
✓ Branch 11 taken 1 times.
✓ Branch 12 taken 195 times.
✗ Branch 13 not taken.
✓ Branch 14 taken 1 times.
✓ Branch 15 taken 1 times.
✓ Branch 16 taken 194 times.
✗ Branch 17 not taken.
✓ Branch 18 taken 1 times.
✓ Branch 19 taken 193 times.
✓ Branch 20 taken 1 times.
✓ Branch 21 taken 193 times.
✗ Branch 22 not taken.
✓ Branch 24 taken 192 times.
✓ Branch 25 taken 1 times.
✓ Branch 27 taken 156 times.
✓ Branch 28 taken 36 times.
✓ Branch 29 taken 138 times.
✓ Branch 30 taken 19 times.
✗ Branch 31 not taken.
✓ Branch 32 taken 37 times.
✓ Branch 35 taken 23 times.
✓ Branch 36 taken 14 times.
✓ Branch 37 taken 72 times.
✓ Branch 38 taken 1 times.
✓ Branch 39 taken 36 times.
✓ Branch 40 taken 36 times.
✗ Branch 41 not taken.
✓ Branch 42 taken 1 times.
✗ Branch 43 not taken.
✗ Branch 44 not taken.
✗ Branch 45 not taken.
✓ Branch 46 taken 1 times.
✗ Branch 47 not taken.
✗ Branch 48 not taken.
✓ Branch 49 taken 1 times.
✗ Branch 50 not taken.
✗ Branch 51 not taken.
✓ Branch 52 taken 1 times.
✗ Branch 53 not taken.
✗ Branch 54 not taken.
✗ Branch 55 not taken.
✗ Branch 56 not taken.
✗ Branch 58 not taken.
✗ Branch 59 not taken.
✗ Branch 61 not taken.
✗ Branch 62 not taken.
✗ Branch 63 not taken.
✗ Branch 64 not taken.
✗ Branch 65 not taken.
✗ Branch 66 not taken.
✗ Branch 69 not taken.
✗ Branch 70 not taken.
✓ Branch 71 taken 72 times.
✓ Branch 72 taken 5473 times.
✓ Branch 73 taken 72 times.
✗ Branch 74 not taken.
✓ Branch 75 taken 36 times.
✓ Branch 76 taken 36 times.
✗ Branch 77 not taken.
✗ Branch 78 not taken.
✗ Branch 79 not taken.
✗ Branch 80 not taken.
✗ Branch 81 not taken.
✗ Branch 82 not taken.
✗ Branch 83 not taken.
✗ Branch 84 not taken.
✗ Branch 85 not taken.
✗ Branch 86 not taken.
✗ Branch 87 not taken.
✗ Branch 88 not taken.
✗ Branch 89 not taken.
✗ Branch 90 not taken.
✗ Branch 91 not taken.
✗ Branch 92 not taken.
✗ Branch 94 not taken.
✗ Branch 95 not taken.
✗ Branch 97 not taken.
✗ Branch 98 not taken.
✗ Branch 99 not taken.
✗ Branch 100 not taken.
✗ Branch 101 not taken.
✗ Branch 102 not taken.
✗ Branch 105 not taken.
✗ Branch 106 not taken.
✓ Branch 107 taken 5472 times.
✓ Branch 108 taken 1 times.
✓ Branch 109 taken 5340 times.
✓ Branch 110 taken 132 times.
✗ Branch 111 not taken.
✓ Branch 112 taken 1 times.
✗ Branch 113 not taken.
✗ Branch 114 not taken.
✗ Branch 115 not taken.
✓ Branch 116 taken 1 times.
✗ Branch 117 not taken.
✗ Branch 118 not taken.
✗ Branch 119 not taken.
✓ Branch 120 taken 1 times.
✗ Branch 121 not taken.
✗ Branch 122 not taken.
✓ Branch 123 taken 1 times.
✗ Branch 124 not taken.
✓ Branch 125 taken 1 times.
✗ Branch 126 not taken.
✓ Branch 128 taken 1 times.
✗ Branch 129 not taken.
✓ Branch 131 taken 1 times.
✗ Branch 132 not taken.
✓ Branch 133 taken 1 times.
✗ Branch 134 not taken.
✗ Branch 135 not taken.
✗ Branch 136 not taken.
✗ Branch 139 not taken.
✗ Branch 140 not taken.
|
6536 | ASSIGN_SSE_SCALE_FUNC(c->hyScale, c->hLumFilterSize, sse4, ssse3); |
628 |
53/125✓ Branch 0 taken 846 times.
✓ Branch 1 taken 73 times.
✓ Branch 2 taken 5545 times.
✓ Branch 3 taken 649 times.
✓ Branch 4 taken 197 times.
✓ Branch 5 taken 468 times.
✓ Branch 6 taken 181 times.
✓ Branch 7 taken 1 times.
✓ Branch 8 taken 196 times.
✗ Branch 9 not taken.
✓ Branch 10 taken 1 times.
✓ Branch 11 taken 1 times.
✓ Branch 12 taken 195 times.
✗ Branch 13 not taken.
✓ Branch 14 taken 1 times.
✓ Branch 15 taken 1 times.
✓ Branch 16 taken 194 times.
✗ Branch 17 not taken.
✓ Branch 18 taken 1 times.
✓ Branch 19 taken 193 times.
✓ Branch 20 taken 1 times.
✓ Branch 21 taken 193 times.
✗ Branch 22 not taken.
✓ Branch 24 taken 192 times.
✓ Branch 25 taken 1 times.
✓ Branch 27 taken 156 times.
✓ Branch 28 taken 36 times.
✓ Branch 29 taken 138 times.
✓ Branch 30 taken 19 times.
✗ Branch 31 not taken.
✓ Branch 32 taken 37 times.
✓ Branch 35 taken 23 times.
✓ Branch 36 taken 14 times.
✓ Branch 37 taken 72 times.
✓ Branch 38 taken 1 times.
✓ Branch 39 taken 36 times.
✓ Branch 40 taken 36 times.
✗ Branch 41 not taken.
✓ Branch 42 taken 1 times.
✗ Branch 43 not taken.
✗ Branch 44 not taken.
✗ Branch 45 not taken.
✓ Branch 46 taken 1 times.
✗ Branch 47 not taken.
✗ Branch 48 not taken.
✓ Branch 49 taken 1 times.
✗ Branch 50 not taken.
✗ Branch 51 not taken.
✓ Branch 52 taken 1 times.
✗ Branch 53 not taken.
✗ Branch 54 not taken.
✗ Branch 55 not taken.
✗ Branch 56 not taken.
✗ Branch 58 not taken.
✗ Branch 59 not taken.
✗ Branch 61 not taken.
✗ Branch 62 not taken.
✗ Branch 63 not taken.
✗ Branch 64 not taken.
✗ Branch 65 not taken.
✗ Branch 66 not taken.
✗ Branch 69 not taken.
✗ Branch 70 not taken.
✓ Branch 71 taken 72 times.
✓ Branch 72 taken 5473 times.
✓ Branch 73 taken 72 times.
✗ Branch 74 not taken.
✓ Branch 75 taken 36 times.
✓ Branch 76 taken 36 times.
✗ Branch 77 not taken.
✗ Branch 78 not taken.
✗ Branch 79 not taken.
✗ Branch 80 not taken.
✗ Branch 81 not taken.
✗ Branch 82 not taken.
✗ Branch 83 not taken.
✗ Branch 84 not taken.
✗ Branch 85 not taken.
✗ Branch 86 not taken.
✗ Branch 87 not taken.
✗ Branch 88 not taken.
✗ Branch 89 not taken.
✗ Branch 90 not taken.
✗ Branch 91 not taken.
✗ Branch 92 not taken.
✗ Branch 94 not taken.
✗ Branch 95 not taken.
✗ Branch 97 not taken.
✗ Branch 98 not taken.
✗ Branch 99 not taken.
✗ Branch 100 not taken.
✗ Branch 101 not taken.
✗ Branch 102 not taken.
✗ Branch 105 not taken.
✗ Branch 106 not taken.
✓ Branch 107 taken 5472 times.
✓ Branch 108 taken 1 times.
✓ Branch 109 taken 5340 times.
✓ Branch 110 taken 132 times.
✗ Branch 111 not taken.
✓ Branch 112 taken 1 times.
✗ Branch 113 not taken.
✗ Branch 114 not taken.
✗ Branch 115 not taken.
✓ Branch 116 taken 1 times.
✗ Branch 117 not taken.
✗ Branch 118 not taken.
✗ Branch 119 not taken.
✓ Branch 120 taken 1 times.
✗ Branch 121 not taken.
✗ Branch 122 not taken.
✓ Branch 123 taken 1 times.
✗ Branch 124 not taken.
✓ Branch 125 taken 1 times.
✗ Branch 126 not taken.
✓ Branch 128 taken 1 times.
✗ Branch 129 not taken.
✓ Branch 131 taken 1 times.
✗ Branch 132 not taken.
✓ Branch 133 taken 1 times.
✗ Branch 134 not taken.
✗ Branch 135 not taken.
✗ Branch 136 not taken.
✗ Branch 139 not taken.
✗ Branch 140 not taken.
|
6536 | ASSIGN_SSE_SCALE_FUNC(c->hcScale, c->hChrFilterSize, sse4, ssse3); |
629 |
12/15✓ Branch 0 taken 176 times.
✓ Branch 1 taken 27 times.
✓ Branch 2 taken 26 times.
✓ Branch 3 taken 5720 times.
✓ Branch 4 taken 515 times.
✓ Branch 6 taken 104 times.
✓ Branch 7 taken 72 times.
✓ Branch 9 taken 27 times.
✗ Branch 10 not taken.
✓ Branch 12 taken 27 times.
✗ Branch 13 not taken.
✓ Branch 15 taken 26 times.
✗ Branch 16 not taken.
✓ Branch 17 taken 4807 times.
✓ Branch 18 taken 913 times.
|
6464 | ASSIGN_VSCALEX_FUNC(c->yuv2planeX, sse4, |
630 | if (!isBE(c->opts.dst_format)) c->yuv2planeX = ff_yuv2planeX_16_sse4, | ||
631 | HAVE_ALIGNED_STACK || ARCH_X86_64); | ||
632 |
6/6✓ Branch 0 taken 176 times.
✓ Branch 1 taken 6288 times.
✓ Branch 3 taken 104 times.
✓ Branch 4 taken 72 times.
✓ Branch 5 taken 32 times.
✓ Branch 6 taken 72 times.
|
6464 | if (c->dstBpc == 16 && !isBE(c->opts.dst_format) && !(c->opts.flags & SWS_ACCURATE_RND)) |
633 | 32 | c->yuv2plane1 = ff_yuv2plane1_16_sse4; | |
634 | } | ||
635 | |||
636 |
2/2✓ Branch 0 taken 3263 times.
✓ Branch 1 taken 29795 times.
|
33058 | if (EXTERNAL_AVX(cpu_flags)) { |
637 |
10/13✓ Branch 0 taken 92 times.
✓ Branch 1 taken 15 times.
✓ Branch 2 taken 14 times.
✓ Branch 3 taken 2867 times.
✓ Branch 4 taken 275 times.
✓ Branch 6 taken 15 times.
✗ Branch 7 not taken.
✓ Branch 9 taken 15 times.
✗ Branch 10 not taken.
✓ Branch 12 taken 14 times.
✗ Branch 13 not taken.
✓ Branch 14 taken 2404 times.
✓ Branch 15 taken 463 times.
|
3263 | ASSIGN_VSCALEX_FUNC(c->yuv2planeX, avx, , |
638 | HAVE_ALIGNED_STACK || ARCH_X86_64); | ||
639 |
2/2✓ Branch 0 taken 2897 times.
✓ Branch 1 taken 366 times.
|
3263 | if (!(c->opts.flags & SWS_ACCURATE_RND)) |
640 |
10/15✓ Branch 0 taken 20 times.
✓ Branch 1 taken 15 times.
✓ Branch 2 taken 14 times.
✓ Branch 3 taken 2573 times.
✓ Branch 4 taken 275 times.
✓ Branch 6 taken 20 times.
✗ Branch 7 not taken.
✓ Branch 9 taken 15 times.
✗ Branch 10 not taken.
✓ Branch 12 taken 15 times.
✗ Branch 13 not taken.
✓ Branch 15 taken 14 times.
✗ Branch 16 not taken.
✗ Branch 17 not taken.
✓ Branch 18 taken 275 times.
|
2897 | ASSIGN_VSCALE_FUNC(c->yuv2plane1, avx); |
641 | |||
642 |
7/11✗ Branch 0 not taken.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 13 times.
✓ Branch 5 taken 10 times.
✓ Branch 6 taken 15 times.
✓ Branch 7 taken 14 times.
✓ Branch 8 taken 14 times.
✓ Branch 9 taken 14 times.
✓ Branch 10 taken 3183 times.
|
3263 | switch (c->opts.src_format) { |
643 | ✗ | case AV_PIX_FMT_YUYV422: | |
644 | ✗ | c->chrToYV12 = ff_yuyvToUV_avx; | |
645 | ✗ | break; | |
646 | ✗ | case AV_PIX_FMT_UYVY422: | |
647 | ✗ | c->chrToYV12 = ff_uyvyToUV_avx; | |
648 | ✗ | break; | |
649 | ✗ | case AV_PIX_FMT_NV12: | |
650 | ✗ | c->chrToYV12 = ff_nv12ToUV_avx; | |
651 | ✗ | break; | |
652 | ✗ | case AV_PIX_FMT_NV21: | |
653 | ✗ | c->chrToYV12 = ff_nv21ToUV_avx; | |
654 | ✗ | break; | |
655 |
2/2✓ Branch 0 taken 4 times.
✓ Branch 1 taken 9 times.
|
13 | case_rgb(rgb24, RGB24, avx); |
656 |
2/2✓ Branch 0 taken 4 times.
✓ Branch 1 taken 6 times.
|
10 | case_rgb(bgr24, BGR24, avx); |
657 |
2/2✓ Branch 0 taken 9 times.
✓ Branch 1 taken 6 times.
|
15 | case_rgb(bgra, BGRA, avx); |
658 |
2/2✓ Branch 0 taken 8 times.
✓ Branch 1 taken 6 times.
|
14 | case_rgb(rgba, RGBA, avx); |
659 |
2/2✓ Branch 0 taken 8 times.
✓ Branch 1 taken 6 times.
|
14 | case_rgb(abgr, ABGR, avx); |
660 |
2/2✓ Branch 0 taken 8 times.
✓ Branch 1 taken 6 times.
|
14 | case_rgb(argb, ARGB, avx); |
661 | 3183 | default: | |
662 | 3183 | break; | |
663 | } | ||
664 | } | ||
665 | |||
666 | #if ARCH_X86_64 | ||
667 | #define ASSIGN_AVX2_SCALE_FUNC(hscalefn, filtersize) \ | ||
668 | switch (filtersize) { \ | ||
669 | case 4: hscalefn = ff_hscale8to15_4_avx2; break; \ | ||
670 | default: hscalefn = ff_hscale8to15_X4_avx2; break; \ | ||
671 | break; \ | ||
672 | } | ||
673 | |||
674 |
4/6✓ Branch 0 taken 1129 times.
✓ Branch 1 taken 31929 times.
✓ Branch 2 taken 1129 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 1129 times.
✗ Branch 5 not taken.
|
33058 | if (EXTERNAL_AVX2_FAST(cpu_flags) && !(cpu_flags & AV_CPU_FLAG_SLOW_GATHER)) { |
675 |
4/4✓ Branch 0 taken 1045 times.
✓ Branch 1 taken 84 times.
✓ Branch 2 taken 980 times.
✓ Branch 3 taken 65 times.
|
1129 | if ((c->srcBpc == 8) && (c->dstBpc <= 14)) { |
676 |
2/2✓ Branch 0 taken 78 times.
✓ Branch 1 taken 902 times.
|
980 | ASSIGN_AVX2_SCALE_FUNC(c->hcScale, c->hChrFilterSize); |
677 |
2/2✓ Branch 0 taken 78 times.
✓ Branch 1 taken 902 times.
|
980 | ASSIGN_AVX2_SCALE_FUNC(c->hyScale, c->hLumFilterSize); |
678 | } | ||
679 | } | ||
680 | |||
681 |
3/4✓ Branch 0 taken 1129 times.
✓ Branch 1 taken 31929 times.
✓ Branch 2 taken 1129 times.
✗ Branch 3 not taken.
|
33058 | if (EXTERNAL_AVX2_FAST(cpu_flags)) { |
682 | if (ARCH_X86_64) | ||
683 |
7/7✓ Branch 0 taken 5 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 7 times.
✓ Branch 3 taken 6 times.
✓ Branch 4 taken 6 times.
✓ Branch 5 taken 6 times.
✓ Branch 6 taken 1095 times.
|
1129 | switch (c->opts.src_format) { |
684 |
2/2✓ Branch 0 taken 2 times.
✓ Branch 1 taken 3 times.
|
5 | case_rgb(rgb24, RGB24, avx2); |
685 |
2/2✓ Branch 0 taken 2 times.
✓ Branch 1 taken 2 times.
|
4 | case_rgb(bgr24, BGR24, avx2); |
686 |
2/2✓ Branch 0 taken 5 times.
✓ Branch 1 taken 2 times.
|
7 | case_rgb(bgra, BGRA, avx2); |
687 |
2/2✓ Branch 0 taken 4 times.
✓ Branch 1 taken 2 times.
|
6 | case_rgb(rgba, RGBA, avx2); |
688 |
2/2✓ Branch 0 taken 4 times.
✓ Branch 1 taken 2 times.
|
6 | case_rgb(abgr, ABGR, avx2); |
689 |
2/2✓ Branch 0 taken 4 times.
✓ Branch 1 taken 2 times.
|
6 | case_rgb(argb, ARGB, avx2); |
690 | } | ||
691 |
2/2✓ Branch 0 taken 1007 times.
✓ Branch 1 taken 122 times.
|
1129 | if (!(c->opts.flags & SWS_ACCURATE_RND)) // FIXME |
692 |
2/3✓ Branch 0 taken 2 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 1005 times.
|
1007 | switch (c->opts.dst_format) { |
693 | 2 | case AV_PIX_FMT_NV12: | |
694 | case AV_PIX_FMT_NV24: | ||
695 | 2 | c->yuv2nv12cX = ff_yuv2nv12cX_avx2; | |
696 | 2 | break; | |
697 | ✗ | case AV_PIX_FMT_NV21: | |
698 | case AV_PIX_FMT_NV42: | ||
699 | ✗ | c->yuv2nv12cX = ff_yuv2nv21cX_avx2; | |
700 | ✗ | break; | |
701 | 1005 | default: | |
702 | 1005 | break; | |
703 | } | ||
704 | } | ||
705 | |||
706 | |||
707 | #define INPUT_PLANER_RGB_A_FUNC_CASE_NOBREAK(fmt, name, opt) \ | ||
708 | case fmt: \ | ||
709 | c->readAlpPlanar = ff_planar_##name##_to_a_##opt; | ||
710 | |||
711 | #define INPUT_PLANER_RGBA_YUV_FUNC_CASE(rgb_fmt, rgba_fmt, name, opt) \ | ||
712 | case rgba_fmt: \ | ||
713 | case rgb_fmt: \ | ||
714 | c->readLumPlanar = ff_planar_##name##_to_y_##opt; \ | ||
715 | c->readChrPlanar = ff_planar_##name##_to_uv_##opt; \ | ||
716 | break; | ||
717 | |||
718 | #define INPUT_PLANER_RGB_YUV_FUNC_CASE(fmt, name, opt) \ | ||
719 | case fmt: \ | ||
720 | c->readLumPlanar = ff_planar_##name##_to_y_##opt; \ | ||
721 | c->readChrPlanar = ff_planar_##name##_to_uv_##opt; \ | ||
722 | break; | ||
723 | |||
724 | #define INPUT_PLANER_RGB_UV_FUNC_CASE(fmt, name, opt) \ | ||
725 | case fmt: \ | ||
726 | c->readChrPlanar = ff_planar_##name##_to_uv_##opt; \ | ||
727 | break; | ||
728 | |||
729 | #define INPUT_PLANER_RGBAXX_YUVA_FUNC_CASE(rgb_fmt, rgba_fmt, name, opt) \ | ||
730 | INPUT_PLANER_RGB_A_FUNC_CASE_NOBREAK(rgba_fmt##LE, name##le, opt) \ | ||
731 | INPUT_PLANER_RGB_YUV_FUNC_CASE(rgb_fmt##LE, name##le, opt) \ | ||
732 | INPUT_PLANER_RGB_A_FUNC_CASE_NOBREAK(rgba_fmt##BE, name##be, opt) \ | ||
733 | INPUT_PLANER_RGB_YUV_FUNC_CASE(rgb_fmt##BE, name##be, opt) | ||
734 | |||
735 | #define INPUT_PLANER_RGBAXX_UVA_FUNC_CASE(rgb_fmt, rgba_fmt, name, opt) \ | ||
736 | INPUT_PLANER_RGB_A_FUNC_CASE_NOBREAK(rgba_fmt##LE, name##le, opt) \ | ||
737 | INPUT_PLANER_RGB_UV_FUNC_CASE(rgb_fmt##LE, name##le, opt) \ | ||
738 | INPUT_PLANER_RGB_A_FUNC_CASE_NOBREAK(rgba_fmt##BE, name##be, opt) \ | ||
739 | INPUT_PLANER_RGB_UV_FUNC_CASE(rgb_fmt##BE, name##be, opt) | ||
740 | |||
741 | #define INPUT_PLANER_RGBAXX_YUV_FUNC_CASE(rgb_fmt, rgba_fmt, name, opt) \ | ||
742 | INPUT_PLANER_RGBA_YUV_FUNC_CASE(rgb_fmt##LE, rgba_fmt##LE, name##le, opt) \ | ||
743 | INPUT_PLANER_RGBA_YUV_FUNC_CASE(rgb_fmt##BE, rgba_fmt##BE, name##be, opt) | ||
744 | |||
745 | #define INPUT_PLANER_RGBXX_YUV_FUNC_CASE(rgb_fmt, name, opt) \ | ||
746 | INPUT_PLANER_RGB_YUV_FUNC_CASE(rgb_fmt##LE, name##le, opt) \ | ||
747 | INPUT_PLANER_RGB_YUV_FUNC_CASE(rgb_fmt##BE, name##be, opt) | ||
748 | |||
749 | #define INPUT_PLANER_RGBXX_UV_FUNC_CASE(rgb_fmt, name, opt) \ | ||
750 | INPUT_PLANER_RGB_UV_FUNC_CASE(rgb_fmt##LE, name##le, opt) \ | ||
751 | INPUT_PLANER_RGB_UV_FUNC_CASE(rgb_fmt##BE, name##be, opt) | ||
752 | |||
753 | #define INPUT_PLANER_RGB_YUVA_ALL_CASES(opt) \ | ||
754 | INPUT_PLANER_RGB_A_FUNC_CASE_NOBREAK(AV_PIX_FMT_GBRAP, rgb, opt) \ | ||
755 | INPUT_PLANER_RGB_YUV_FUNC_CASE( AV_PIX_FMT_GBRP, rgb, opt) \ | ||
756 | INPUT_PLANER_RGBXX_YUV_FUNC_CASE( AV_PIX_FMT_GBRP9, rgb9, opt) \ | ||
757 | INPUT_PLANER_RGBAXX_YUVA_FUNC_CASE(AV_PIX_FMT_GBRP10, AV_PIX_FMT_GBRAP10, rgb10, opt) \ | ||
758 | INPUT_PLANER_RGBAXX_YUVA_FUNC_CASE(AV_PIX_FMT_GBRP12, AV_PIX_FMT_GBRAP12, rgb12, opt) \ | ||
759 | INPUT_PLANER_RGBXX_YUV_FUNC_CASE( AV_PIX_FMT_GBRP14, rgb14, opt) \ | ||
760 | INPUT_PLANER_RGBAXX_YUVA_FUNC_CASE(AV_PIX_FMT_GBRP16, AV_PIX_FMT_GBRAP16, rgb16, opt) \ | ||
761 | INPUT_PLANER_RGBAXX_YUVA_FUNC_CASE(AV_PIX_FMT_GBRPF32, AV_PIX_FMT_GBRAPF32, rgbf32, opt) | ||
762 | |||
763 | |||
764 |
2/2✓ Branch 0 taken 9665 times.
✓ Branch 1 taken 23393 times.
|
33058 | if (EXTERNAL_SSE2(cpu_flags)) { |
765 |
23/23✓ Branch 0 taken 163 times.
✓ Branch 1 taken 109 times.
✓ Branch 2 taken 109 times.
✓ Branch 3 taken 108 times.
✓ Branch 4 taken 163 times.
✓ Branch 5 taken 109 times.
✓ Branch 6 taken 162 times.
✓ Branch 7 taken 108 times.
✓ Branch 8 taken 163 times.
✓ Branch 9 taken 109 times.
✓ Branch 10 taken 162 times.
✓ Branch 11 taken 108 times.
✓ Branch 12 taken 109 times.
✓ Branch 13 taken 108 times.
✓ Branch 14 taken 163 times.
✓ Branch 15 taken 109 times.
✓ Branch 16 taken 162 times.
✓ Branch 17 taken 108 times.
✓ Branch 18 taken 162 times.
✓ Branch 19 taken 138 times.
✓ Branch 20 taken 162 times.
✓ Branch 21 taken 108 times.
✓ Branch 22 taken 6763 times.
|
9665 | switch (c->opts.src_format) { |
766 | 163 | INPUT_PLANER_RGB_A_FUNC_CASE_NOBREAK(AV_PIX_FMT_GBRAP, rgb, sse2); | |
767 | 272 | INPUT_PLANER_RGB_UV_FUNC_CASE( AV_PIX_FMT_GBRP, rgb, sse2); | |
768 | 217 | INPUT_PLANER_RGBXX_UV_FUNC_CASE( AV_PIX_FMT_GBRP9, rgb9, sse2); | |
769 | 542 | INPUT_PLANER_RGBAXX_UVA_FUNC_CASE( AV_PIX_FMT_GBRP10, AV_PIX_FMT_GBRAP10, rgb10, sse2); | |
770 | 542 | INPUT_PLANER_RGBAXX_UVA_FUNC_CASE( AV_PIX_FMT_GBRP12, AV_PIX_FMT_GBRAP12, rgb12, sse2); | |
771 | 217 | INPUT_PLANER_RGBXX_UV_FUNC_CASE( AV_PIX_FMT_GBRP14, rgb14, sse2); | |
772 | 542 | INPUT_PLANER_RGBAXX_UVA_FUNC_CASE( AV_PIX_FMT_GBRP16, AV_PIX_FMT_GBRAP16, rgb16, sse2); | |
773 | 570 | INPUT_PLANER_RGBAXX_YUVA_FUNC_CASE(AV_PIX_FMT_GBRPF32, AV_PIX_FMT_GBRAPF32, rgbf32, sse2); | |
774 | 6763 | default: | |
775 | 6763 | break; | |
776 | } | ||
777 | } | ||
778 | |||
779 |
2/2✓ Branch 0 taken 6464 times.
✓ Branch 1 taken 26594 times.
|
33058 | if (EXTERNAL_SSE4(cpu_flags)) { |
780 |
16/16✓ Branch 0 taken 182 times.
✓ Branch 1 taken 73 times.
✓ Branch 2 taken 72 times.
✓ Branch 3 taken 182 times.
✓ Branch 4 taken 180 times.
✓ Branch 5 taken 182 times.
✓ Branch 6 taken 180 times.
✓ Branch 7 taken 73 times.
✓ Branch 8 taken 72 times.
✓ Branch 9 taken 182 times.
✓ Branch 10 taken 180 times.
✓ Branch 11 taken 108 times.
✓ Branch 12 taken 102 times.
✓ Branch 13 taken 108 times.
✓ Branch 14 taken 72 times.
✓ Branch 15 taken 4516 times.
|
6464 | switch (c->opts.src_format) { |
781 | 182 | case AV_PIX_FMT_GBRAP: | |
782 | 182 | INPUT_PLANER_RGB_YUV_FUNC_CASE( AV_PIX_FMT_GBRP, rgb, sse4); | |
783 | 145 | INPUT_PLANER_RGBXX_YUV_FUNC_CASE( AV_PIX_FMT_GBRP9, rgb9, sse4); | |
784 | 362 | INPUT_PLANER_RGBAXX_YUV_FUNC_CASE( AV_PIX_FMT_GBRP10, AV_PIX_FMT_GBRAP10, rgb10, sse4); | |
785 | 362 | INPUT_PLANER_RGBAXX_YUV_FUNC_CASE( AV_PIX_FMT_GBRP12, AV_PIX_FMT_GBRAP12, rgb12, sse4); | |
786 | 145 | INPUT_PLANER_RGBXX_YUV_FUNC_CASE( AV_PIX_FMT_GBRP14, rgb14, sse4); | |
787 | 362 | INPUT_PLANER_RGBAXX_YUV_FUNC_CASE( AV_PIX_FMT_GBRP16, AV_PIX_FMT_GBRAP16, rgb16, sse4); | |
788 | 390 | INPUT_PLANER_RGBAXX_YUVA_FUNC_CASE(AV_PIX_FMT_GBRPF32, AV_PIX_FMT_GBRAPF32, rgbf32, sse4); | |
789 | 4516 | default: | |
790 | 4516 | break; | |
791 | } | ||
792 | } | ||
793 | |||
794 |
3/4✓ Branch 0 taken 1129 times.
✓ Branch 1 taken 31929 times.
✓ Branch 2 taken 1129 times.
✗ Branch 3 not taken.
|
33058 | if (EXTERNAL_AVX2_FAST(cpu_flags)) { |
795 |
23/23✓ Branch 0 taken 19 times.
✓ Branch 1 taken 13 times.
✓ Branch 2 taken 13 times.
✓ Branch 3 taken 12 times.
✓ Branch 4 taken 19 times.
✓ Branch 5 taken 13 times.
✓ Branch 6 taken 18 times.
✓ Branch 7 taken 12 times.
✓ Branch 8 taken 19 times.
✓ Branch 9 taken 13 times.
✓ Branch 10 taken 18 times.
✓ Branch 11 taken 12 times.
✓ Branch 12 taken 13 times.
✓ Branch 13 taken 12 times.
✓ Branch 14 taken 19 times.
✓ Branch 15 taken 13 times.
✓ Branch 16 taken 18 times.
✓ Branch 17 taken 12 times.
✓ Branch 18 taken 18 times.
✓ Branch 19 taken 42 times.
✓ Branch 20 taken 18 times.
✓ Branch 21 taken 12 times.
✓ Branch 22 taken 771 times.
|
1129 | switch (c->opts.src_format) { |
796 | 358 | INPUT_PLANER_RGB_YUVA_ALL_CASES(avx2) | |
797 | 771 | default: | |
798 | 771 | break; | |
799 | } | ||
800 | } | ||
801 | |||
802 |
2/2✓ Branch 0 taken 12047 times.
✓ Branch 1 taken 21011 times.
|
33058 | if(c->opts.flags & SWS_FULL_CHR_H_INT) { |
803 | |||
804 | #define YUV2ANYX_FUNC_CASE(fmt, name, opt) \ | ||
805 | case fmt: \ | ||
806 | c->yuv2anyX = ff_yuv2##name##_full_X_##opt; \ | ||
807 | break; | ||
808 | |||
809 | #define YUV2ANYX_GBRAP_CASES(opt) \ | ||
810 | YUV2ANYX_FUNC_CASE(AV_PIX_FMT_GBRP, gbrp, opt) \ | ||
811 | YUV2ANYX_FUNC_CASE(AV_PIX_FMT_GBRAP, gbrap, opt) \ | ||
812 | YUV2ANYX_FUNC_CASE(AV_PIX_FMT_GBRP9LE, gbrp9le, opt) \ | ||
813 | YUV2ANYX_FUNC_CASE(AV_PIX_FMT_GBRP10LE, gbrp10le, opt) \ | ||
814 | YUV2ANYX_FUNC_CASE(AV_PIX_FMT_GBRAP10LE, gbrap10le, opt) \ | ||
815 | YUV2ANYX_FUNC_CASE(AV_PIX_FMT_GBRP12LE, gbrp12le, opt) \ | ||
816 | YUV2ANYX_FUNC_CASE(AV_PIX_FMT_GBRAP12LE, gbrap12le, opt) \ | ||
817 | YUV2ANYX_FUNC_CASE(AV_PIX_FMT_GBRP14LE, gbrp14le, opt) \ | ||
818 | YUV2ANYX_FUNC_CASE(AV_PIX_FMT_GBRP16LE, gbrp16le, opt) \ | ||
819 | YUV2ANYX_FUNC_CASE(AV_PIX_FMT_GBRAP16LE, gbrap16le, opt) \ | ||
820 | YUV2ANYX_FUNC_CASE(AV_PIX_FMT_GBRPF32LE, gbrpf32le, opt) \ | ||
821 | YUV2ANYX_FUNC_CASE(AV_PIX_FMT_GBRAPF32LE, gbrapf32le, opt) \ | ||
822 | YUV2ANYX_FUNC_CASE(AV_PIX_FMT_GBRP9BE, gbrp9be, opt) \ | ||
823 | YUV2ANYX_FUNC_CASE(AV_PIX_FMT_GBRP10BE, gbrp10be, opt) \ | ||
824 | YUV2ANYX_FUNC_CASE(AV_PIX_FMT_GBRAP10BE, gbrap10be, opt) \ | ||
825 | YUV2ANYX_FUNC_CASE(AV_PIX_FMT_GBRP12BE, gbrp12be, opt) \ | ||
826 | YUV2ANYX_FUNC_CASE(AV_PIX_FMT_GBRAP12BE, gbrap12be, opt) \ | ||
827 | YUV2ANYX_FUNC_CASE(AV_PIX_FMT_GBRP14BE, gbrp14be, opt) \ | ||
828 | YUV2ANYX_FUNC_CASE(AV_PIX_FMT_GBRP16BE, gbrp16be, opt) \ | ||
829 | YUV2ANYX_FUNC_CASE(AV_PIX_FMT_GBRAP16BE, gbrap16be, opt) \ | ||
830 | YUV2ANYX_FUNC_CASE(AV_PIX_FMT_GBRPF32BE, gbrpf32be, opt) \ | ||
831 | YUV2ANYX_FUNC_CASE(AV_PIX_FMT_GBRAPF32BE, gbrapf32be, opt) | ||
832 | |||
833 |
2/2✓ Branch 0 taken 4806 times.
✓ Branch 1 taken 7241 times.
|
12047 | if (EXTERNAL_SSE2(cpu_flags)) { |
834 |
23/23✓ Branch 0 taken 217 times.
✓ Branch 1 taken 217 times.
✓ Branch 2 taken 217 times.
✓ Branch 3 taken 217 times.
✓ Branch 4 taken 217 times.
✓ Branch 5 taken 217 times.
✓ Branch 6 taken 217 times.
✓ Branch 7 taken 217 times.
✓ Branch 8 taken 217 times.
✓ Branch 9 taken 217 times.
✓ Branch 10 taken 246 times.
✓ Branch 11 taken 216 times.
✓ Branch 12 taken 216 times.
✓ Branch 13 taken 216 times.
✓ Branch 14 taken 216 times.
✓ Branch 15 taken 216 times.
✓ Branch 16 taken 216 times.
✓ Branch 17 taken 216 times.
✓ Branch 18 taken 216 times.
✓ Branch 19 taken 216 times.
✓ Branch 20 taken 216 times.
✓ Branch 21 taken 216 times.
✓ Branch 22 taken 14 times.
|
4806 | switch (c->opts.dst_format) { |
835 | 4792 | YUV2ANYX_GBRAP_CASES(sse2) | |
836 | 14 | default: | |
837 | 14 | break; | |
838 | } | ||
839 | } | ||
840 | |||
841 |
2/2✓ Branch 0 taken 3222 times.
✓ Branch 1 taken 8825 times.
|
12047 | if (EXTERNAL_SSE4(cpu_flags)) { |
842 |
23/23✓ Branch 0 taken 145 times.
✓ Branch 1 taken 145 times.
✓ Branch 2 taken 145 times.
✓ Branch 3 taken 145 times.
✓ Branch 4 taken 145 times.
✓ Branch 5 taken 145 times.
✓ Branch 6 taken 145 times.
✓ Branch 7 taken 145 times.
✓ Branch 8 taken 145 times.
✓ Branch 9 taken 145 times.
✓ Branch 10 taken 174 times.
✓ Branch 11 taken 144 times.
✓ Branch 12 taken 144 times.
✓ Branch 13 taken 144 times.
✓ Branch 14 taken 144 times.
✓ Branch 15 taken 144 times.
✓ Branch 16 taken 144 times.
✓ Branch 17 taken 144 times.
✓ Branch 18 taken 144 times.
✓ Branch 19 taken 144 times.
✓ Branch 20 taken 144 times.
✓ Branch 21 taken 144 times.
✓ Branch 22 taken 14 times.
|
3222 | switch (c->opts.dst_format) { |
843 | 3208 | YUV2ANYX_GBRAP_CASES(sse4) | |
844 | 14 | default: | |
845 | 14 | break; | |
846 | } | ||
847 | } | ||
848 | |||
849 |
3/4✓ Branch 0 taken 582 times.
✓ Branch 1 taken 11465 times.
✓ Branch 2 taken 582 times.
✗ Branch 3 not taken.
|
12047 | if (EXTERNAL_AVX2_FAST(cpu_flags)) { |
850 |
23/23✓ Branch 0 taken 25 times.
✓ Branch 1 taken 25 times.
✓ Branch 2 taken 25 times.
✓ Branch 3 taken 25 times.
✓ Branch 4 taken 25 times.
✓ Branch 5 taken 25 times.
✓ Branch 6 taken 25 times.
✓ Branch 7 taken 25 times.
✓ Branch 8 taken 25 times.
✓ Branch 9 taken 25 times.
✓ Branch 10 taken 54 times.
✓ Branch 11 taken 24 times.
✓ Branch 12 taken 24 times.
✓ Branch 13 taken 24 times.
✓ Branch 14 taken 24 times.
✓ Branch 15 taken 24 times.
✓ Branch 16 taken 24 times.
✓ Branch 17 taken 24 times.
✓ Branch 18 taken 24 times.
✓ Branch 19 taken 24 times.
✓ Branch 20 taken 24 times.
✓ Branch 21 taken 24 times.
✓ Branch 22 taken 14 times.
|
582 | switch (c->opts.dst_format) { |
851 | 568 | YUV2ANYX_GBRAP_CASES(avx2) | |
852 | 14 | default: | |
853 | 14 | break; | |
854 | } | ||
855 | } | ||
856 | } | ||
857 | |||
858 | #endif | ||
859 | 33058 | } | |
860 |