FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libswscale/hscale.c
Date: 2026-08-15 14:54:27
Exec Total Coverage
Lines: 157 162 96.9%
Functions: 10 10 100.0%
Branches: 43 54 79.6%

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 /// Scaler instance data
25 typedef struct FilterContext
26 {
27 uint16_t *filter;
28 int *filter_pos;
29 int filter_size;
30 int xInc;
31 } FilterContext;
32
33 /// Color conversion instance data
34 typedef struct ColorContext
35 {
36 uint32_t *pal;
37 } ColorContext;
38
39 6315880 static int lum_h_scale(SwsInternal *c, SwsFilterDescriptor *desc, int sliceY, int sliceH)
40 {
41 6315880 FilterContext *instance = desc->instance;
42 6315880 int srcW = desc->src->width;
43 6315880 int dstW = desc->dst->width;
44 6315880 int xInc = instance->xInc;
45
46 int i;
47
2/2
✓ Branch 0 taken 30530951 times.
✓ Branch 1 taken 6315880 times.
36846831 for (i = 0; i < sliceH; ++i) {
48 30530951 uint8_t ** src = desc->src->plane[0].line;
49 30530951 uint8_t ** dst = desc->dst->plane[0].line;
50 30530951 int src_pos = sliceY+i - desc->src->plane[0].sliceY;
51 30530951 int dst_pos = sliceY+i - desc->dst->plane[0].sliceY;
52
53
54
2/2
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 30530950 times.
30530951 if (c->hyscale_fast) {
55 1 c->hyscale_fast(c, (int16_t*)dst[dst_pos], dstW, src[src_pos], srcW, xInc);
56 } else {
57 30530950 c->hyScale(c, (int16_t*)dst[dst_pos], dstW, (const uint8_t *)src[src_pos], instance->filter,
58 30530950 instance->filter_pos, instance->filter_size);
59 }
60
61
2/2
✓ Branch 0 taken 3225547 times.
✓ Branch 1 taken 27305404 times.
30530951 if (c->lumConvertRange)
62 3225547 c->lumConvertRange((int16_t*)dst[dst_pos], dstW,
63 c->lumConvertRange_coeff, c->lumConvertRange_offset);
64
65 30530951 desc->dst->plane[0].sliceH += 1;
66
67
2/2
✓ Branch 0 taken 1120629 times.
✓ Branch 1 taken 29410322 times.
30530951 if (desc->alpha) {
68 1120629 src = desc->src->plane[3].line;
69 1120629 dst = desc->dst->plane[3].line;
70
71 1120629 src_pos = sliceY+i - desc->src->plane[3].sliceY;
72 1120629 dst_pos = sliceY+i - desc->dst->plane[3].sliceY;
73
74 1120629 desc->dst->plane[3].sliceH += 1;
75
76
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1120629 times.
1120629 if (c->hyscale_fast) {
77 c->hyscale_fast(c, (int16_t*)dst[dst_pos], dstW, src[src_pos], srcW, xInc);
78 } else {
79 1120629 c->hyScale(c, (int16_t*)dst[dst_pos], dstW, (const uint8_t *)src[src_pos], instance->filter,
80 1120629 instance->filter_pos, instance->filter_size);
81 }
82 }
83 }
84
85 6315880 return sliceH;
86 }
87
88 3161810 static int lum_convert(SwsInternal *c, SwsFilterDescriptor *desc, int sliceY, int sliceH)
89 {
90 3161810 int srcW = desc->src->width;
91 3161810 ColorContext * instance = desc->instance;
92 3161810 uint32_t * pal = instance->pal;
93 int i;
94
95 3161810 desc->dst->plane[0].sliceY = sliceY;
96 3161810 desc->dst->plane[0].sliceH = sliceH;
97 3161810 desc->dst->plane[3].sliceY = sliceY;
98 3161810 desc->dst->plane[3].sliceH = sliceH;
99
100
2/2
✓ Branch 0 taken 15347740 times.
✓ Branch 1 taken 3161810 times.
18509550 for (i = 0; i < sliceH; ++i) {
101 15347740 int sp0 = sliceY+i - desc->src->plane[0].sliceY;
102 15347740 int sp1 = ((sliceY+i) >> desc->src->v_chr_sub_sample) - desc->src->plane[1].sliceY;
103 15347740 const uint8_t * src[4] = { desc->src->plane[0].line[sp0],
104 15347740 desc->src->plane[1].line[sp1],
105 15347740 desc->src->plane[2].line[sp1],
106 15347740 desc->src->plane[3].line[sp0]};
107 15347740 uint8_t * dst = desc->dst->plane[0].line[i];
108
109
2/2
✓ Branch 0 taken 11644372 times.
✓ Branch 1 taken 3703368 times.
15347740 if (c->lumToYV12) {
110 11644372 c->lumToYV12(dst, src[0], src[1], src[2], srcW, pal, c->input_opaque);
111
1/2
✓ Branch 0 taken 3703368 times.
✗ Branch 1 not taken.
3703368 } else if (c->readLumPlanar) {
112 3703368 c->readLumPlanar(dst, src, srcW, c->input_rgb2yuv_table, c->input_opaque);
113 }
114
115
116
2/2
✓ Branch 0 taken 1023605 times.
✓ Branch 1 taken 14324135 times.
15347740 if (desc->alpha) {
117 1023605 dst = desc->dst->plane[3].line[i];
118
2/2
✓ Branch 0 taken 754245 times.
✓ Branch 1 taken 269360 times.
1023605 if (c->alpToYV12) {
119 754245 c->alpToYV12(dst, src[3], src[1], src[2], srcW, pal, c->input_opaque);
120
1/2
✓ Branch 0 taken 269360 times.
✗ Branch 1 not taken.
269360 } else if (c->readAlpPlanar) {
121 269360 c->readAlpPlanar(dst, src, srcW, NULL, c->input_opaque);
122 }
123 }
124 }
125
126 3161810 return sliceH;
127 }
128
129 40383 int ff_init_desc_fmt_convert(SwsFilterDescriptor *desc, SwsSlice * src, SwsSlice *dst, uint32_t *pal)
130 {
131 40383 ColorContext * li = av_malloc(sizeof(ColorContext));
132
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 40383 times.
40383 if (!li)
133 return AVERROR(ENOMEM);
134 40383 li->pal = pal;
135 40383 desc->instance = li;
136
137
3/4
✓ Branch 1 taken 9584 times.
✓ Branch 2 taken 30799 times.
✓ Branch 4 taken 9584 times.
✗ Branch 5 not taken.
40383 desc->alpha = isALPHA(src->fmt) && isALPHA(dst->fmt);
138 40383 desc->src =src;
139 40383 desc->dst = dst;
140 40383 desc->process = &lum_convert;
141
142 40383 return 0;
143 }
144
145
146 58937 int ff_init_desc_hscale(SwsFilterDescriptor *desc, SwsSlice *src, SwsSlice *dst, uint16_t *filter, int * filter_pos, int filter_size, int xInc)
147 {
148 58937 FilterContext *li = av_malloc(sizeof(FilterContext));
149
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 58937 times.
58937 if (!li)
150 return AVERROR(ENOMEM);
151
152 58937 li->filter = filter;
153 58937 li->filter_pos = filter_pos;
154 58937 li->filter_size = filter_size;
155 58937 li->xInc = xInc;
156
157 58937 desc->instance = li;
158
159
3/4
✓ Branch 1 taken 10602 times.
✓ Branch 2 taken 48335 times.
✓ Branch 4 taken 10602 times.
✗ Branch 5 not taken.
58937 desc->alpha = isALPHA(src->fmt) && isALPHA(dst->fmt);
160 58937 desc->src = src;
161 58937 desc->dst = dst;
162
163 58937 desc->process = &lum_h_scale;
164
165 58937 return 0;
166 }
167
168 6482242 static int chr_h_scale(SwsInternal *c, SwsFilterDescriptor *desc, int sliceY, int sliceH)
169 {
170 6482242 FilterContext *instance = desc->instance;
171 6482242 int srcW = AV_CEIL_RSHIFT(desc->src->width, desc->src->h_chr_sub_sample);
172 6482242 int dstW = AV_CEIL_RSHIFT(desc->dst->width, desc->dst->h_chr_sub_sample);
173 6482242 int xInc = instance->xInc;
174
175 6482242 uint8_t ** src1 = desc->src->plane[1].line;
176 6482242 uint8_t ** dst1 = desc->dst->plane[1].line;
177 6482242 uint8_t ** src2 = desc->src->plane[2].line;
178 6482242 uint8_t ** dst2 = desc->dst->plane[2].line;
179
180 6482242 int src_pos1 = sliceY - desc->src->plane[1].sliceY;
181 6482242 int dst_pos1 = sliceY - desc->dst->plane[1].sliceY;
182
183 6482242 int src_pos2 = sliceY - desc->src->plane[2].sliceY;
184 6482242 int dst_pos2 = sliceY - desc->dst->plane[2].sliceY;
185
186 int i;
187
2/2
✓ Branch 0 taken 23544244 times.
✓ Branch 1 taken 6482242 times.
30026486 for (i = 0; i < sliceH; ++i) {
188
2/2
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 23544243 times.
23544244 if (c->hcscale_fast) {
189 1 c->hcscale_fast(c, (uint16_t*)dst1[dst_pos1+i], (uint16_t*)dst2[dst_pos2+i], dstW, src1[src_pos1+i], src2[src_pos2+i], srcW, xInc);
190 } else {
191 23544243 c->hcScale(c, (uint16_t*)dst1[dst_pos1+i], dstW, src1[src_pos1+i], instance->filter, instance->filter_pos, instance->filter_size);
192 23544243 c->hcScale(c, (uint16_t*)dst2[dst_pos2+i], dstW, src2[src_pos2+i], instance->filter, instance->filter_pos, instance->filter_size);
193 }
194
195
2/2
✓ Branch 0 taken 994750 times.
✓ Branch 1 taken 22549494 times.
23544244 if (c->chrConvertRange)
196 994750 c->chrConvertRange((uint16_t*)dst1[dst_pos1+i], (uint16_t*)dst2[dst_pos2+i], dstW,
197 c->chrConvertRange_coeff, c->chrConvertRange_offset);
198
199 23544244 desc->dst->plane[1].sliceH += 1;
200 23544244 desc->dst->plane[2].sliceH += 1;
201 }
202 6482242 return sliceH;
203 }
204
205 4072453 static int chr_convert(SwsInternal *c, SwsFilterDescriptor *desc, int sliceY, int sliceH)
206 {
207 4072453 int srcW = AV_CEIL_RSHIFT(desc->src->width, desc->src->h_chr_sub_sample);
208 4072453 ColorContext * instance = desc->instance;
209 4072453 uint32_t * pal = instance->pal;
210
211 4072453 int sp0 = (sliceY - (desc->src->plane[0].sliceY >> desc->src->v_chr_sub_sample)) << desc->src->v_chr_sub_sample;
212 4072453 int sp1 = sliceY - desc->src->plane[1].sliceY;
213
214 int i;
215
216 4072453 desc->dst->plane[1].sliceY = sliceY;
217 4072453 desc->dst->plane[1].sliceH = sliceH;
218 4072453 desc->dst->plane[2].sliceY = sliceY;
219 4072453 desc->dst->plane[2].sliceH = sliceH;
220
221
2/2
✓ Branch 0 taken 15350491 times.
✓ Branch 1 taken 4072453 times.
19422944 for (i = 0; i < sliceH; ++i) {
222 15350491 const uint8_t * src[4] = { desc->src->plane[0].line[sp0+i],
223 15350491 desc->src->plane[1].line[sp1+i],
224 15350491 desc->src->plane[2].line[sp1+i],
225 15350491 desc->src->plane[3].line[sp0+i]};
226
227 15350491 uint8_t * dst1 = desc->dst->plane[1].line[i];
228 15350491 uint8_t * dst2 = desc->dst->plane[2].line[i];
229
2/2
✓ Branch 0 taken 12011989 times.
✓ Branch 1 taken 3338502 times.
15350491 if (c->chrToYV12) {
230 12011989 c->chrToYV12(dst1, dst2, src[0], src[1], src[2], srcW, pal, c->input_opaque);
231
1/2
✓ Branch 0 taken 3338502 times.
✗ Branch 1 not taken.
3338502 } else if (c->readChrPlanar) {
232 3338502 c->readChrPlanar(dst1, dst2, src, srcW, c->input_rgb2yuv_table, c->input_opaque);
233 }
234 }
235 4072453 return sliceH;
236 }
237
238 40211 int ff_init_desc_cfmt_convert(SwsFilterDescriptor *desc, SwsSlice * src, SwsSlice *dst, uint32_t *pal)
239 {
240 40211 ColorContext * li = av_malloc(sizeof(ColorContext));
241
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 40211 times.
40211 if (!li)
242 return AVERROR(ENOMEM);
243 40211 li->pal = pal;
244 40211 desc->instance = li;
245
246 40211 desc->src =src;
247 40211 desc->dst = dst;
248 40211 desc->process = &chr_convert;
249
250 40211 return 0;
251 }
252
253 52007 int ff_init_desc_chscale(SwsFilterDescriptor *desc, SwsSlice *src, SwsSlice *dst, uint16_t *filter, int * filter_pos, int filter_size, int xInc)
254 {
255 52007 FilterContext *li = av_malloc(sizeof(FilterContext));
256
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 52007 times.
52007 if (!li)
257 return AVERROR(ENOMEM);
258
259 52007 li->filter = filter;
260 52007 li->filter_pos = filter_pos;
261 52007 li->filter_size = filter_size;
262 52007 li->xInc = xInc;
263
264 52007 desc->instance = li;
265
266
3/4
✓ Branch 1 taken 9612 times.
✓ Branch 2 taken 42395 times.
✓ Branch 4 taken 9612 times.
✗ Branch 5 not taken.
52007 desc->alpha = isALPHA(src->fmt) && isALPHA(dst->fmt);
267 52007 desc->src = src;
268 52007 desc->dst = dst;
269
270 52007 desc->process = &chr_h_scale;
271
272 52007 return 0;
273 }
274
275 507976 static int no_chr_scale(SwsInternal *c, SwsFilterDescriptor *desc, int sliceY, int sliceH)
276 {
277 507976 desc->dst->plane[1].sliceY = sliceY + sliceH - desc->dst->plane[1].available_lines;
278 507976 desc->dst->plane[1].sliceH = desc->dst->plane[1].available_lines;
279 507976 desc->dst->plane[2].sliceY = sliceY + sliceH - desc->dst->plane[2].available_lines;
280 507976 desc->dst->plane[2].sliceH = desc->dst->plane[2].available_lines;
281 507976 return 0;
282 }
283
284 6930 int ff_init_desc_no_chr(SwsFilterDescriptor *desc, SwsSlice * src, SwsSlice *dst)
285 {
286 6930 desc->src = src;
287 6930 desc->dst = dst;
288 6930 desc->alpha = 0;
289 6930 desc->instance = NULL;
290 6930 desc->process = &no_chr_scale;
291 6930 return 0;
292 }
293