FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libswscale/slice.c
Date: 2026-01-08 00:53:43
Exec Total Coverage
Lines: 212 227 93.4%
Functions: 10 10 100.0%
Branches: 126 154 81.8%

Line Branch Exec Source
1 /*
2 * Copyright (C) 2015 Pedro Arthur <bygrandao@gmail.com>
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/mem.h"
22 #include "swscale_internal.h"
23
24 102716 static void free_lines(SwsSlice *s)
25 {
26 int i;
27
2/2
✓ Branch 0 taken 205432 times.
✓ Branch 1 taken 102716 times.
308148 for (i = 0; i < 2; ++i) {
28 205432 int n = s->plane[i].available_lines;
29 int j;
30
2/2
✓ Branch 0 taken 1130367 times.
✓ Branch 1 taken 205432 times.
1335799 for (j = 0; j < n; ++j) {
31 1130367 av_freep(&s->plane[i].line[j]);
32
2/2
✓ Branch 0 taken 658497 times.
✓ Branch 1 taken 471870 times.
1130367 if (s->is_ring)
33 658497 s->plane[i].line[j+n] = NULL;
34 }
35 }
36
37
2/2
✓ Branch 0 taken 410864 times.
✓ Branch 1 taken 102716 times.
513580 for (i = 0; i < 4; ++i)
38
2/2
✓ Branch 0 taken 233892 times.
✓ Branch 1 taken 176972 times.
410864 memset(s->plane[i].line, 0, sizeof(uint8_t*) * s->plane[i].available_lines * (s->is_ring ? 3 : 1));
39 102716 s->should_free_lines = 0;
40 102716 }
41
42 /*
43 slice lines contains extra bytes for vectorial code thus @size
44 is the allocated memory size and @width is the number of pixels
45 */
46 102716 static int alloc_lines(SwsSlice *s, int size, int width)
47 {
48 int i;
49 102716 int idx[2] = {3, 2};
50
51 102716 s->should_free_lines = 1;
52 102716 s->width = width;
53
54
2/2
✓ Branch 0 taken 205432 times.
✓ Branch 1 taken 102716 times.
308148 for (i = 0; i < 2; ++i) {
55 205432 int n = s->plane[i].available_lines;
56 int j;
57 205432 int ii = idx[i];
58
59
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 205432 times.
205432 av_assert0(n == s->plane[ii].available_lines);
60
2/2
✓ Branch 0 taken 1130367 times.
✓ Branch 1 taken 205432 times.
1335799 for (j = 0; j < n; ++j) {
61 // chroma plane line U and V are expected to be contiguous in memory
62 // by mmx vertical scaler code
63 1130367 s->plane[i].line[j] = av_mallocz(size * 2 + 32);
64
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1130367 times.
1130367 if (!s->plane[i].line[j]) {
65 free_lines(s);
66 return AVERROR(ENOMEM);
67 }
68 1130367 s->plane[ii].line[j] = s->plane[i].line[j] + size + 16;
69
2/2
✓ Branch 0 taken 658497 times.
✓ Branch 1 taken 471870 times.
1130367 if (s->is_ring) {
70 658497 s->plane[i].line[j+n] = s->plane[i].line[j];
71 658497 s->plane[ii].line[j+n] = s->plane[ii].line[j];
72 }
73 }
74 }
75
76 102716 return 0;
77 }
78
79 219662 static int alloc_slice(SwsSlice *s, enum AVPixelFormat fmt, int lumLines, int chrLines, int h_sub_sample, int v_sub_sample, int ring)
80 {
81 int i;
82 219662 int size[4] = { lumLines,
83 chrLines,
84 chrLines,
85 lumLines };
86
87 219662 s->h_chr_sub_sample = h_sub_sample;
88 219662 s->v_chr_sub_sample = v_sub_sample;
89 219662 s->fmt = fmt;
90 219662 s->is_ring = ring;
91 219662 s->should_free_lines = 0;
92
93
2/2
✓ Branch 0 taken 878648 times.
✓ Branch 1 taken 219662 times.
1098310 for (i = 0; i < 4; ++i) {
94
2/2
✓ Branch 0 taken 644756 times.
✓ Branch 1 taken 233892 times.
878648 int n = size[i] * ( ring == 0 ? 1 : 3);
95 878648 s->plane[i].line = av_calloc(n, sizeof(*s->plane[i].line));
96
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 878648 times.
878648 if (!s->plane[i].line)
97 return AVERROR(ENOMEM);
98
99
2/2
✓ Branch 0 taken 233892 times.
✓ Branch 1 taken 644756 times.
878648 s->plane[i].tmp = ring ? s->plane[i].line + size[i] * 2 : NULL;
100 878648 s->plane[i].available_lines = size[i];
101 878648 s->plane[i].sliceY = 0;
102 878648 s->plane[i].sliceH = 0;
103 }
104 219662 return 0;
105 }
106
107 219662 static void free_slice(SwsSlice *s)
108 {
109 int i;
110
1/2
✓ Branch 0 taken 219662 times.
✗ Branch 1 not taken.
219662 if (s) {
111
2/2
✓ Branch 0 taken 102716 times.
✓ Branch 1 taken 116946 times.
219662 if (s->should_free_lines)
112 102716 free_lines(s);
113
2/2
✓ Branch 0 taken 878648 times.
✓ Branch 1 taken 219662 times.
1098310 for (i = 0; i < 4; ++i) {
114 878648 av_freep(&s->plane[i].line);
115 878648 s->plane[i].tmp = NULL;
116 }
117 }
118 219662 }
119
120 33669507 int ff_rotate_slice(SwsSlice *s, int lum, int chr)
121 {
122 int i;
123
2/2
✓ Branch 0 taken 33665157 times.
✓ Branch 1 taken 4350 times.
33669507 if (lum) {
124
2/2
✓ Branch 0 taken 67330314 times.
✓ Branch 1 taken 33665157 times.
100995471 for (i = 0; i < 4; i+=3) {
125 67330314 int n = s->plane[i].available_lines;
126 67330314 int l = lum - s->plane[i].sliceY;
127
128
2/2
✓ Branch 0 taken 10242324 times.
✓ Branch 1 taken 57087990 times.
67330314 if (l >= n * 2) {
129 10242324 s->plane[i].sliceY += n;
130 10242324 s->plane[i].sliceH -= n;
131 }
132 }
133 }
134
2/2
✓ Branch 0 taken 33655230 times.
✓ Branch 1 taken 14277 times.
33669507 if (chr) {
135
2/2
✓ Branch 0 taken 67310460 times.
✓ Branch 1 taken 33655230 times.
100965690 for (i = 1; i < 3; ++i) {
136 67310460 int n = s->plane[i].available_lines;
137 67310460 int l = chr - s->plane[i].sliceY;
138
139
2/2
✓ Branch 0 taken 6883294 times.
✓ Branch 1 taken 60427166 times.
67310460 if (l >= n * 2) {
140 6883294 s->plane[i].sliceY += n;
141 6883294 s->plane[i].sliceH -= n;
142 }
143 }
144 }
145 33669507 return 0;
146 }
147
148 1220708 int ff_init_slice_from_src(SwsSlice * s, uint8_t *const src[4], const int stride[4],
149 int srcW, int lumY, int lumH, int chrY, int chrH, int relative)
150 {
151 1220708 int i = 0;
152
153 1220708 const int start[4] = {lumY,
154 chrY,
155 chrY,
156 lumY};
157
158 1220708 const int end[4] = {lumY +lumH,
159 1220708 chrY + chrH,
160 1220708 chrY + chrH,
161 1220708 lumY + lumH};
162
163 1220708 s->width = srcW;
164
165
4/4
✓ Branch 0 taken 4265239 times.
✓ Branch 1 taken 197619 times.
✓ Branch 2 taken 3242150 times.
✓ Branch 3 taken 1023089 times.
4462858 for (i = 0; i < 4 && src[i] != NULL; ++i) {
166
2/2
✓ Branch 0 taken 258711 times.
✓ Branch 1 taken 2983439 times.
3242150 uint8_t *const src_i = src[i] + (relative ? 0 : start[i]) * stride[i];
167 int j;
168 3242150 int first = s->plane[i].sliceY;
169 3242150 int n = s->plane[i].available_lines;
170 3242150 int lines = end[i] - start[i];
171 3242150 int tot_lines = end[i] - first;
172
173
4/4
✓ Branch 0 taken 3242141 times.
✓ Branch 1 taken 9 times.
✓ Branch 2 taken 3242066 times.
✓ Branch 3 taken 75 times.
3242150 if (start[i] >= first && n >= tot_lines) {
174 3242066 s->plane[i].sliceH = FFMAX(tot_lines, s->plane[i].sliceH);
175
2/2
✓ Branch 0 taken 526531459 times.
✓ Branch 1 taken 3242066 times.
529773525 for (j = 0; j < lines; j+= 1)
176 526531459 s->plane[i].line[start[i] - first + j] = src_i + j * stride[i];
177 } else {
178 84 s->plane[i].sliceY = start[i];
179 84 lines = lines > n ? n : lines;
180 84 s->plane[i].sliceH = lines;
181
2/2
✓ Branch 0 taken 7880 times.
✓ Branch 1 taken 84 times.
7964 for (j = 0; j < lines; j+= 1)
182 7880 s->plane[i].line[j] = src_i + j * stride[i];
183 }
184
185 }
186
187 1220708 return 0;
188 }
189
190 58473 static void fill_ones(SwsSlice *s, int n, int bpc)
191 {
192 int i, j, k, size, end;
193
194
2/2
✓ Branch 0 taken 233892 times.
✓ Branch 1 taken 58473 times.
292365 for (i = 0; i < 4; ++i) {
195 233892 size = s->plane[i].available_lines;
196
2/2
✓ Branch 0 taken 1316994 times.
✓ Branch 1 taken 233892 times.
1550886 for (j = 0; j < size; ++j) {
197
2/2
✓ Branch 0 taken 225052 times.
✓ Branch 1 taken 1091942 times.
1316994 if (bpc >= 16) {
198 225052 end = (n>>1) + 1;
199
2/2
✓ Branch 0 taken 82133052 times.
✓ Branch 1 taken 225052 times.
82358104 for (k = 0; k < end; ++k)
200 82133052 ((int32_t*)(s->plane[i].line[j]))[k] = 1<<18;
201 } else {
202 1091942 end = n + 1;
203
2/2
✓ Branch 0 taken 333833334 times.
✓ Branch 1 taken 1091942 times.
334925276 for (k = 0; k < end; ++k)
204 333833334 ((int16_t*)(s->plane[i].line[j]))[k] = 1<<14;
205 }
206 }
207 }
208 58473 }
209
210 /*
211 Calculates the minimum ring buffer size, it should be able to store vFilterSize
212 more n lines where n is the max difference between each adjacent slice which
213 outputs a line.
214 The n lines are needed only when there is not enough src lines to output a single
215 dst line, then we should buffer these lines to process them on the next call to scale.
216 */
217 58473 static void get_min_buffer_size(SwsInternal *c, int *out_lum_size, int *out_chr_size)
218 {
219 int lumY;
220 58473 int dstH = c->opts.dst_h;
221 58473 int chrDstH = c->chrDstH;
222 58473 int *lumFilterPos = c->vLumFilterPos;
223 58473 int *chrFilterPos = c->vChrFilterPos;
224 58473 int lumFilterSize = c->vLumFilterSize;
225 58473 int chrFilterSize = c->vChrFilterSize;
226 58473 int chrSubSample = c->chrSrcVSubSample;
227
228 58473 *out_lum_size = lumFilterSize;
229 58473 *out_chr_size = chrFilterSize;
230
231
2/2
✓ Branch 0 taken 12997829 times.
✓ Branch 1 taken 58473 times.
13056302 for (lumY = 0; lumY < dstH; lumY++) {
232 12997829 int chrY = (int64_t)lumY * chrDstH / dstH;
233 12997829 int nextSlice = FFMAX(lumFilterPos[lumY] + lumFilterSize - 1,
234 ((chrFilterPos[chrY] + chrFilterSize - 1)
235 << chrSubSample));
236
237 12997829 nextSlice >>= chrSubSample;
238 12997829 nextSlice <<= chrSubSample;
239 12997829 (*out_lum_size) = FFMAX((*out_lum_size), nextSlice - lumFilterPos[lumY]);
240 12997829 (*out_chr_size) = FFMAX((*out_chr_size), (nextSlice >> chrSubSample) - chrFilterPos[chrY]);
241 }
242 58473 }
243
244
245
246 58473 int ff_init_filters(SwsInternal * c)
247 {
248 int i;
249 int index;
250 int num_ydesc;
251 int num_cdesc;
252
3/4
✓ Branch 1 taken 32935 times.
✓ Branch 2 taken 25538 times.
✓ Branch 4 taken 32935 times.
✗ Branch 5 not taken.
58473 int num_vdesc = isPlanarYUV(c->opts.dst_format) && !isGray(c->opts.dst_format) ? 2 : 1;
253
6/8
✓ Branch 0 taken 28303 times.
✓ Branch 1 taken 30170 times.
✓ Branch 2 taken 17086 times.
✓ Branch 3 taken 11217 times.
✓ Branch 4 taken 17086 times.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
✓ Branch 7 taken 17086 times.
58473 int need_lum_conv = c->lumToYV12 || c->readLumPlanar || c->alpToYV12 || c->readAlpPlanar;
254
4/4
✓ Branch 0 taken 28851 times.
✓ Branch 1 taken 29622 times.
✓ Branch 2 taken 10768 times.
✓ Branch 3 taken 18083 times.
58473 int need_chr_conv = c->chrToYV12 || c->readChrPlanar;
255 58473 int need_gamma = c->is_internal_gamma;
256 int srcIdx, dstIdx;
257 58473 int dst_stride = FFALIGN(c->opts.dst_w * sizeof(int16_t) + 66, 16);
258
259
2/2
✓ Branch 1 taken 1396 times.
✓ Branch 2 taken 57077 times.
58473 uint32_t * pal = usePal(c->opts.src_format) ? c->pal_yuv : (uint32_t*)c->input_rgb2yuv_table;
260 58473 int res = 0;
261
262 int lumBufSize;
263 int chrBufSize;
264
265 58473 get_min_buffer_size(c, &lumBufSize, &chrBufSize);
266 58473 lumBufSize = FFMAX(lumBufSize, c->vLumFilterSize + MAX_LINES_AHEAD);
267 58473 chrBufSize = FFMAX(chrBufSize, c->vChrFilterSize + MAX_LINES_AHEAD);
268
269
2/2
✓ Branch 0 taken 8765 times.
✓ Branch 1 taken 49708 times.
58473 if (c->dstBpc == 16)
270 8765 dst_stride <<= 1;
271
272
2/2
✓ Branch 0 taken 1372 times.
✓ Branch 1 taken 57101 times.
58473 if (c->dstBpc == 32)
273 1372 dst_stride <<= 2;
274
275
2/2
✓ Branch 0 taken 41387 times.
✓ Branch 1 taken 17086 times.
58473 num_ydesc = need_lum_conv ? 2 : 1;
276
2/2
✓ Branch 0 taken 40390 times.
✓ Branch 1 taken 18083 times.
58473 num_cdesc = need_chr_conv ? 2 : 1;
277
278 58473 c->numSlice = FFMAX(num_ydesc, num_cdesc) + 2;
279
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 58473 times.
58473 c->numDesc = num_ydesc + num_cdesc + num_vdesc + (need_gamma ? 2 : 0);
280 58473 c->descIndex[0] = num_ydesc + (need_gamma ? 1 : 0);
281 58473 c->descIndex[1] = num_ydesc + num_cdesc + (need_gamma ? 1 : 0);
282
283
2/2
✓ Branch 1 taken 411 times.
✓ Branch 2 taken 58062 times.
58473 if (isFloat16(c->opts.src_format)) {
284 411 c->h2f_tables = av_malloc(sizeof(*c->h2f_tables));
285
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 411 times.
411 if (!c->h2f_tables)
286 return AVERROR(ENOMEM);
287 411 ff_init_half2float_tables(c->h2f_tables);
288 411 c->input_opaque = c->h2f_tables;
289 }
290
291 58473 c->desc = av_calloc(c->numDesc, sizeof(*c->desc));
292
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 58473 times.
58473 if (!c->desc)
293 return AVERROR(ENOMEM);
294 58473 c->slice = av_calloc(c->numSlice, sizeof(*c->slice));
295
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 58473 times.
58473 if (!c->slice) {
296 res = AVERROR(ENOMEM);
297 goto cleanup;
298 }
299
300 58473 res = alloc_slice(&c->slice[0], c->opts.src_format, c->opts.src_h, c->chrSrcH, c->chrSrcHSubSample, c->chrSrcVSubSample, 0);
301
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 58473 times.
58473 if (res < 0) goto cleanup;
302
2/2
✓ Branch 0 taken 44243 times.
✓ Branch 1 taken 58473 times.
102716 for (i = 1; i < c->numSlice-2; ++i) {
303 44243 res = alloc_slice(&c->slice[i], c->opts.src_format, lumBufSize, chrBufSize, c->chrSrcHSubSample, c->chrSrcVSubSample, 0);
304
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 44243 times.
44243 if (res < 0) goto cleanup;
305 44243 res = alloc_lines(&c->slice[i], FFALIGN(c->opts.src_w*2+78, 16), c->opts.src_w);
306
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 44243 times.
44243 if (res < 0) goto cleanup;
307 }
308 // horizontal scaler output
309 58473 res = alloc_slice(&c->slice[i], c->opts.src_format, lumBufSize, chrBufSize, c->chrDstHSubSample, c->chrDstVSubSample, 1);
310
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 58473 times.
58473 if (res < 0) goto cleanup;
311 58473 res = alloc_lines(&c->slice[i], dst_stride, c->opts.dst_w);
312
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 58473 times.
58473 if (res < 0) goto cleanup;
313
314 58473 fill_ones(&c->slice[i], dst_stride>>1, c->dstBpc);
315
316 // vertical scaler output
317 58473 ++i;
318 58473 res = alloc_slice(&c->slice[i], c->opts.dst_format, c->opts.dst_h, c->chrDstH, c->chrDstHSubSample, c->chrDstVSubSample, 0);
319
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 58473 times.
58473 if (res < 0) goto cleanup;
320
321 58473 index = 0;
322 58473 srcIdx = 0;
323 58473 dstIdx = 1;
324
325
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 58473 times.
58473 if (need_gamma) {
326 res = ff_init_gamma_convert(c->desc + index, c->slice + srcIdx, c->inv_gamma);
327 if (res < 0) goto cleanup;
328 ++index;
329 }
330
331
2/2
✓ Branch 0 taken 41387 times.
✓ Branch 1 taken 17086 times.
58473 if (need_lum_conv) {
332 41387 res = ff_init_desc_fmt_convert(&c->desc[index], &c->slice[srcIdx], &c->slice[dstIdx], pal);
333
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 41387 times.
41387 if (res < 0) goto cleanup;
334 41387 c->desc[index].alpha = c->needAlpha;
335 41387 ++index;
336 41387 srcIdx = dstIdx;
337 }
338
339
340 58473 dstIdx = FFMAX(num_ydesc, num_cdesc);
341 58473 res = ff_init_desc_hscale(&c->desc[index], &c->slice[srcIdx], &c->slice[dstIdx], c->hLumFilter, c->hLumFilterPos, c->hLumFilterSize, c->lumXInc);
342
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 58473 times.
58473 if (res < 0) goto cleanup;
343 58473 c->desc[index].alpha = c->needAlpha;
344
345
346 58473 ++index;
347 {
348 58473 srcIdx = 0;
349 58473 dstIdx = 1;
350
2/2
✓ Branch 0 taken 40390 times.
✓ Branch 1 taken 18083 times.
58473 if (need_chr_conv) {
351 40390 res = ff_init_desc_cfmt_convert(&c->desc[index], &c->slice[srcIdx], &c->slice[dstIdx], pal);
352
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 40390 times.
40390 if (res < 0) goto cleanup;
353 40390 ++index;
354 40390 srcIdx = dstIdx;
355 }
356
357 58473 dstIdx = FFMAX(num_ydesc, num_cdesc);
358
2/2
✓ Branch 0 taken 49538 times.
✓ Branch 1 taken 8935 times.
58473 if (c->needs_hcscale)
359 49538 res = ff_init_desc_chscale(&c->desc[index], &c->slice[srcIdx], &c->slice[dstIdx], c->hChrFilter, c->hChrFilterPos, c->hChrFilterSize, c->chrXInc);
360 else
361 8935 res = ff_init_desc_no_chr(&c->desc[index], &c->slice[srcIdx], &c->slice[dstIdx]);
362
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 58473 times.
58473 if (res < 0) goto cleanup;
363 }
364
365 58473 ++index;
366 {
367 58473 srcIdx = c->numSlice - 2;
368 58473 dstIdx = c->numSlice - 1;
369 58473 res = ff_init_vscale(c, c->desc + index, c->slice + srcIdx, c->slice + dstIdx);
370
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 58473 times.
58473 if (res < 0) goto cleanup;
371 }
372
373 58473 ++index;
374
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 58473 times.
58473 if (need_gamma) {
375 res = ff_init_gamma_convert(c->desc + index, c->slice + dstIdx, c->gamma);
376 if (res < 0) goto cleanup;
377 }
378
379 58473 return 0;
380
381 cleanup:
382 ff_free_filters(c);
383 return res;
384 }
385
386 87732 int ff_free_filters(SwsInternal *c)
387 {
388 int i;
389
2/2
✓ Branch 0 taken 58473 times.
✓ Branch 1 taken 29259 times.
87732 if (c->desc) {
390
2/2
✓ Branch 0 taken 290131 times.
✓ Branch 1 taken 58473 times.
348604 for (i = 0; i < c->numDesc; ++i)
391 290131 av_freep(&c->desc[i].instance);
392 58473 av_freep(&c->desc);
393 }
394
395
2/2
✓ Branch 0 taken 58473 times.
✓ Branch 1 taken 29259 times.
87732 if (c->slice) {
396
2/2
✓ Branch 0 taken 219662 times.
✓ Branch 1 taken 58473 times.
278135 for (i = 0; i < c->numSlice; ++i)
397 219662 free_slice(&c->slice[i]);
398 58473 av_freep(&c->slice);
399 }
400 87732 av_freep(&c->h2f_tables);
401 87732 return 0;
402 }
403