FFmpeg
Loading...
Searching...
No Matches
vf_mergeplanes.c
Go to the documentation of this file.
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 "filters.h"
28#include "formats.h"
29#include "framesync.h"
30#include "video.h"
31
32typedef struct Mapping {
33 int input;
34 int plane;
35} Mapping;
36
37typedef struct InputParam {
38 int depth[4];
40 int planewidth[4];
43
58
59#define OFFSET(x) offsetof(MergePlanesContext, x)
60#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
61static 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
76
78{
79 MergePlanesContext *s = ctx->priv;
80 int64_t m = s->mapping;
81 int i, ret;
82
83 s->outdesc = av_pix_fmt_desc_get(s->out_fmt);
84 if (!(s->outdesc->flags & AV_PIX_FMT_FLAG_PLANAR) ||
85 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 s->nb_planes = av_pix_fmt_count_planes(s->out_fmt);
90
91 for (i = s->nb_planes - 1; i >= 0; i--) {
92 if (m >= 0 && m <= 0x33333333) {
93 s->map[i].plane = m & 0xf;
94 m >>= 4;
95 s->map[i].input = m & 0xf;
96 m >>= 4;
97 }
98
99 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 s->nb_inputs = FFMAX(s->nb_inputs, s->map[i].input + 1);
105 }
106
107 av_assert0(s->nb_inputs && s->nb_inputs <= 4);
108
109 for (i = 0; i < s->nb_inputs; i++) {
110 AVFilterPad pad = { 0 };
111
113 pad.name = av_asprintf("in%d", i);
114 if (!pad.name)
115 return AVERROR(ENOMEM);
116
117 if ((ret = ff_append_inpad_free_name(ctx, &pad)) < 0)
118 return ret;
119 }
120
121 return 0;
122}
123
125 AVFilterFormatsConfig **cfg_in,
126 AVFilterFormatsConfig **cfg_out)
127{
128 const MergePlanesContext *s = ctx->priv;
130 int i, ret;
131
132 for (i = 0; av_pix_fmt_desc_get(i); i++) {
134 if (desc->comp[0].depth == s->outdesc->comp[0].depth &&
135 (desc->comp[0].depth <= 8 || (desc->flags & AV_PIX_FMT_FLAG_BE) == (s->outdesc->flags & AV_PIX_FMT_FLAG_BE)) &&
136 av_pix_fmt_count_planes(i) == desc->nb_components &&
137 (ret = ff_add_format(&formats, i)) < 0)
138 return ret;
139 }
140
141 for (i = 0; i < s->nb_inputs; i++)
142 if ((ret = ff_formats_ref(formats, &cfg_in[i]->formats)) < 0)
143 return ret;
144
145 formats = NULL;
146 if ((ret = ff_add_format(&formats, s->out_fmt)) < 0 ||
147 (ret = ff_formats_ref(formats, &cfg_out[0]->formats)) < 0)
148 return ret;
149
150 return 0;
151}
152
154{
155 AVFilterContext *ctx = fs->parent;
156 AVFilterLink *outlink = ctx->outputs[0];
157 MergePlanesContext *s = fs->opaque;
158 AVFrame *in[4] = { NULL };
159 AVFrame *out;
160 int i, ret;
161
162 for (i = 0; i < s->nb_inputs; i++) {
163 if ((ret = ff_framesync_get_frame(&s->fs, i, &in[i], 0)) < 0)
164 return ret;
165 }
166
167 out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
168 if (!out)
169 return AVERROR(ENOMEM);
170 out->pts = av_rescale_q(s->fs.pts, s->fs.time_base, outlink->time_base);
171
172 for (i = 0; i < s->nb_planes; i++) {
173 const int input = s->map[i].input;
174 const int plane = s->map[i].plane;
175
176 av_image_copy_plane(out->data[i], out->linesize[i],
177 in[input]->data[plane], in[input]->linesize[plane],
178 s->planewidth[i] * ((s->indesc[input]->comp[plane].depth + 7) / 8),
179 s->planeheight[i]);
180 }
181
182 return ff_filter_frame(outlink, out);
183}
184
185static int config_output(AVFilterLink *outlink)
186{
187 AVFilterContext *ctx = outlink->src;
188 MergePlanesContext *s = ctx->priv;
189 FilterLink *il = ff_filter_link(ctx->inputs[0]);
190 FilterLink *ol = ff_filter_link(outlink);
191 InputParam inputsp[4];
192 FFFrameSyncIn *in;
193 int i, ret;
194
195 if ((ret = ff_framesync_init(&s->fs, ctx, s->nb_inputs)) < 0)
196 return ret;
197
198 in = s->fs.in;
199 s->fs.opaque = s;
200 s->fs.on_event = process_frame;
201
202 outlink->w = ctx->inputs[0]->w;
203 outlink->h = ctx->inputs[0]->h;
204 outlink->time_base = ctx->inputs[0]->time_base;
205 ol->frame_rate = il->frame_rate;
206 outlink->sample_aspect_ratio = ctx->inputs[0]->sample_aspect_ratio;
207
208 s->planewidth[1] =
209 s->planewidth[2] = AV_CEIL_RSHIFT(outlink->w, s->outdesc->log2_chroma_w);
210 s->planewidth[0] =
211 s->planewidth[3] = outlink->w;
212 s->planeheight[1] =
213 s->planeheight[2] = AV_CEIL_RSHIFT(outlink->h, s->outdesc->log2_chroma_h);
214 s->planeheight[0] =
215 s->planeheight[3] = outlink->h;
216
217 for (i = 0; i < s->nb_inputs; i++) {
218 InputParam *inputp = &inputsp[i];
219 AVFilterLink *inlink = ctx->inputs[i];
220 s->indesc[i] = av_pix_fmt_desc_get(inlink->format);
221
222 if (outlink->sample_aspect_ratio.num != inlink->sample_aspect_ratio.num ||
223 outlink->sample_aspect_ratio.den != inlink->sample_aspect_ratio.den) {
224 av_log(ctx, AV_LOG_ERROR, "input #%d link %s SAR %d:%d "
225 "does not match output link %s SAR %d:%d\n",
226 i, ctx->input_pads[i].name,
227 inlink->sample_aspect_ratio.num,
228 inlink->sample_aspect_ratio.den,
229 ctx->output_pads[0].name,
230 outlink->sample_aspect_ratio.num,
231 outlink->sample_aspect_ratio.den);
232 return AVERROR(EINVAL);
233 }
234
235 inputp->planewidth[1] =
236 inputp->planewidth[2] = AV_CEIL_RSHIFT(inlink->w, s->indesc[i]->log2_chroma_w);
237 inputp->planewidth[0] =
238 inputp->planewidth[3] = inlink->w;
239 inputp->planeheight[1] =
240 inputp->planeheight[2] = AV_CEIL_RSHIFT(inlink->h, s->indesc[i]->log2_chroma_h);
241 inputp->planeheight[0] =
242 inputp->planeheight[3] = inlink->h;
243 inputp->nb_planes = av_pix_fmt_count_planes(inlink->format);
244
245 for (int j = 0; j < inputp->nb_planes; j++)
246 inputp->depth[j] = s->indesc[i]->comp[j].depth;
247
248 in[i].time_base = inlink->time_base;
249 in[i].sync = 1;
250 in[i].before = EXT_STOP;
251 in[i].after = EXT_STOP;
252 }
253
254 for (i = 0; i < s->nb_planes; i++) {
255 const int input = s->map[i].input;
256 const int plane = s->map[i].plane;
257 InputParam *inputp = &inputsp[input];
258
259 if (plane + 1 > inputp->nb_planes) {
260 av_log(ctx, AV_LOG_ERROR, "input %d does not have %d plane\n",
261 input, plane);
262 goto fail;
263 }
264 if (s->outdesc->comp[i].depth != inputp->depth[plane]) {
265 av_log(ctx, AV_LOG_ERROR, "output plane %d depth %d does not "
266 "match input %d plane %d depth %d\n",
267 i, s->outdesc->comp[i].depth,
268 input, plane, inputp->depth[plane]);
269 goto fail;
270 }
271 if (s->planewidth[i] != inputp->planewidth[plane]) {
272 av_log(ctx, AV_LOG_ERROR, "output plane %d width %d does not "
273 "match input %d plane %d width %d\n",
274 i, s->planewidth[i],
275 input, plane, inputp->planewidth[plane]);
276 goto fail;
277 }
278 if (s->planeheight[i] != inputp->planeheight[plane]) {
279 av_log(ctx, AV_LOG_ERROR, "output plane %d height %d does not "
280 "match input %d plane %d height %d\n",
281 i, s->planeheight[i],
282 input, plane, inputp->planeheight[plane]);
283 goto fail;
284 }
285 }
286
287 return ff_framesync_configure(&s->fs);
288fail:
289 return AVERROR(EINVAL);
290}
291
293{
294 MergePlanesContext *s = ctx->priv;
295 return ff_framesync_activate(&s->fs);
296}
297
299{
300 MergePlanesContext *s = ctx->priv;
301
303}
304
306 {
307 .name = "default",
308 .type = AVMEDIA_TYPE_VIDEO,
309 .config_props = config_output,
310 },
311};
312
314 .p.name = "mergeplanes",
315 .p.description = NULL_IF_CONFIG_SMALL("Merge planes."),
316 .p.priv_class = &mergeplanes_class,
317 .p.inputs = NULL,
319 .priv_size = sizeof(MergePlanesContext),
320 .init = init,
321 .uninit = uninit,
325};
static int query_formats(const AVFilterContext *ctx, AVFilterFormatsConfig **cfg_in, AVFilterFormatsConfig **cfg_out)
Definition aeval.c:246
const FFFilter ff_vf_mergeplanes
simple assert() macros that are a bit more flexible than ISO C assert().
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition avassert.h:42
int ff_append_inpad_free_name(AVFilterContext *f, AVFilterPad *p)
Definition avfilter.c:132
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition avfilter.c:1068
Main libavfilter public API header.
char * av_asprintf(const char *fmt,...)
Definition avstring.c:115
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define s(width, name)
Definition cbs_vp9.c:198
#define fs(width, name, subs,...)
Definition cbs_vp9.c:200
#define FLAGS
Definition cmdutils.c:598
#define AV_CEIL_RSHIFT(a, b)
Definition common.h:60
#define NULL
Definition coverity.c:32
long long int64_t
Definition coverity.c:34
int(* init)(AVBSFContext *ctx)
Definition dts2pts.c:608
static av_always_inline int process_frame(AVTextFormatContext *tfc, InputFile *ifile, AVFrame *frame, const AVPacket *pkt, int *packet_new)
Definition ffprobe.c:1596
int ff_formats_ref(AVFilterFormats *f, AVFilterFormats **ref)
Add ref as a new reference to formats.
Definition formats.c:756
int ff_add_format(AVFilterFormats **avff, int64_t fmt)
Add fmt to the list of media formats contained in *avff.
Definition formats.c:571
int ff_framesync_configure(FFFrameSync *fs)
Configure a frame sync structure.
Definition framesync.c:137
int ff_framesync_activate(FFFrameSync *fs)
Examine the frames in the filter's input and try to produce output.
Definition framesync.c:352
int ff_framesync_get_frame(FFFrameSync *fs, unsigned in, AVFrame **rframe, unsigned get)
Get the current frame in an input.
Definition framesync.c:269
void ff_framesync_uninit(FFFrameSync *fs)
Free all memory currently allocated.
Definition framesync.c:301
int ff_framesync_init(FFFrameSync *fs, AVFilterContext *parent, unsigned nb_in)
Initialize a frame sync structure.
Definition framesync.c:86
#define fail
Definition test.h:479
#define AV_OPT_FLAG_DEPRECATED
Set if option is deprecated, users should refer to AVOption.help text for more information.
Definition opt.h:385
@ AV_OPT_TYPE_PIXEL_FMT
Underlying C type is enum AVPixelFormat.
Definition opt.h:306
@ AV_OPT_TYPE_INT
Underlying C type is int.
Definition opt.h:258
#define AVFILTER_FLAG_DYNAMIC_INPUTS
The number of the filter inputs is not determined just by AVFilter.inputs.
Definition avfilter.h:155
#define AVERROR(e)
Definition error.h:45
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
void av_image_copy_plane(uint8_t *dst, int dst_linesize, const uint8_t *src, int src_linesize, int bytewidth, int height)
Copy image plane from src to dst.
Definition imgutils.c:374
const VDPAUPixFmtMap * map
misc image utilities
static av_cold void uninit(AVBitStreamFilterContext *ctx)
static int activate(AVBitStreamFilterContext *ctx)
static int config_output(AVBitStreamFilterLink *outlink)
#define FILTER_OUTPUTS(array)
Definition filters.h:265
static FilterLink * ff_filter_link(AVFilterLink *link)
Definition filters.h:199
#define AVFILTER_DEFINE_CLASS(fname)
Definition filters.h:478
#define FILTER_QUERY_FUNC2(func)
Definition filters.h:241
#define av_cold
Definition attributes.h:117
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
const char * desc
Definition libsvtav1.c:83
#define FFMAX(a, b)
Definition macros.h:47
AVOptions.
@ EXT_STOP
Completely stop all streams with this one.
Definition packetsync.h:62
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
Definition pixdesc.c:3500
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition pixdesc.c:3460
#define AV_PIX_FMT_FLAG_PLANAR
At least one pixel component is not in the first data plane.
Definition pixdesc.h:132
#define AV_PIX_FMT_FLAG_BE
Pixel format is big-endian.
Definition pixdesc.h:116
AVPixelFormat
Pixel format.
Definition pixfmt.h:71
@ AV_PIX_FMT_YUVA444P
planar YUV 4:4:4 32bpp, (1 Cr & Cb sample per 1x1 Y & A samples)
Definition pixfmt.h:174
formats
Definition signature.h:47
Describe the class of an AVClass context structure.
Definition log.h:76
An instance of a filter.
Definition avfilter.h:273
Lists of formats / etc.
Definition avfilter.h:120
A list of supported formats for one end of a filter link.
Definition formats.h:64
A filter pad used for either input or output.
Definition filters.h:40
enum AVMediaType type
AVFilterPad type.
Definition filters.h:51
const char * name
Pad name.
Definition filters.h:46
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition frame.h:493
int linesize[AV_NUM_DATA_POINTERS]
For video, a positive or negative value, which is typically indicating the size in bytes of each pict...
Definition frame.h:517
AVOption.
Definition opt.h:428
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition pixdesc.h:69
int num
Numerator.
Definition rational.h:59
int den
Denominator.
Definition rational.h:60
Input stream structure.
Definition framesync.h:102
enum FFFrameSyncExtMode after
Extrapolation mode for timestamps after the last frame.
Definition framesync.h:112
enum FFFrameSyncExtMode before
Extrapolation mode for timestamps before the first frame.
Definition framesync.h:107
AVRational time_base
Time base for the incoming frames.
Definition framesync.h:117
unsigned sync
Synchronization level: frames on input at the highest sync level will generate output frame events.
Definition framesync.h:160
Frame sync structure.
Definition framesync.h:168
int planewidth[4]
int planeheight[4]
const AVPixFmtDescriptor * indesc[4]
const AVPixFmtDescriptor * outdesc
enum AVPixelFormat out_fmt
#define av_log(a,...)
static FILE * out
Definition movenc.c:55
static AVFormatContext * ctx
Definition movenc.c:49
static const AVFilterPad mergeplanes_outputs[]
static int query_formats(const AVFilterContext *ctx, AVFilterFormatsConfig **cfg_in, AVFilterFormatsConfig **cfg_out)
static int activate(AVFilterContext *ctx)
static av_cold void uninit(AVFilterContext *ctx)
static const AVOption mergeplanes_options[]
#define OFFSET(x)
static int config_output(AVFilterLink *outlink)
static int process_frame(FFFrameSync *fs)
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition video.c:89