]> git.sesse.net Git - ffmpeg/blob - libavfilter/vf_overlay.c
Merge commit '3ee2c60cc296eee3f63d7b5fee9b4332eeeac9fa'
[ffmpeg] / libavfilter / vf_overlay.c
1 /*
2  * Copyright (c) 2010 Stefano Sabatini
3  * Copyright (c) 2010 Baptiste Coudurier
4  * Copyright (c) 2007 Bobby Bingham
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 /**
24  * @file
25  * overlay one video on top of another
26  */
27
28 #include "avfilter.h"
29 #include "formats.h"
30 #include "libavutil/common.h"
31 #include "libavutil/eval.h"
32 #include "libavutil/avstring.h"
33 #include "libavutil/pixdesc.h"
34 #include "libavutil/imgutils.h"
35 #include "libavutil/mathematics.h"
36 #include "libavutil/opt.h"
37 #include "libavutil/timestamp.h"
38 #include "internal.h"
39 #include "dualinput.h"
40 #include "drawutils.h"
41 #include "video.h"
42
43 static const char *const var_names[] = {
44     "main_w",    "W", ///< width  of the main    video
45     "main_h",    "H", ///< height of the main    video
46     "overlay_w", "w", ///< width  of the overlay video
47     "overlay_h", "h", ///< height of the overlay video
48     "hsub",
49     "vsub",
50     "x",
51     "y",
52     "n",            ///< number of frame
53     "pos",          ///< position in the file
54     "t",            ///< timestamp expressed in seconds
55     NULL
56 };
57
58 enum var_name {
59     VAR_MAIN_W,    VAR_MW,
60     VAR_MAIN_H,    VAR_MH,
61     VAR_OVERLAY_W, VAR_OW,
62     VAR_OVERLAY_H, VAR_OH,
63     VAR_HSUB,
64     VAR_VSUB,
65     VAR_X,
66     VAR_Y,
67     VAR_N,
68     VAR_POS,
69     VAR_T,
70     VAR_VARS_NB
71 };
72
73 enum EOFAction {
74     EOF_ACTION_REPEAT,
75     EOF_ACTION_ENDALL,
76     EOF_ACTION_PASS
77 };
78
79 static const char * const eof_action_str[] = {
80     "repeat", "endall", "pass"
81 };
82
83 #define MAIN    0
84 #define OVERLAY 1
85
86 #define R 0
87 #define G 1
88 #define B 2
89 #define A 3
90
91 #define Y 0
92 #define U 1
93 #define V 2
94
95 enum EvalMode {
96     EVAL_MODE_INIT,
97     EVAL_MODE_FRAME,
98     EVAL_MODE_NB
99 };
100
101 enum OverlayFormat {
102     OVERLAY_FORMAT_YUV420,
103     OVERLAY_FORMAT_YUV422,
104     OVERLAY_FORMAT_YUV444,
105     OVERLAY_FORMAT_RGB,
106     OVERLAY_FORMAT_NB
107 };
108
109 typedef struct OverlayContext {
110     const AVClass *class;
111     int x, y;                   ///< position of overlayed picture
112
113     int allow_packed_rgb;
114     uint8_t main_is_packed_rgb;
115     uint8_t main_rgba_map[4];
116     uint8_t main_has_alpha;
117     uint8_t overlay_is_packed_rgb;
118     uint8_t overlay_rgba_map[4];
119     uint8_t overlay_has_alpha;
120     int format;                 ///< OverlayFormat
121     int eval_mode;              ///< EvalMode
122
123     FFDualInputContext dinput;
124
125     int main_pix_step[4];       ///< steps per pixel for each plane of the main output
126     int overlay_pix_step[4];    ///< steps per pixel for each plane of the overlay
127     int hsub, vsub;             ///< chroma subsampling values
128
129     double var_values[VAR_VARS_NB];
130     char *x_expr, *y_expr;
131
132     int eof_action;             ///< action to take on EOF from source
133
134     AVExpr *x_pexpr, *y_pexpr;
135 } OverlayContext;
136
137 static av_cold void uninit(AVFilterContext *ctx)
138 {
139     OverlayContext *s = ctx->priv;
140
141     ff_dualinput_uninit(&s->dinput);
142     av_expr_free(s->x_pexpr); s->x_pexpr = NULL;
143     av_expr_free(s->y_pexpr); s->y_pexpr = NULL;
144 }
145
146 static inline int normalize_xy(double d, int chroma_sub)
147 {
148     if (isnan(d))
149         return INT_MAX;
150     return (int)d & ~((1 << chroma_sub) - 1);
151 }
152
153 static void eval_expr(AVFilterContext *ctx)
154 {
155     OverlayContext *s = ctx->priv;
156
157     s->var_values[VAR_X] = av_expr_eval(s->x_pexpr, s->var_values, NULL);
158     s->var_values[VAR_Y] = av_expr_eval(s->y_pexpr, s->var_values, NULL);
159     s->var_values[VAR_X] = av_expr_eval(s->x_pexpr, s->var_values, NULL);
160     s->x = normalize_xy(s->var_values[VAR_X], s->hsub);
161     s->y = normalize_xy(s->var_values[VAR_Y], s->vsub);
162 }
163
164 static int set_expr(AVExpr **pexpr, const char *expr, const char *option, void *log_ctx)
165 {
166     int ret;
167     AVExpr *old = NULL;
168
169     if (*pexpr)
170         old = *pexpr;
171     ret = av_expr_parse(pexpr, expr, var_names,
172                         NULL, NULL, NULL, NULL, 0, log_ctx);
173     if (ret < 0) {
174         av_log(log_ctx, AV_LOG_ERROR,
175                "Error when evaluating the expression '%s' for %s\n",
176                expr, option);
177         *pexpr = old;
178         return ret;
179     }
180
181     av_expr_free(old);
182     return 0;
183 }
184
185 static int process_command(AVFilterContext *ctx, const char *cmd, const char *args,
186                            char *res, int res_len, int flags)
187 {
188     OverlayContext *s = ctx->priv;
189     int ret;
190
191     if      (!strcmp(cmd, "x"))
192         ret = set_expr(&s->x_pexpr, args, cmd, ctx);
193     else if (!strcmp(cmd, "y"))
194         ret = set_expr(&s->y_pexpr, args, cmd, ctx);
195     else
196         ret = AVERROR(ENOSYS);
197
198     if (ret < 0)
199         return ret;
200
201     if (s->eval_mode == EVAL_MODE_INIT) {
202         eval_expr(ctx);
203         av_log(ctx, AV_LOG_VERBOSE, "x:%f xi:%d y:%f yi:%d\n",
204                s->var_values[VAR_X], s->x,
205                s->var_values[VAR_Y], s->y);
206     }
207     return ret;
208 }
209
210 static int query_formats(AVFilterContext *ctx)
211 {
212     OverlayContext *s = ctx->priv;
213
214     /* overlay formats contains alpha, for avoiding conversion with alpha information loss */
215     static const enum AVPixelFormat main_pix_fmts_yuv420[] = {
216         AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUVA420P, AV_PIX_FMT_NONE
217     };
218     static const enum AVPixelFormat overlay_pix_fmts_yuv420[] = {
219         AV_PIX_FMT_YUVA420P, AV_PIX_FMT_NONE
220     };
221
222     static const enum AVPixelFormat main_pix_fmts_yuv422[] = {
223         AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUVA422P, AV_PIX_FMT_NONE
224     };
225     static const enum AVPixelFormat overlay_pix_fmts_yuv422[] = {
226         AV_PIX_FMT_YUVA422P, AV_PIX_FMT_NONE
227     };
228
229     static const enum AVPixelFormat main_pix_fmts_yuv444[] = {
230         AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUVA444P, AV_PIX_FMT_NONE
231     };
232     static const enum AVPixelFormat overlay_pix_fmts_yuv444[] = {
233         AV_PIX_FMT_YUVA444P, AV_PIX_FMT_NONE
234     };
235
236     static const enum AVPixelFormat main_pix_fmts_rgb[] = {
237         AV_PIX_FMT_ARGB,  AV_PIX_FMT_RGBA,
238         AV_PIX_FMT_ABGR,  AV_PIX_FMT_BGRA,
239         AV_PIX_FMT_RGB24, AV_PIX_FMT_BGR24,
240         AV_PIX_FMT_NONE
241     };
242     static const enum AVPixelFormat overlay_pix_fmts_rgb[] = {
243         AV_PIX_FMT_ARGB,  AV_PIX_FMT_RGBA,
244         AV_PIX_FMT_ABGR,  AV_PIX_FMT_BGRA,
245         AV_PIX_FMT_NONE
246     };
247
248     AVFilterFormats *main_formats;
249     AVFilterFormats *overlay_formats;
250     int ret;
251
252     switch (s->format) {
253     case OVERLAY_FORMAT_YUV420:
254         if (!(main_formats    = ff_make_format_list(main_pix_fmts_yuv420)) ||
255             !(overlay_formats = ff_make_format_list(overlay_pix_fmts_yuv420)))
256             return AVERROR(ENOMEM);
257         break;
258     case OVERLAY_FORMAT_YUV422:
259         if (!(main_formats    = ff_make_format_list(main_pix_fmts_yuv422)) ||
260             !(overlay_formats = ff_make_format_list(overlay_pix_fmts_yuv422)))
261             return AVERROR(ENOMEM);
262         break;
263     case OVERLAY_FORMAT_YUV444:
264         if (!(main_formats    = ff_make_format_list(main_pix_fmts_yuv444)) ||
265             !(overlay_formats = ff_make_format_list(overlay_pix_fmts_yuv444)))
266             return AVERROR(ENOMEM);
267         break;
268     case OVERLAY_FORMAT_RGB:
269         if (!(main_formats    = ff_make_format_list(main_pix_fmts_rgb)) ||
270             !(overlay_formats = ff_make_format_list(overlay_pix_fmts_rgb)))
271             return AVERROR(ENOMEM);
272         break;
273     default:
274         av_assert0(0);
275     }
276
277     if ((ret = ff_formats_ref(main_formats   , &ctx->inputs[MAIN]->out_formats   )) < 0 ||
278         (ret = ff_formats_ref(overlay_formats, &ctx->inputs[OVERLAY]->out_formats)) < 0 ||
279         (ret = ff_formats_ref(main_formats   , &ctx->outputs[MAIN]->in_formats   )) < 0)
280         return ret;
281
282     return 0;
283 }
284
285 static const enum AVPixelFormat alpha_pix_fmts[] = {
286     AV_PIX_FMT_YUVA420P, AV_PIX_FMT_YUVA444P,
287     AV_PIX_FMT_ARGB, AV_PIX_FMT_ABGR, AV_PIX_FMT_RGBA,
288     AV_PIX_FMT_BGRA, AV_PIX_FMT_NONE
289 };
290
291 static int config_input_main(AVFilterLink *inlink)
292 {
293     OverlayContext *s = inlink->dst->priv;
294     const AVPixFmtDescriptor *pix_desc = av_pix_fmt_desc_get(inlink->format);
295
296     av_image_fill_max_pixsteps(s->main_pix_step,    NULL, pix_desc);
297
298     s->hsub = pix_desc->log2_chroma_w;
299     s->vsub = pix_desc->log2_chroma_h;
300
301     s->main_is_packed_rgb =
302         ff_fill_rgba_map(s->main_rgba_map, inlink->format) >= 0;
303     s->main_has_alpha = ff_fmt_is_in(inlink->format, alpha_pix_fmts);
304     return 0;
305 }
306
307 static int config_input_overlay(AVFilterLink *inlink)
308 {
309     AVFilterContext *ctx  = inlink->dst;
310     OverlayContext  *s = inlink->dst->priv;
311     int ret;
312     const AVPixFmtDescriptor *pix_desc = av_pix_fmt_desc_get(inlink->format);
313
314     av_image_fill_max_pixsteps(s->overlay_pix_step, NULL, pix_desc);
315
316     /* Finish the configuration by evaluating the expressions
317        now when both inputs are configured. */
318     s->var_values[VAR_MAIN_W   ] = s->var_values[VAR_MW] = ctx->inputs[MAIN   ]->w;
319     s->var_values[VAR_MAIN_H   ] = s->var_values[VAR_MH] = ctx->inputs[MAIN   ]->h;
320     s->var_values[VAR_OVERLAY_W] = s->var_values[VAR_OW] = ctx->inputs[OVERLAY]->w;
321     s->var_values[VAR_OVERLAY_H] = s->var_values[VAR_OH] = ctx->inputs[OVERLAY]->h;
322     s->var_values[VAR_HSUB]  = 1<<pix_desc->log2_chroma_w;
323     s->var_values[VAR_VSUB]  = 1<<pix_desc->log2_chroma_h;
324     s->var_values[VAR_X]     = NAN;
325     s->var_values[VAR_Y]     = NAN;
326     s->var_values[VAR_N]     = 0;
327     s->var_values[VAR_T]     = NAN;
328     s->var_values[VAR_POS]   = NAN;
329
330     if ((ret = set_expr(&s->x_pexpr,      s->x_expr,      "x",      ctx)) < 0 ||
331         (ret = set_expr(&s->y_pexpr,      s->y_expr,      "y",      ctx)) < 0)
332         return ret;
333
334     s->overlay_is_packed_rgb =
335         ff_fill_rgba_map(s->overlay_rgba_map, inlink->format) >= 0;
336     s->overlay_has_alpha = ff_fmt_is_in(inlink->format, alpha_pix_fmts);
337
338     if (s->eval_mode == EVAL_MODE_INIT) {
339         eval_expr(ctx);
340         av_log(ctx, AV_LOG_VERBOSE, "x:%f xi:%d y:%f yi:%d\n",
341                s->var_values[VAR_X], s->x,
342                s->var_values[VAR_Y], s->y);
343     }
344
345     av_log(ctx, AV_LOG_VERBOSE,
346            "main w:%d h:%d fmt:%s overlay w:%d h:%d fmt:%s eof_action:%s\n",
347            ctx->inputs[MAIN]->w, ctx->inputs[MAIN]->h,
348            av_get_pix_fmt_name(ctx->inputs[MAIN]->format),
349            ctx->inputs[OVERLAY]->w, ctx->inputs[OVERLAY]->h,
350            av_get_pix_fmt_name(ctx->inputs[OVERLAY]->format),
351            eof_action_str[s->eof_action]);
352     return 0;
353 }
354
355 static int config_output(AVFilterLink *outlink)
356 {
357     AVFilterContext *ctx = outlink->src;
358     OverlayContext *s = ctx->priv;
359     int ret;
360
361     if ((ret = ff_dualinput_init(ctx, &s->dinput)) < 0)
362         return ret;
363
364     outlink->w = ctx->inputs[MAIN]->w;
365     outlink->h = ctx->inputs[MAIN]->h;
366     outlink->time_base = ctx->inputs[MAIN]->time_base;
367
368     return 0;
369 }
370
371 // divide by 255 and round to nearest
372 // apply a fast variant: (X+127)/255 = ((X+127)*257+257)>>16 = ((X+128)*257)>>16
373 #define FAST_DIV255(x) ((((x) + 128) * 257) >> 16)
374
375 // calculate the unpremultiplied alpha, applying the general equation:
376 // alpha = alpha_overlay / ( (alpha_main + alpha_overlay) - (alpha_main * alpha_overlay) )
377 // (((x) << 16) - ((x) << 9) + (x)) is a faster version of: 255 * 255 * x
378 // ((((x) + (y)) << 8) - ((x) + (y)) - (y) * (x)) is a faster version of: 255 * (x + y)
379 #define UNPREMULTIPLY_ALPHA(x, y) ((((x) << 16) - ((x) << 9) + (x)) / ((((x) + (y)) << 8) - ((x) + (y)) - (y) * (x)))
380
381 /**
382  * Blend image in src to destination buffer dst at position (x, y).
383  */
384 static void blend_image(AVFilterContext *ctx,
385                         AVFrame *dst, const AVFrame *src,
386                         int x, int y)
387 {
388     OverlayContext *s = ctx->priv;
389     int i, imax, j, jmax, k, kmax;
390     const int src_w = src->width;
391     const int src_h = src->height;
392     const int dst_w = dst->width;
393     const int dst_h = dst->height;
394
395     if (x >= dst_w || x+src_w < 0 ||
396         y >= dst_h || y+src_h < 0)
397         return; /* no intersection */
398
399     if (s->main_is_packed_rgb) {
400         uint8_t alpha;          ///< the amount of overlay to blend on to main
401         const int dr = s->main_rgba_map[R];
402         const int dg = s->main_rgba_map[G];
403         const int db = s->main_rgba_map[B];
404         const int da = s->main_rgba_map[A];
405         const int dstep = s->main_pix_step[0];
406         const int sr = s->overlay_rgba_map[R];
407         const int sg = s->overlay_rgba_map[G];
408         const int sb = s->overlay_rgba_map[B];
409         const int sa = s->overlay_rgba_map[A];
410         const int sstep = s->overlay_pix_step[0];
411         const int main_has_alpha = s->main_has_alpha;
412         uint8_t *s, *sp, *d, *dp;
413
414         i = FFMAX(-y, 0);
415         sp = src->data[0] + i     * src->linesize[0];
416         dp = dst->data[0] + (y+i) * dst->linesize[0];
417
418         for (imax = FFMIN(-y + dst_h, src_h); i < imax; i++) {
419             j = FFMAX(-x, 0);
420             s = sp + j     * sstep;
421             d = dp + (x+j) * dstep;
422
423             for (jmax = FFMIN(-x + dst_w, src_w); j < jmax; j++) {
424                 alpha = s[sa];
425
426                 // if the main channel has an alpha channel, alpha has to be calculated
427                 // to create an un-premultiplied (straight) alpha value
428                 if (main_has_alpha && alpha != 0 && alpha != 255) {
429                     uint8_t alpha_d = d[da];
430                     alpha = UNPREMULTIPLY_ALPHA(alpha, alpha_d);
431                 }
432
433                 switch (alpha) {
434                 case 0:
435                     break;
436                 case 255:
437                     d[dr] = s[sr];
438                     d[dg] = s[sg];
439                     d[db] = s[sb];
440                     break;
441                 default:
442                     // main_value = main_value * (1 - alpha) + overlay_value * alpha
443                     // since alpha is in the range 0-255, the result must divided by 255
444                     d[dr] = FAST_DIV255(d[dr] * (255 - alpha) + s[sr] * alpha);
445                     d[dg] = FAST_DIV255(d[dg] * (255 - alpha) + s[sg] * alpha);
446                     d[db] = FAST_DIV255(d[db] * (255 - alpha) + s[sb] * alpha);
447                 }
448                 if (main_has_alpha) {
449                     switch (alpha) {
450                     case 0:
451                         break;
452                     case 255:
453                         d[da] = s[sa];
454                         break;
455                     default:
456                         // apply alpha compositing: main_alpha += (1-main_alpha) * overlay_alpha
457                         d[da] += FAST_DIV255((255 - d[da]) * s[sa]);
458                     }
459                 }
460                 d += dstep;
461                 s += sstep;
462             }
463             dp += dst->linesize[0];
464             sp += src->linesize[0];
465         }
466     } else {
467         const int main_has_alpha = s->main_has_alpha;
468         if (main_has_alpha) {
469             uint8_t alpha;          ///< the amount of overlay to blend on to main
470             uint8_t *s, *sa, *d, *da;
471
472             i = FFMAX(-y, 0);
473             sa = src->data[3] + i     * src->linesize[3];
474             da = dst->data[3] + (y+i) * dst->linesize[3];
475
476             for (imax = FFMIN(-y + dst_h, src_h); i < imax; i++) {
477                 j = FFMAX(-x, 0);
478                 s = sa + j;
479                 d = da + x+j;
480
481                 for (jmax = FFMIN(-x + dst_w, src_w); j < jmax; j++) {
482                     alpha = *s;
483                     if (alpha != 0 && alpha != 255) {
484                         uint8_t alpha_d = *d;
485                         alpha = UNPREMULTIPLY_ALPHA(alpha, alpha_d);
486                     }
487                     switch (alpha) {
488                     case 0:
489                         break;
490                     case 255:
491                         *d = *s;
492                         break;
493                     default:
494                         // apply alpha compositing: main_alpha += (1-main_alpha) * overlay_alpha
495                         *d += FAST_DIV255((255 - *d) * *s);
496                     }
497                     d += 1;
498                     s += 1;
499                 }
500                 da += dst->linesize[3];
501                 sa += src->linesize[3];
502             }
503         }
504         for (i = 0; i < 3; i++) {
505             int hsub = i ? s->hsub : 0;
506             int vsub = i ? s->vsub : 0;
507             int src_wp = FF_CEIL_RSHIFT(src_w, hsub);
508             int src_hp = FF_CEIL_RSHIFT(src_h, vsub);
509             int dst_wp = FF_CEIL_RSHIFT(dst_w, hsub);
510             int dst_hp = FF_CEIL_RSHIFT(dst_h, vsub);
511             int yp = y>>vsub;
512             int xp = x>>hsub;
513             uint8_t *s, *sp, *d, *dp, *a, *ap;
514
515             j = FFMAX(-yp, 0);
516             sp = src->data[i] + j         * src->linesize[i];
517             dp = dst->data[i] + (yp+j)    * dst->linesize[i];
518             ap = src->data[3] + (j<<vsub) * src->linesize[3];
519
520             for (jmax = FFMIN(-yp + dst_hp, src_hp); j < jmax; j++) {
521                 k = FFMAX(-xp, 0);
522                 d = dp + xp+k;
523                 s = sp + k;
524                 a = ap + (k<<hsub);
525
526                 for (kmax = FFMIN(-xp + dst_wp, src_wp); k < kmax; k++) {
527                     int alpha_v, alpha_h, alpha;
528
529                     // average alpha for color components, improve quality
530                     if (hsub && vsub && j+1 < src_hp && k+1 < src_wp) {
531                         alpha = (a[0] + a[src->linesize[3]] +
532                                  a[1] + a[src->linesize[3]+1]) >> 2;
533                     } else if (hsub || vsub) {
534                         alpha_h = hsub && k+1 < src_wp ?
535                             (a[0] + a[1]) >> 1 : a[0];
536                         alpha_v = vsub && j+1 < src_hp ?
537                             (a[0] + a[src->linesize[3]]) >> 1 : a[0];
538                         alpha = (alpha_v + alpha_h) >> 1;
539                     } else
540                         alpha = a[0];
541                     // if the main channel has an alpha channel, alpha has to be calculated
542                     // to create an un-premultiplied (straight) alpha value
543                     if (main_has_alpha && alpha != 0 && alpha != 255) {
544                         // average alpha for color components, improve quality
545                         uint8_t alpha_d;
546                         if (hsub && vsub && j+1 < src_hp && k+1 < src_wp) {
547                             alpha_d = (d[0] + d[src->linesize[3]] +
548                                        d[1] + d[src->linesize[3]+1]) >> 2;
549                         } else if (hsub || vsub) {
550                             alpha_h = hsub && k+1 < src_wp ?
551                                 (d[0] + d[1]) >> 1 : d[0];
552                             alpha_v = vsub && j+1 < src_hp ?
553                                 (d[0] + d[src->linesize[3]]) >> 1 : d[0];
554                             alpha_d = (alpha_v + alpha_h) >> 1;
555                         } else
556                             alpha_d = d[0];
557                         alpha = UNPREMULTIPLY_ALPHA(alpha, alpha_d);
558                     }
559                     *d = FAST_DIV255(*d * (255 - alpha) + *s * alpha);
560                     s++;
561                     d++;
562                     a += 1 << hsub;
563                 }
564                 dp += dst->linesize[i];
565                 sp += src->linesize[i];
566                 ap += (1 << vsub) * src->linesize[3];
567             }
568         }
569     }
570 }
571
572 static AVFrame *do_blend(AVFilterContext *ctx, AVFrame *mainpic,
573                          const AVFrame *second)
574 {
575     OverlayContext *s = ctx->priv;
576     AVFilterLink *inlink = ctx->inputs[0];
577
578     if (s->eval_mode == EVAL_MODE_FRAME) {
579         int64_t pos = av_frame_get_pkt_pos(mainpic);
580
581         s->var_values[VAR_N] = inlink->frame_count;
582         s->var_values[VAR_T] = mainpic->pts == AV_NOPTS_VALUE ?
583             NAN : mainpic->pts * av_q2d(inlink->time_base);
584         s->var_values[VAR_POS] = pos == -1 ? NAN : pos;
585
586         eval_expr(ctx);
587         av_log(ctx, AV_LOG_DEBUG, "n:%f t:%f pos:%f x:%f xi:%d y:%f yi:%d\n",
588                s->var_values[VAR_N], s->var_values[VAR_T], s->var_values[VAR_POS],
589                s->var_values[VAR_X], s->x,
590                s->var_values[VAR_Y], s->y);
591     }
592
593     blend_image(ctx, mainpic, second, s->x, s->y);
594     return mainpic;
595 }
596
597 static int filter_frame(AVFilterLink *inlink, AVFrame *inpicref)
598 {
599     OverlayContext *s = inlink->dst->priv;
600     av_log(inlink->dst, AV_LOG_DEBUG, "Incoming frame (time:%s) from link #%d\n", av_ts2timestr(inpicref->pts, &inlink->time_base), FF_INLINK_IDX(inlink));
601     return ff_dualinput_filter_frame(&s->dinput, inlink, inpicref);
602 }
603
604 static int request_frame(AVFilterLink *outlink)
605 {
606     OverlayContext *s = outlink->src->priv;
607     return ff_dualinput_request_frame(&s->dinput, outlink);
608 }
609
610 static av_cold int init(AVFilterContext *ctx)
611 {
612     OverlayContext *s = ctx->priv;
613
614     if (s->allow_packed_rgb) {
615         av_log(ctx, AV_LOG_WARNING,
616                "The rgb option is deprecated and is overriding the format option, use format instead\n");
617         s->format = OVERLAY_FORMAT_RGB;
618     }
619     if (!s->dinput.repeatlast || s->eof_action == EOF_ACTION_PASS) {
620         s->dinput.repeatlast = 0;
621         s->eof_action = EOF_ACTION_PASS;
622     }
623     if (s->dinput.shortest || s->eof_action == EOF_ACTION_ENDALL) {
624         s->dinput.shortest = 1;
625         s->eof_action = EOF_ACTION_ENDALL;
626     }
627
628     s->dinput.process = do_blend;
629     return 0;
630 }
631
632 #define OFFSET(x) offsetof(OverlayContext, x)
633 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
634
635 static const AVOption overlay_options[] = {
636     { "x", "set the x expression", OFFSET(x_expr), AV_OPT_TYPE_STRING, {.str = "0"}, CHAR_MIN, CHAR_MAX, FLAGS },
637     { "y", "set the y expression", OFFSET(y_expr), AV_OPT_TYPE_STRING, {.str = "0"}, CHAR_MIN, CHAR_MAX, FLAGS },
638     { "eof_action", "Action to take when encountering EOF from secondary input ",
639         OFFSET(eof_action), AV_OPT_TYPE_INT, { .i64 = EOF_ACTION_REPEAT },
640         EOF_ACTION_REPEAT, EOF_ACTION_PASS, .flags = FLAGS, "eof_action" },
641         { "repeat", "Repeat the previous frame.",   0, AV_OPT_TYPE_CONST, { .i64 = EOF_ACTION_REPEAT }, .flags = FLAGS, "eof_action" },
642         { "endall", "End both streams.",            0, AV_OPT_TYPE_CONST, { .i64 = EOF_ACTION_ENDALL }, .flags = FLAGS, "eof_action" },
643         { "pass",   "Pass through the main input.", 0, AV_OPT_TYPE_CONST, { .i64 = EOF_ACTION_PASS },   .flags = FLAGS, "eof_action" },
644     { "eval", "specify when to evaluate expressions", OFFSET(eval_mode), AV_OPT_TYPE_INT, {.i64 = EVAL_MODE_FRAME}, 0, EVAL_MODE_NB-1, FLAGS, "eval" },
645          { "init",  "eval expressions once during initialization", 0, AV_OPT_TYPE_CONST, {.i64=EVAL_MODE_INIT},  .flags = FLAGS, .unit = "eval" },
646          { "frame", "eval expressions per-frame",                  0, AV_OPT_TYPE_CONST, {.i64=EVAL_MODE_FRAME}, .flags = FLAGS, .unit = "eval" },
647     { "rgb", "force packed RGB in input and output (deprecated)", OFFSET(allow_packed_rgb), AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1, FLAGS },
648     { "shortest", "force termination when the shortest input terminates", OFFSET(dinput.shortest), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, FLAGS },
649     { "format", "set output format", OFFSET(format), AV_OPT_TYPE_INT, {.i64=OVERLAY_FORMAT_YUV420}, 0, OVERLAY_FORMAT_NB-1, FLAGS, "format" },
650         { "yuv420", "", 0, AV_OPT_TYPE_CONST, {.i64=OVERLAY_FORMAT_YUV420}, .flags = FLAGS, .unit = "format" },
651         { "yuv422", "", 0, AV_OPT_TYPE_CONST, {.i64=OVERLAY_FORMAT_YUV422}, .flags = FLAGS, .unit = "format" },
652         { "yuv444", "", 0, AV_OPT_TYPE_CONST, {.i64=OVERLAY_FORMAT_YUV444}, .flags = FLAGS, .unit = "format" },
653         { "rgb",    "", 0, AV_OPT_TYPE_CONST, {.i64=OVERLAY_FORMAT_RGB},    .flags = FLAGS, .unit = "format" },
654     { "repeatlast", "repeat overlay of the last overlay frame", OFFSET(dinput.repeatlast), AV_OPT_TYPE_BOOL, {.i64=1}, 0, 1, FLAGS },
655     { NULL }
656 };
657
658 AVFILTER_DEFINE_CLASS(overlay);
659
660 static const AVFilterPad avfilter_vf_overlay_inputs[] = {
661     {
662         .name         = "main",
663         .type         = AVMEDIA_TYPE_VIDEO,
664         .config_props = config_input_main,
665         .filter_frame = filter_frame,
666         .needs_writable = 1,
667     },
668     {
669         .name         = "overlay",
670         .type         = AVMEDIA_TYPE_VIDEO,
671         .config_props = config_input_overlay,
672         .filter_frame = filter_frame,
673     },
674     { NULL }
675 };
676
677 static const AVFilterPad avfilter_vf_overlay_outputs[] = {
678     {
679         .name          = "default",
680         .type          = AVMEDIA_TYPE_VIDEO,
681         .config_props  = config_output,
682         .request_frame = request_frame,
683     },
684     { NULL }
685 };
686
687 AVFilter ff_vf_overlay = {
688     .name          = "overlay",
689     .description   = NULL_IF_CONFIG_SMALL("Overlay a video source on top of the input."),
690     .init          = init,
691     .uninit        = uninit,
692     .priv_size     = sizeof(OverlayContext),
693     .priv_class    = &overlay_class,
694     .query_formats = query_formats,
695     .process_command = process_command,
696     .inputs        = avfilter_vf_overlay_inputs,
697     .outputs       = avfilter_vf_overlay_outputs,
698     .flags         = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL,
699 };