FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavfilter/vf_mergeplanes.c
Date: 2024-04-25 05:10:44
Exec Total Coverage
Lines: 113 140 80.7%
Functions: 6 6 100.0%
Branches: 46 72 63.9%

Line Branch Exec Source
1 /*
2 * Copyright (c) 2013 Paul B Mahol
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/avassert.h"
22 #include "libavutil/avstring.h"
23 #include "libavutil/imgutils.h"
24 #include "libavutil/opt.h"
25 #include "libavutil/pixdesc.h"
26 #include "avfilter.h"
27 #include "formats.h"
28 #include "internal.h"
29 #include "framesync.h"
30 #include "video.h"
31
32 typedef struct Mapping {
33 int input;
34 int plane;
35 } Mapping;
36
37 typedef struct InputParam {
38 int depth[4];
39 int nb_planes;
40 int planewidth[4];
41 int planeheight[4];
42 } InputParam;
43
44 typedef struct MergePlanesContext {
45 const AVClass *class;
46 int64_t mapping;
47 const enum AVPixelFormat out_fmt;
48 int nb_inputs;
49 int nb_planes;
50 int planewidth[4];
51 int planeheight[4];
52 Mapping map[4];
53 const AVPixFmtDescriptor *indesc[4];
54 const AVPixFmtDescriptor *outdesc;
55
56 FFFrameSync fs;
57 } MergePlanesContext;
58
59 #define OFFSET(x) offsetof(MergePlanesContext, x)
60 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
61 static const AVOption mergeplanes_options[] = {
62 { "mapping", "set input to output plane mapping", OFFSET(mapping), AV_OPT_TYPE_INT, {.i64=-1}, -1, 0x33333333, FLAGS|AV_OPT_FLAG_DEPRECATED },
63 { "format", "set output pixel format", OFFSET(out_fmt), AV_OPT_TYPE_PIXEL_FMT, {.i64=AV_PIX_FMT_YUVA444P}, 0, INT_MAX, .flags=FLAGS },
64 { "map0s", "set 1st input to output stream mapping", OFFSET(map[0].input), AV_OPT_TYPE_INT, {.i64=0}, 0, 3, FLAGS },
65 { "map0p", "set 1st input to output plane mapping", OFFSET(map[0].plane), AV_OPT_TYPE_INT, {.i64=0}, 0, 3, FLAGS },
66 { "map1s", "set 2nd input to output stream mapping", OFFSET(map[1].input), AV_OPT_TYPE_INT, {.i64=0}, 0, 3, FLAGS },
67 { "map1p", "set 2nd input to output plane mapping", OFFSET(map[1].plane), AV_OPT_TYPE_INT, {.i64=0}, 0, 3, FLAGS },
68 { "map2s", "set 3rd input to output stream mapping", OFFSET(map[2].input), AV_OPT_TYPE_INT, {.i64=0}, 0, 3, FLAGS },
69 { "map2p", "set 3rd input to output plane mapping", OFFSET(map[2].plane), AV_OPT_TYPE_INT, {.i64=0}, 0, 3, FLAGS },
70 { "map3s", "set 4th input to output stream mapping", OFFSET(map[3].input), AV_OPT_TYPE_INT, {.i64=0}, 0, 3, FLAGS },
71 { "map3p", "set 4th input to output plane mapping", OFFSET(map[3].plane), AV_OPT_TYPE_INT, {.i64=0}, 0, 3, FLAGS },
72 { NULL }
73 };
74
75 AVFILTER_DEFINE_CLASS(mergeplanes);
76
77 2 static av_cold int init(AVFilterContext *ctx)
78 {
79 2 MergePlanesContext *s = ctx->priv;
80 2 int64_t m = s->mapping;
81 int i, ret;
82
83 2 s->outdesc = av_pix_fmt_desc_get(s->out_fmt);
84
1/2
✓ Branch 0 taken 2 times.
✗ Branch 1 not taken.
2 if (!(s->outdesc->flags & AV_PIX_FMT_FLAG_PLANAR) ||
85
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2 times.
2 s->outdesc->nb_components < 2) {
86 av_log(ctx, AV_LOG_ERROR, "Only planar formats with more than one component are supported.\n");
87 return AVERROR(EINVAL);
88 }
89 2 s->nb_planes = av_pix_fmt_count_planes(s->out_fmt);
90
91
2/2
✓ Branch 0 taken 6 times.
✓ Branch 1 taken 2 times.
8 for (i = s->nb_planes - 1; i >= 0; i--) {
92
2/4
✓ Branch 0 taken 6 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 6 times.
✗ Branch 3 not taken.
6 if (m >= 0 && m <= 0x33333333) {
93 6 s->map[i].plane = m & 0xf;
94 6 m >>= 4;
95 6 s->map[i].input = m & 0xf;
96 6 m >>= 4;
97 }
98
99
2/4
✓ Branch 0 taken 6 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 6 times.
6 if (s->map[i].plane > 3 || s->map[i].input > 3) {
100 av_log(ctx, AV_LOG_ERROR, "Mapping with out of range input and/or plane number.\n");
101 return AVERROR(EINVAL);
102 }
103
104 6 s->nb_inputs = FFMAX(s->nb_inputs, s->map[i].input + 1);
105 }
106
107
2/4
✓ Branch 0 taken 2 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 2 times.
2 av_assert0(s->nb_inputs && s->nb_inputs <= 4);
108
109
2/2
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 2 times.
4 for (i = 0; i < s->nb_inputs; i++) {
110 2 AVFilterPad pad = { 0 };
111
112 2 pad.type = AVMEDIA_TYPE_VIDEO;
113 2 pad.name = av_asprintf("in%d", i);
114
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2 times.
2 if (!pad.name)
115 return AVERROR(ENOMEM);
116
117
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 2 times.
2 if ((ret = ff_append_inpad_free_name(ctx, &pad)) < 0)
118 return ret;
119 }
120
121 2 return 0;
122 }
123
124 1 static int query_formats(AVFilterContext *ctx)
125 {
126 1 MergePlanesContext *s = ctx->priv;
127 1 AVFilterFormats *formats = NULL;
128 int i, ret;
129
130 1 s->outdesc = av_pix_fmt_desc_get(s->out_fmt);
131
2/2
✓ Branch 1 taken 228 times.
✓ Branch 2 taken 1 times.
229 for (i = 0; av_pix_fmt_desc_get(i); i++) {
132 228 const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(i);
133
2/2
✓ Branch 0 taken 40 times.
✓ Branch 1 taken 188 times.
228 if (desc->comp[0].depth == s->outdesc->comp[0].depth &&
134
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 40 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
40 (desc->comp[0].depth <= 8 || (desc->flags & AV_PIX_FMT_FLAG_BE) == (s->outdesc->flags & AV_PIX_FMT_FLAG_BE)) &&
135
3/4
✓ Branch 1 taken 18 times.
✓ Branch 2 taken 22 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 18 times.
58 av_pix_fmt_count_planes(i) == desc->nb_components &&
136 18 (ret = ff_add_format(&formats, i)) < 0)
137 return ret;
138 }
139
140
2/2
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 1 times.
2 for (i = 0; i < s->nb_inputs; i++)
141
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 1 times.
1 if ((ret = ff_formats_ref(formats, &ctx->inputs[i]->outcfg.formats)) < 0)
142 return ret;
143
144 1 formats = NULL;
145
2/4
✓ Branch 1 taken 1 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 1 times.
2 if ((ret = ff_add_format(&formats, s->out_fmt)) < 0 ||
146 1 (ret = ff_formats_ref(formats, &ctx->outputs[0]->incfg.formats)) < 0)
147 return ret;
148
149 1 return 0;
150 }
151
152 50 static int process_frame(FFFrameSync *fs)
153 {
154 50 AVFilterContext *ctx = fs->parent;
155 50 AVFilterLink *outlink = ctx->outputs[0];
156 50 MergePlanesContext *s = fs->opaque;
157 50 AVFrame *in[4] = { NULL };
158 AVFrame *out;
159 int i, ret;
160
161
2/2
✓ Branch 0 taken 50 times.
✓ Branch 1 taken 50 times.
100 for (i = 0; i < s->nb_inputs; i++) {
162
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 50 times.
50 if ((ret = ff_framesync_get_frame(&s->fs, i, &in[i], 0)) < 0)
163 return ret;
164 }
165
166 50 out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
167
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 50 times.
50 if (!out)
168 return AVERROR(ENOMEM);
169 50 out->pts = av_rescale_q(s->fs.pts, s->fs.time_base, outlink->time_base);
170
171
2/2
✓ Branch 0 taken 150 times.
✓ Branch 1 taken 50 times.
200 for (i = 0; i < s->nb_planes; i++) {
172 150 const int input = s->map[i].input;
173 150 const int plane = s->map[i].plane;
174
175 150 av_image_copy_plane(out->data[i], out->linesize[i],
176 150 in[input]->data[plane], in[input]->linesize[plane],
177 150 s->planewidth[i] * ((s->indesc[input]->comp[plane].depth + 7) / 8),
178 s->planeheight[i]);
179 }
180
181 50 return ff_filter_frame(outlink, out);
182 }
183
184 1 static int config_output(AVFilterLink *outlink)
185 {
186 1 AVFilterContext *ctx = outlink->src;
187 1 MergePlanesContext *s = ctx->priv;
188 InputParam inputsp[4];
189 FFFrameSyncIn *in;
190 int i, ret;
191
192
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 1 times.
1 if ((ret = ff_framesync_init(&s->fs, ctx, s->nb_inputs)) < 0)
193 return ret;
194
195 1 in = s->fs.in;
196 1 s->fs.opaque = s;
197 1 s->fs.on_event = process_frame;
198
199 1 outlink->w = ctx->inputs[0]->w;
200 1 outlink->h = ctx->inputs[0]->h;
201 1 outlink->time_base = ctx->inputs[0]->time_base;
202 1 outlink->frame_rate = ctx->inputs[0]->frame_rate;
203 1 outlink->sample_aspect_ratio = ctx->inputs[0]->sample_aspect_ratio;
204
205 1 s->planewidth[1] =
206 1 s->planewidth[2] = AV_CEIL_RSHIFT(outlink->w, s->outdesc->log2_chroma_w);
207 1 s->planewidth[0] =
208 1 s->planewidth[3] = outlink->w;
209 1 s->planeheight[1] =
210 1 s->planeheight[2] = AV_CEIL_RSHIFT(outlink->h, s->outdesc->log2_chroma_h);
211 1 s->planeheight[0] =
212 1 s->planeheight[3] = outlink->h;
213
214
2/2
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 1 times.
2 for (i = 0; i < s->nb_inputs; i++) {
215 1 InputParam *inputp = &inputsp[i];
216 1 AVFilterLink *inlink = ctx->inputs[i];
217 1 s->indesc[i] = av_pix_fmt_desc_get(inlink->format);
218
219
1/2
✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
1 if (outlink->sample_aspect_ratio.num != inlink->sample_aspect_ratio.num ||
220
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
1 outlink->sample_aspect_ratio.den != inlink->sample_aspect_ratio.den) {
221 av_log(ctx, AV_LOG_ERROR, "input #%d link %s SAR %d:%d "
222 "does not match output link %s SAR %d:%d\n",
223 i, ctx->input_pads[i].name,
224 inlink->sample_aspect_ratio.num,
225 inlink->sample_aspect_ratio.den,
226 ctx->output_pads[0].name,
227 outlink->sample_aspect_ratio.num,
228 outlink->sample_aspect_ratio.den);
229 return AVERROR(EINVAL);
230 }
231
232 1 inputp->planewidth[1] =
233 1 inputp->planewidth[2] = AV_CEIL_RSHIFT(inlink->w, s->indesc[i]->log2_chroma_w);
234 1 inputp->planewidth[0] =
235 1 inputp->planewidth[3] = inlink->w;
236 1 inputp->planeheight[1] =
237 1 inputp->planeheight[2] = AV_CEIL_RSHIFT(inlink->h, s->indesc[i]->log2_chroma_h);
238 1 inputp->planeheight[0] =
239 1 inputp->planeheight[3] = inlink->h;
240 1 inputp->nb_planes = av_pix_fmt_count_planes(inlink->format);
241
242
2/2
✓ Branch 0 taken 3 times.
✓ Branch 1 taken 1 times.
4 for (int j = 0; j < inputp->nb_planes; j++)
243 3 inputp->depth[j] = s->indesc[i]->comp[j].depth;
244
245 1 in[i].time_base = inlink->time_base;
246 1 in[i].sync = 1;
247 1 in[i].before = EXT_STOP;
248 1 in[i].after = EXT_STOP;
249 }
250
251
2/2
✓ Branch 0 taken 3 times.
✓ Branch 1 taken 1 times.
4 for (i = 0; i < s->nb_planes; i++) {
252 3 const int input = s->map[i].input;
253 3 const int plane = s->map[i].plane;
254 3 InputParam *inputp = &inputsp[input];
255
256
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 3 times.
3 if (plane + 1 > inputp->nb_planes) {
257 av_log(ctx, AV_LOG_ERROR, "input %d does not have %d plane\n",
258 input, plane);
259 goto fail;
260 }
261
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 3 times.
3 if (s->outdesc->comp[i].depth != inputp->depth[plane]) {
262 av_log(ctx, AV_LOG_ERROR, "output plane %d depth %d does not "
263 "match input %d plane %d depth %d\n",
264 i, s->outdesc->comp[i].depth,
265 input, plane, inputp->depth[plane]);
266 goto fail;
267 }
268
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 3 times.
3 if (s->planewidth[i] != inputp->planewidth[plane]) {
269 av_log(ctx, AV_LOG_ERROR, "output plane %d width %d does not "
270 "match input %d plane %d width %d\n",
271 i, s->planewidth[i],
272 input, plane, inputp->planewidth[plane]);
273 goto fail;
274 }
275
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 3 times.
3 if (s->planeheight[i] != inputp->planeheight[plane]) {
276 av_log(ctx, AV_LOG_ERROR, "output plane %d height %d does not "
277 "match input %d plane %d height %d\n",
278 i, s->planeheight[i],
279 input, plane, inputp->planeheight[plane]);
280 goto fail;
281 }
282 }
283
284 1 return ff_framesync_configure(&s->fs);
285 fail:
286 return AVERROR(EINVAL);
287 }
288
289 101 static int activate(AVFilterContext *ctx)
290 {
291 101 MergePlanesContext *s = ctx->priv;
292 101 return ff_framesync_activate(&s->fs);
293 }
294
295 2 static av_cold void uninit(AVFilterContext *ctx)
296 {
297 2 MergePlanesContext *s = ctx->priv;
298
299 2 ff_framesync_uninit(&s->fs);
300 2 }
301
302 static const AVFilterPad mergeplanes_outputs[] = {
303 {
304 .name = "default",
305 .type = AVMEDIA_TYPE_VIDEO,
306 .config_props = config_output,
307 },
308 };
309
310 const AVFilter ff_vf_mergeplanes = {
311 .name = "mergeplanes",
312 .description = NULL_IF_CONFIG_SMALL("Merge planes."),
313 .priv_size = sizeof(MergePlanesContext),
314 .priv_class = &mergeplanes_class,
315 .init = init,
316 .uninit = uninit,
317 .activate = activate,
318 .inputs = NULL,
319 FILTER_OUTPUTS(mergeplanes_outputs),
320 FILTER_QUERY_FUNC(query_formats),
321 .flags = AVFILTER_FLAG_DYNAMIC_INPUTS,
322 };
323