]> git.sesse.net Git - ffmpeg/blob - libavfilter/vf_blend.c
lavf/matroskaenc: return an error for unsupported types.
[ffmpeg] / libavfilter / vf_blend.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/imgutils.h"
22 #include "libavutil/eval.h"
23 #include "libavutil/opt.h"
24 #include "libavutil/pixfmt.h"
25 #include "avfilter.h"
26 #include "bufferqueue.h"
27 #include "formats.h"
28 #include "internal.h"
29 #include "video.h"
30
31 #define TOP    0
32 #define BOTTOM 1
33
34 enum BlendMode {
35     BLEND_UNSET = -1,
36     BLEND_NORMAL,
37     BLEND_ADDITION,
38     BLEND_AND,
39     BLEND_AVERAGE,
40     BLEND_BURN,
41     BLEND_DARKEN,
42     BLEND_DIFFERENCE,
43     BLEND_DIVIDE,
44     BLEND_DODGE,
45     BLEND_EXCLUSION,
46     BLEND_HARDLIGHT,
47     BLEND_LIGHTEN,
48     BLEND_MULTIPLY,
49     BLEND_NEGATION,
50     BLEND_OR,
51     BLEND_OVERLAY,
52     BLEND_PHOENIX,
53     BLEND_PINLIGHT,
54     BLEND_REFLECT,
55     BLEND_SCREEN,
56     BLEND_SOFTLIGHT,
57     BLEND_SUBTRACT,
58     BLEND_VIVIDLIGHT,
59     BLEND_XOR,
60     BLEND_NB
61 };
62
63 static const char *const var_names[] = {   "X",   "Y",   "W",   "H",   "SW",   "SH",   "T",   "N",   "A",   "B",   "TOP",   "BOTTOM",        NULL };
64 enum                                   { VAR_X, VAR_Y, VAR_W, VAR_H, VAR_SW, VAR_SH, VAR_T, VAR_N, VAR_A, VAR_B, VAR_TOP, VAR_BOTTOM, VAR_VARS_NB };
65
66 typedef struct FilterParams {
67     enum BlendMode mode;
68     double values[VAR_VARS_NB];
69     double opacity;
70     AVExpr *e;
71     char *expr_str;
72     void (*blend)(const uint8_t *top, int top_linesize,
73                   const uint8_t *bottom, int bottom_linesize,
74                   uint8_t *dst, int dst_linesize,
75                   int width, int height, struct FilterParams *param);
76 } FilterParams;
77
78 typedef struct {
79     const AVClass *class;
80     struct FFBufQueue queue_top;
81     struct FFBufQueue queue_bottom;
82     int hsub, vsub;             ///< chroma subsampling values
83     int nb_planes;
84     int frame_requested;
85     char *all_expr;
86     enum BlendMode all_mode;
87     double all_opacity;
88
89     FilterParams params[4];
90 } BlendContext;
91
92 #define OFFSET(x) offsetof(BlendContext, x)
93 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
94
95 static const AVOption blend_options[] = {
96     { "c0_mode", "set component #0 blend mode", OFFSET(params[0].mode), AV_OPT_TYPE_INT, {.i64=0}, 0, BLEND_NB-1, FLAGS, "mode"},
97     { "c1_mode", "set component #1 blend mode", OFFSET(params[1].mode), AV_OPT_TYPE_INT, {.i64=0}, 0, BLEND_NB-1, FLAGS, "mode"},
98     { "c2_mode", "set component #2 blend mode", OFFSET(params[2].mode), AV_OPT_TYPE_INT, {.i64=0}, 0, BLEND_NB-1, FLAGS, "mode"},
99     { "c3_mode", "set component #3 blend mode", OFFSET(params[3].mode), AV_OPT_TYPE_INT, {.i64=0}, 0, BLEND_NB-1, FLAGS, "mode"},
100     { "all_mode", "set blend mode for all components", OFFSET(all_mode), AV_OPT_TYPE_INT, {.i64=-1},-1, BLEND_NB-1, FLAGS, "mode"},
101     { "addition",   "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_ADDITION},   0, 0, FLAGS, "mode" },
102     { "and",        "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_AND},        0, 0, FLAGS, "mode" },
103     { "average",    "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_AVERAGE},    0, 0, FLAGS, "mode" },
104     { "burn",       "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_BURN},       0, 0, FLAGS, "mode" },
105     { "darken",     "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_DARKEN},     0, 0, FLAGS, "mode" },
106     { "difference", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_DIFFERENCE}, 0, 0, FLAGS, "mode" },
107     { "divide",     "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_DIVIDE},     0, 0, FLAGS, "mode" },
108     { "dodge",      "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_DODGE},      0, 0, FLAGS, "mode" },
109     { "exclusion",  "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_EXCLUSION},  0, 0, FLAGS, "mode" },
110     { "hardlight",  "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_HARDLIGHT},  0, 0, FLAGS, "mode" },
111     { "lighten",    "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_LIGHTEN},    0, 0, FLAGS, "mode" },
112     { "multiply",   "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_MULTIPLY},   0, 0, FLAGS, "mode" },
113     { "negation",   "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_NEGATION},   0, 0, FLAGS, "mode" },
114     { "normal",     "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_NORMAL},     0, 0, FLAGS, "mode" },
115     { "or",         "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_OR},         0, 0, FLAGS, "mode" },
116     { "overlay",    "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_OVERLAY},    0, 0, FLAGS, "mode" },
117     { "phoenix",    "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_PHOENIX},    0, 0, FLAGS, "mode" },
118     { "pinlight",   "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_PINLIGHT},   0, 0, FLAGS, "mode" },
119     { "reflect",    "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_REFLECT},    0, 0, FLAGS, "mode" },
120     { "screen",     "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_SCREEN},     0, 0, FLAGS, "mode" },
121     { "softlight",  "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_SOFTLIGHT},  0, 0, FLAGS, "mode" },
122     { "subtract",   "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_SUBTRACT},   0, 0, FLAGS, "mode" },
123     { "vividlight", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_VIVIDLIGHT}, 0, 0, FLAGS, "mode" },
124     { "xor",        "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_XOR},        0, 0, FLAGS, "mode" },
125     { "c0_expr",  "set color component #0 expression", OFFSET(params[0].expr_str), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
126     { "c1_expr",  "set color component #1 expression", OFFSET(params[1].expr_str), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
127     { "c2_expr",  "set color component #2 expression", OFFSET(params[2].expr_str), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
128     { "c3_expr",  "set color component #3 expression", OFFSET(params[3].expr_str), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
129     { "all_expr", "set expression for all color components", OFFSET(all_expr), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
130     { "c0_opacity",  "set color component #0 opacity", OFFSET(params[0].opacity), AV_OPT_TYPE_DOUBLE, {.dbl=1}, 0, 1, FLAGS },
131     { "c1_opacity",  "set color component #1 opacity", OFFSET(params[1].opacity), AV_OPT_TYPE_DOUBLE, {.dbl=1}, 0, 1, FLAGS },
132     { "c2_opacity",  "set color component #2 opacity", OFFSET(params[2].opacity), AV_OPT_TYPE_DOUBLE, {.dbl=1}, 0, 1, FLAGS },
133     { "c3_opacity",  "set color component #3 opacity", OFFSET(params[3].opacity), AV_OPT_TYPE_DOUBLE, {.dbl=1}, 0, 1, FLAGS },
134     { "all_opacity", "set opacity for all color components", OFFSET(all_opacity), AV_OPT_TYPE_DOUBLE, {.dbl=1}, 0, 1, FLAGS},
135     { NULL },
136 };
137
138 AVFILTER_DEFINE_CLASS(blend);
139
140 static void blend_normal(const uint8_t *top, int top_linesize,
141                          const uint8_t *bottom, int bottom_linesize,
142                          uint8_t *dst, int dst_linesize,
143                          int width, int height, FilterParams *param)
144 {
145     av_image_copy_plane(dst, dst_linesize, top, top_linesize, width, height);
146 }
147
148 #define DEFINE_BLEND(name, expr)                                      \
149 static void blend_## name(const uint8_t *top, int top_linesize,       \
150                           const uint8_t *bottom, int bottom_linesize, \
151                           uint8_t *dst, int dst_linesize,             \
152                           int width, int height, FilterParams *param) \
153 {                                                                     \
154     double opacity = param->opacity;                                  \
155     int i, j;                                                         \
156                                                                       \
157     for (i = 0; i < height; i++) {                                    \
158         for (j = 0; j < width; j++) {                                 \
159             dst[j] = top[j] + ((expr) - top[j]) * opacity;            \
160         }                                                             \
161         dst    += dst_linesize;                                       \
162         top    += top_linesize;                                       \
163         bottom += bottom_linesize;                                    \
164     }                                                                 \
165 }
166
167 #define A top[j]
168 #define B bottom[j]
169
170 #define MULTIPLY(x, a, b) (x * ((a * b) / 255))
171 #define SCREEN(x, a, b)   (255 - x * ((255 - a) * (255 - b) / 255))
172 #define BURN(a, b)        ((a == 0) ? a : FFMAX(0, 255 - ((255 - b) << 8) / a))
173 #define DODGE(a, b)       ((a == 255) ? a : FFMIN(255, ((b << 8) / (255 - a))))
174
175 DEFINE_BLEND(addition,   FFMIN(255, A + B))
176 DEFINE_BLEND(average,    (A + B) / 2)
177 DEFINE_BLEND(subtract,   FFMAX(0, A - B))
178 DEFINE_BLEND(multiply,   MULTIPLY(1, A, B))
179 DEFINE_BLEND(negation,   255 - FFABS(255 - A - B))
180 DEFINE_BLEND(difference, FFABS(A - B))
181 DEFINE_BLEND(screen,     SCREEN(1, A, B))
182 DEFINE_BLEND(overlay,    (A < 128) ? MULTIPLY(2, A, B) : SCREEN(2, A, B))
183 DEFINE_BLEND(hardlight,  (B < 128) ? MULTIPLY(2, B, A) : SCREEN(2, B, A))
184 DEFINE_BLEND(darken,     FFMIN(A, B))
185 DEFINE_BLEND(lighten,    FFMAX(A, B))
186 DEFINE_BLEND(divide,     ((float)A / ((float)B) * 255))
187 DEFINE_BLEND(dodge,      DODGE(A, B))
188 DEFINE_BLEND(burn,       BURN(A, B))
189 DEFINE_BLEND(softlight,  (A > 127) ? B + (255 - B) * (A - 127.5) / 127.5 * (0.5 - FFABS(B - 127.5) / 255): B - B * ((127.5 - A) / 127.5) * (0.5 - FFABS(B - 127.5)/255))
190 DEFINE_BLEND(exclusion,  A + B - 2 * A * B / 255)
191 DEFINE_BLEND(pinlight,   (B < 128) ? FFMIN(A, 2 * B) : FFMAX(A, 2 * (B - 128)))
192 DEFINE_BLEND(phoenix,    FFMIN(A, B) - FFMAX(A, B) + 255)
193 DEFINE_BLEND(reflect,    (B == 255) ? B : FFMIN(255, (A * A / (255 - B))))
194 DEFINE_BLEND(and,        A & B)
195 DEFINE_BLEND(or,         A | B)
196 DEFINE_BLEND(xor,        A ^ B)
197 DEFINE_BLEND(vividlight, (B < 128) ? BURN(A, 2 * B) : DODGE(A, 2 * (B - 128)))
198
199 static void blend_expr(const uint8_t *top, int top_linesize,
200                        const uint8_t *bottom, int bottom_linesize,
201                        uint8_t *dst, int dst_linesize,
202                        int width, int height,
203                        FilterParams *param)
204 {
205     AVExpr *e = param->e;
206     double *values = param->values;
207     int y, x;
208
209     for (y = 0; y < height; y++) {
210         values[VAR_Y] = y;
211         for (x = 0; x < width; x++) {
212             values[VAR_X]      = x;
213             values[VAR_TOP]    = values[VAR_A] = top[x];
214             values[VAR_BOTTOM] = values[VAR_B] = bottom[x];
215             dst[x] = av_expr_eval(e, values, NULL);
216         }
217         dst    += dst_linesize;
218         top    += top_linesize;
219         bottom += bottom_linesize;
220     }
221 }
222
223 static av_cold int init(AVFilterContext *ctx)
224 {
225     BlendContext *b = ctx->priv;
226     int ret, plane;
227
228     for (plane = 0; plane < FF_ARRAY_ELEMS(b->params); plane++) {
229         FilterParams *param = &b->params[plane];
230
231         if (b->all_mode >= 0)
232             param->mode = b->all_mode;
233         if (b->all_opacity < 1)
234             param->opacity = b->all_opacity;
235
236         switch (param->mode) {
237         case BLEND_ADDITION:   param->blend = blend_addition;   break;
238         case BLEND_AND:        param->blend = blend_and;        break;
239         case BLEND_AVERAGE:    param->blend = blend_average;    break;
240         case BLEND_BURN:       param->blend = blend_burn;       break;
241         case BLEND_DARKEN:     param->blend = blend_darken;     break;
242         case BLEND_DIFFERENCE: param->blend = blend_difference; break;
243         case BLEND_DIVIDE:     param->blend = blend_divide;     break;
244         case BLEND_DODGE:      param->blend = blend_dodge;      break;
245         case BLEND_EXCLUSION:  param->blend = blend_exclusion;  break;
246         case BLEND_HARDLIGHT:  param->blend = blend_hardlight;  break;
247         case BLEND_LIGHTEN:    param->blend = blend_lighten;    break;
248         case BLEND_MULTIPLY:   param->blend = blend_multiply;   break;
249         case BLEND_NEGATION:   param->blend = blend_negation;   break;
250         case BLEND_NORMAL:     param->blend = blend_normal;     break;
251         case BLEND_OR:         param->blend = blend_or;         break;
252         case BLEND_OVERLAY:    param->blend = blend_overlay;    break;
253         case BLEND_PHOENIX:    param->blend = blend_phoenix;    break;
254         case BLEND_PINLIGHT:   param->blend = blend_pinlight;   break;
255         case BLEND_REFLECT:    param->blend = blend_reflect;    break;
256         case BLEND_SCREEN:     param->blend = blend_screen;     break;
257         case BLEND_SOFTLIGHT:  param->blend = blend_softlight;  break;
258         case BLEND_SUBTRACT:   param->blend = blend_subtract;   break;
259         case BLEND_VIVIDLIGHT: param->blend = blend_vividlight; break;
260         case BLEND_XOR:        param->blend = blend_xor;        break;
261         }
262
263         if (b->all_expr && !param->expr_str) {
264             param->expr_str = av_strdup(b->all_expr);
265             if (!param->expr_str)
266                 return AVERROR(ENOMEM);
267         }
268         if (param->expr_str) {
269             ret = av_expr_parse(&param->e, param->expr_str, var_names,
270                                 NULL, NULL, NULL, NULL, 0, ctx);
271             if (ret < 0)
272                 return ret;
273             param->blend = blend_expr;
274         }
275     }
276
277     return 0;
278 }
279
280 static int query_formats(AVFilterContext *ctx)
281 {
282     static const enum AVPixelFormat pix_fmts[] = {
283         AV_PIX_FMT_YUVA444P, AV_PIX_FMT_YUVA422P, AV_PIX_FMT_YUVA420P,
284         AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ440P, AV_PIX_FMT_YUVJ422P,AV_PIX_FMT_YUVJ420P,
285         AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV440P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV410P,
286         AV_PIX_FMT_GBRP, AV_PIX_FMT_GRAY8, AV_PIX_FMT_NONE
287     };
288
289     ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
290     return 0;
291 }
292
293 static int config_output(AVFilterLink *outlink)
294 {
295     AVFilterContext *ctx = outlink->src;
296     AVFilterLink *toplink = ctx->inputs[TOP];
297     AVFilterLink *bottomlink = ctx->inputs[BOTTOM];
298     BlendContext *b = ctx->priv;
299     const AVPixFmtDescriptor *pix_desc = av_pix_fmt_desc_get(toplink->format);
300
301     if (toplink->format != bottomlink->format) {
302         av_log(ctx, AV_LOG_ERROR, "inputs must be of same pixel format\n");
303         return AVERROR(EINVAL);
304     }
305     if (toplink->w                       != bottomlink->w ||
306         toplink->h                       != bottomlink->h ||
307         toplink->sample_aspect_ratio.num != bottomlink->sample_aspect_ratio.num ||
308         toplink->sample_aspect_ratio.den != bottomlink->sample_aspect_ratio.den) {
309         av_log(ctx, AV_LOG_ERROR, "First input link %s parameters "
310                "(size %dx%d, SAR %d:%d) do not match the corresponding "
311                "second input link %s parameters (%dx%d, SAR %d:%d)\n",
312                ctx->input_pads[TOP].name, toplink->w, toplink->h,
313                toplink->sample_aspect_ratio.num,
314                toplink->sample_aspect_ratio.den,
315                ctx->input_pads[BOTTOM].name, bottomlink->w, bottomlink->h,
316                bottomlink->sample_aspect_ratio.num,
317                bottomlink->sample_aspect_ratio.den);
318         return AVERROR(EINVAL);
319     }
320
321     outlink->w = toplink->w;
322     outlink->h = toplink->h;
323     outlink->time_base = toplink->time_base;
324     outlink->sample_aspect_ratio = toplink->sample_aspect_ratio;
325     outlink->frame_rate = toplink->frame_rate;
326
327     b->hsub = pix_desc->log2_chroma_w;
328     b->vsub = pix_desc->log2_chroma_h;
329     b->nb_planes = av_pix_fmt_count_planes(toplink->format);
330
331     return 0;
332 }
333
334 static av_cold void uninit(AVFilterContext *ctx)
335 {
336     BlendContext *b = ctx->priv;
337     int i;
338
339     ff_bufqueue_discard_all(&b->queue_top);
340     ff_bufqueue_discard_all(&b->queue_bottom);
341
342     for (i = 0; i < FF_ARRAY_ELEMS(b->params); i++)
343         av_expr_free(b->params[i].e);
344 }
345
346 static int request_frame(AVFilterLink *outlink)
347 {
348     AVFilterContext *ctx = outlink->src;
349     BlendContext *b = ctx->priv;
350     int in, ret;
351
352     b->frame_requested = 1;
353     while (b->frame_requested) {
354         in = ff_bufqueue_peek(&b->queue_top, 0) ? BOTTOM : TOP;
355         ret = ff_request_frame(ctx->inputs[in]);
356         if (ret < 0)
357             return ret;
358     }
359     return 0;
360 }
361
362 static void blend_frame(AVFilterContext *ctx,
363                         AVFrame *top_buf,
364                         AVFrame *bottom_buf,
365                         AVFrame *dst_buf)
366 {
367     BlendContext *b = ctx->priv;
368     AVFilterLink *inlink = ctx->inputs[0];
369     FilterParams *param;
370     int plane;
371
372     for (plane = 0; plane < b->nb_planes; plane++) {
373         int hsub = plane == 1 || plane == 2 ? b->hsub : 0;
374         int vsub = plane == 1 || plane == 2 ? b->vsub : 0;
375         int outw = dst_buf->width  >> hsub;
376         int outh = dst_buf->height >> vsub;
377         uint8_t *dst    = dst_buf->data[plane];
378         uint8_t *top    = top_buf->data[plane];
379         uint8_t *bottom = bottom_buf->data[plane];
380
381         param = &b->params[plane];
382         param->values[VAR_N]  = inlink->frame_count;
383         param->values[VAR_T]  = dst_buf->pts == AV_NOPTS_VALUE ? NAN : dst_buf->pts * av_q2d(inlink->time_base);
384         param->values[VAR_W]  = outw;
385         param->values[VAR_H]  = outh;
386         param->values[VAR_SW] = outw / dst_buf->width;
387         param->values[VAR_SH] = outh / dst_buf->height;
388         param->blend(top, top_buf->linesize[plane],
389                      bottom, bottom_buf->linesize[plane],
390                      dst, dst_buf->linesize[plane], outw, outh, param);
391     }
392 }
393
394 static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
395 {
396     AVFilterContext *ctx = inlink->dst;
397     AVFilterLink *outlink = ctx->outputs[0];
398     BlendContext *b = ctx->priv;
399
400     int ret = 0;
401     int is_bottom = (inlink == ctx->inputs[BOTTOM]);
402     struct FFBufQueue *queue =
403         (is_bottom ? &b->queue_bottom : &b->queue_top);
404     ff_bufqueue_add(ctx, queue, buf);
405
406     while (1) {
407         AVFrame *top_buf, *bottom_buf, *out_buf;
408
409         if (!ff_bufqueue_peek(&b->queue_top, 0) ||
410             !ff_bufqueue_peek(&b->queue_bottom, 0)) break;
411
412         top_buf = ff_bufqueue_get(&b->queue_top);
413         bottom_buf = ff_bufqueue_get(&b->queue_bottom);
414
415         out_buf = ff_get_video_buffer(outlink, outlink->w, outlink->h);
416         if (!out_buf) {
417             return AVERROR(ENOMEM);
418         }
419         av_frame_copy_props(out_buf, top_buf);
420
421         b->frame_requested = 0;
422         blend_frame(ctx, top_buf, bottom_buf, out_buf);
423         ret = ff_filter_frame(outlink, out_buf);
424         av_frame_free(&top_buf);
425         av_frame_free(&bottom_buf);
426     }
427     return ret;
428 }
429
430 static const AVFilterPad blend_inputs[] = {
431     {
432         .name             = "top",
433         .type             = AVMEDIA_TYPE_VIDEO,
434         .filter_frame     = filter_frame,
435     },{
436         .name             = "bottom",
437         .type             = AVMEDIA_TYPE_VIDEO,
438         .filter_frame     = filter_frame,
439     },
440     { NULL }
441 };
442
443 static const AVFilterPad blend_outputs[] = {
444     {
445         .name          = "default",
446         .type          = AVMEDIA_TYPE_VIDEO,
447         .config_props  = config_output,
448         .request_frame = request_frame,
449     },
450     { NULL }
451 };
452
453 AVFilter avfilter_vf_blend = {
454     .name          = "blend",
455     .description   = NULL_IF_CONFIG_SMALL("Blend two video frames into each other."),
456     .init          = init,
457     .uninit        = uninit,
458     .priv_size     = sizeof(BlendContext),
459     .query_formats = query_formats,
460     .inputs        = blend_inputs,
461     .outputs       = blend_outputs,
462     .priv_class    = &blend_class,
463 };