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