libavfilter/vf_overlay.c
58935b25
 /*
  * Copyright (c) 2010 Stefano Sabatini
  * Copyright (c) 2010 Baptiste Coudurier
  * Copyright (c) 2007 Bobby Bingham
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 /**
  * @file
  * overlay one video on top of another
  */
 
7bdefc0f
 /* #define DEBUG */
 
58935b25
 #include "avfilter.h"
b74a1da4
 #include "formats.h"
1d9c2dc8
 #include "libavutil/common.h"
58935b25
 #include "libavutil/eval.h"
 #include "libavutil/avstring.h"
b54c0a55
 #include "libavutil/opt.h"
58935b25
 #include "libavutil/pixdesc.h"
7ffe76e5
 #include "libavutil/imgutils.h"
0ebcdf5c
 #include "libavutil/mathematics.h"
7bdefc0f
 #include "libavutil/timestamp.h"
58935b25
 #include "internal.h"
06bf6d3b
 #include "bufferqueue.h"
3013bfa8
 #include "drawutils.h"
803391f7
 #include "video.h"
58935b25
 
b0f29db5
 static const char *const var_names[] = {
58935b25
     "main_w",    "W", ///< width  of the main    video
     "main_h",    "H", ///< height of the main    video
     "overlay_w", "w", ///< width  of the overlay video
     "overlay_h", "h", ///< height of the overlay video
     NULL
 };
 
 enum var_name {
     VAR_MAIN_W,    VAR_MW,
     VAR_MAIN_H,    VAR_MH,
     VAR_OVERLAY_W, VAR_OW,
     VAR_OVERLAY_H, VAR_OH,
     VAR_VARS_NB
 };
 
 #define MAIN    0
 #define OVERLAY 1
 
3013bfa8
 #define R 0
 #define G 1
 #define B 2
 #define A 3
 
 #define Y 0
 #define U 1
 #define V 2
 
58935b25
 typedef struct {
b54c0a55
     const AVClass *class;
58935b25
     int x, y;                   ///< position of overlayed picture
 
3013bfa8
     int allow_packed_rgb;
06bf6d3b
     uint8_t frame_requested;
     uint8_t overlay_eof;
3013bfa8
     uint8_t main_is_packed_rgb;
     uint8_t main_rgba_map[4];
     uint8_t main_has_alpha;
     uint8_t overlay_is_packed_rgb;
     uint8_t overlay_rgba_map[4];
     uint8_t overlay_has_alpha;
 
06bf6d3b
     AVFilterBufferRef *overpicref;
     struct FFBufQueue queue_main;
     struct FFBufQueue queue_over;
58935b25
 
3013bfa8
     int main_pix_step[4];       ///< steps per pixel for each plane of the main output
     int overlay_pix_step[4];    ///< steps per pixel for each plane of the overlay
58935b25
     int hsub, vsub;             ///< chroma subsampling values
 
b54c0a55
     char *x_expr, *y_expr;
58935b25
 } OverlayContext;
 
b54c0a55
 #define OFFSET(x) offsetof(OverlayContext, x)
42d621d1
 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
58935b25
 
b54c0a55
 static const AVOption overlay_options[] = {
42d621d1
     { "x", "set the x expression", OFFSET(x_expr), AV_OPT_TYPE_STRING, {.str = "0"}, CHAR_MIN, CHAR_MAX, FLAGS },
     { "y", "set the y expression", OFFSET(y_expr), AV_OPT_TYPE_STRING, {.str = "0"}, CHAR_MIN, CHAR_MAX, FLAGS },
d46c1c72
     {"rgb", "force packed RGB in input and output", OFFSET(allow_packed_rgb), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, FLAGS },
b54c0a55
     {NULL},
 };
 
c17808ce
 AVFILTER_DEFINE_CLASS(overlay);
58935b25
 
a5e8c41c
 static av_cold int init(AVFilterContext *ctx, const char *args)
b54c0a55
 {
     OverlayContext *over = ctx->priv;
     char *args1 = av_strdup(args);
     char *expr, *bufptr = NULL;
     int ret = 0;
 
     over->class = &overlay_class;
     av_opt_set_defaults(over);
 
     if (expr = av_strtok(args1, ":", &bufptr)) {
bbf372e1
         av_free(over->x_expr);
b54c0a55
         if (!(over->x_expr = av_strdup(expr))) {
             ret = AVERROR(ENOMEM);
             goto end;
         }
     }
     if (expr = av_strtok(NULL, ":", &bufptr)) {
bbf372e1
         av_free(over->y_expr);
b54c0a55
         if (!(over->y_expr = av_strdup(expr))) {
             ret = AVERROR(ENOMEM);
             goto end;
         }
     }
 
     if (bufptr && (ret = av_set_options_string(over, bufptr, "=", ":")) < 0)
         goto end;
 
 end:
     av_free(args1);
     return ret;
58935b25
 }
 
 static av_cold void uninit(AVFilterContext *ctx)
 {
     OverlayContext *over = ctx->priv;
 
b54c0a55
     av_freep(&over->x_expr);
     av_freep(&over->y_expr);
 
02ac7311
     avfilter_unref_bufferp(&over->overpicref);
06bf6d3b
     ff_bufqueue_discard_all(&over->queue_main);
     ff_bufqueue_discard_all(&over->queue_over);
58935b25
 }
 
 static int query_formats(AVFilterContext *ctx)
 {
3013bfa8
     OverlayContext *over = ctx->priv;
 
     /* overlay formats contains alpha, for avoiding conversion with alpha information loss */
     const enum PixelFormat main_pix_fmts_yuv[] = { PIX_FMT_YUV420P,  PIX_FMT_NONE };
     const enum PixelFormat overlay_pix_fmts_yuv[] = { PIX_FMT_YUVA420P, PIX_FMT_NONE };
     const enum PixelFormat main_pix_fmts_rgb[] = {
         PIX_FMT_ARGB,  PIX_FMT_RGBA,
         PIX_FMT_ABGR,  PIX_FMT_BGRA,
         PIX_FMT_RGB24, PIX_FMT_BGR24,
         PIX_FMT_NONE
     };
     const enum PixelFormat overlay_pix_fmts_rgb[] = {
         PIX_FMT_ARGB,  PIX_FMT_RGBA,
         PIX_FMT_ABGR,  PIX_FMT_BGRA,
         PIX_FMT_NONE
     };
 
     AVFilterFormats *main_formats;
     AVFilterFormats *overlay_formats;
 
     if (over->allow_packed_rgb) {
ad60b3b1
         main_formats    = ff_make_format_list(main_pix_fmts_rgb);
         overlay_formats = ff_make_format_list(overlay_pix_fmts_rgb);
3013bfa8
     } else {
ad60b3b1
         main_formats    = ff_make_format_list(main_pix_fmts_yuv);
         overlay_formats = ff_make_format_list(overlay_pix_fmts_yuv);
3013bfa8
     }
58935b25
 
ad60b3b1
     ff_formats_ref(main_formats,    &ctx->inputs [MAIN   ]->out_formats);
     ff_formats_ref(overlay_formats, &ctx->inputs [OVERLAY]->out_formats);
     ff_formats_ref(main_formats,    &ctx->outputs[MAIN   ]->in_formats );
58935b25
 
     return 0;
 }
 
6f6ab1d9
 static const enum PixelFormat alpha_pix_fmts[] = {
3013bfa8
     PIX_FMT_YUVA420P, PIX_FMT_ARGB, PIX_FMT_ABGR, PIX_FMT_RGBA,
     PIX_FMT_BGRA, PIX_FMT_NONE
 };
 
58935b25
 static int config_input_main(AVFilterLink *inlink)
 {
     OverlayContext *over = inlink->dst->priv;
     const AVPixFmtDescriptor *pix_desc = &av_pix_fmt_descriptors[inlink->format];
 
3013bfa8
     av_image_fill_max_pixsteps(over->main_pix_step,    NULL, pix_desc);
 
58935b25
     over->hsub = pix_desc->log2_chroma_w;
     over->vsub = pix_desc->log2_chroma_h;
 
3013bfa8
     over->main_is_packed_rgb =
         ff_fill_rgba_map(over->main_rgba_map, inlink->format) >= 0;
     over->main_has_alpha = ff_fmt_is_in(inlink->format, alpha_pix_fmts);
58935b25
     return 0;
 }
 
 static int config_input_overlay(AVFilterLink *inlink)
 {
     AVFilterContext *ctx  = inlink->dst;
     OverlayContext  *over = inlink->dst->priv;
     char *expr;
     double var_values[VAR_VARS_NB], res;
     int ret;
3013bfa8
     const AVPixFmtDescriptor *pix_desc = &av_pix_fmt_descriptors[inlink->format];
 
     av_image_fill_max_pixsteps(over->overlay_pix_step, NULL, pix_desc);
58935b25
 
     /* Finish the configuration by evaluating the expressions
        now when both inputs are configured. */
     var_values[VAR_MAIN_W   ] = var_values[VAR_MW] = ctx->inputs[MAIN   ]->w;
     var_values[VAR_MAIN_H   ] = var_values[VAR_MH] = ctx->inputs[MAIN   ]->h;
     var_values[VAR_OVERLAY_W] = var_values[VAR_OW] = ctx->inputs[OVERLAY]->w;
     var_values[VAR_OVERLAY_H] = var_values[VAR_OH] = ctx->inputs[OVERLAY]->h;
 
     if ((ret = av_expr_parse_and_eval(&res, (expr = over->x_expr), var_names, var_values,
                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
         goto fail;
     over->x = res;
     if ((ret = av_expr_parse_and_eval(&res, (expr = over->y_expr), var_names, var_values,
                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)))
         goto fail;
     over->y = res;
     /* x may depend on y */
     if ((ret = av_expr_parse_and_eval(&res, (expr = over->x_expr), var_names, var_values,
                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
         goto fail;
     over->x = res;
 
3013bfa8
     over->overlay_is_packed_rgb =
         ff_fill_rgba_map(over->overlay_rgba_map, inlink->format) >= 0;
     over->overlay_has_alpha = ff_fmt_is_in(inlink->format, alpha_pix_fmts);
 
1a49a169
     av_log(ctx, AV_LOG_VERBOSE,
58935b25
            "main w:%d h:%d fmt:%s overlay x:%d y:%d w:%d h:%d fmt:%s\n",
            ctx->inputs[MAIN]->w, ctx->inputs[MAIN]->h,
            av_pix_fmt_descriptors[ctx->inputs[MAIN]->format].name,
            over->x, over->y,
            ctx->inputs[OVERLAY]->w, ctx->inputs[OVERLAY]->h,
            av_pix_fmt_descriptors[ctx->inputs[OVERLAY]->format].name);
 
     if (over->x < 0 || over->y < 0 ||
         over->x + var_values[VAR_OVERLAY_W] > var_values[VAR_MAIN_W] ||
         over->y + var_values[VAR_OVERLAY_H] > var_values[VAR_MAIN_H]) {
         av_log(ctx, AV_LOG_ERROR,
                "Overlay area (%d,%d)<->(%d,%d) not within the main area (0,0)<->(%d,%d) or zero-sized\n",
                over->x, over->y,
                (int)(over->x + var_values[VAR_OVERLAY_W]),
                (int)(over->y + var_values[VAR_OVERLAY_H]),
                (int)var_values[VAR_MAIN_W], (int)var_values[VAR_MAIN_H]);
         return AVERROR(EINVAL);
     }
     return 0;
 
 fail:
     av_log(NULL, AV_LOG_ERROR,
            "Error when evaluating the expression '%s'\n", expr);
     return ret;
 }
 
 static int config_output(AVFilterLink *outlink)
 {
     AVFilterContext *ctx = outlink->src;
     int exact;
     // common timebase computation:
     AVRational tb1 = ctx->inputs[MAIN   ]->time_base;
     AVRational tb2 = ctx->inputs[OVERLAY]->time_base;
     AVRational *tb = &ctx->outputs[0]->time_base;
     exact = av_reduce(&tb->num, &tb->den,
                       av_gcd((int64_t)tb1.num * tb2.den,
                              (int64_t)tb2.num * tb1.den),
                       (int64_t)tb1.den * tb2.den, INT_MAX);
1a49a169
     av_log(ctx, AV_LOG_VERBOSE,
58935b25
            "main_tb:%d/%d overlay_tb:%d/%d -> tb:%d/%d exact:%d\n",
            tb1.num, tb1.den, tb2.num, tb2.den, tb->num, tb->den, exact);
     if (!exact)
         av_log(ctx, AV_LOG_WARNING,
                "Timestamp conversion inexact, timestamp information loss may occurr\n");
 
     outlink->w = ctx->inputs[MAIN]->w;
     outlink->h = ctx->inputs[MAIN]->h;
 
     return 0;
 }
 
 static AVFilterBufferRef *get_video_buffer(AVFilterLink *link, int perms, int w, int h)
 {
6d58358a
     return ff_get_video_buffer(link->dst->outputs[0], perms, w, h);
58935b25
 }
 
3013bfa8
 // divide by 255 and round to nearest
 // apply a fast variant: (X+127)/255 = ((X+127)*257+257)>>16 = ((X+128)*257)>>16
 #define FAST_DIV255(x) ((((x) + 128) * 257) >> 16)
 
58935b25
 static void blend_slice(AVFilterContext *ctx,
                         AVFilterBufferRef *dst, AVFilterBufferRef *src,
                         int x, int y, int w, int h,
                         int slice_y, int slice_w, int slice_h)
 {
     OverlayContext *over = ctx->priv;
     int i, j, k;
     int width, height;
     int overlay_end_y = y+h;
     int slice_end_y = slice_y+slice_h;
     int end_y, start_y;
 
     width = FFMIN(slice_w - x, w);
     end_y = FFMIN(slice_end_y, overlay_end_y);
     start_y = FFMAX(y, slice_y);
     height = end_y - start_y;
 
3013bfa8
     if (over->main_is_packed_rgb) {
         uint8_t *dp = dst->data[0] + x * over->main_pix_step[0] +
                       start_y * dst->linesize[0];
58935b25
         uint8_t *sp = src->data[0];
3013bfa8
         uint8_t alpha;          ///< the amount of overlay to blend on to main
         const int dr = over->main_rgba_map[R];
         const int dg = over->main_rgba_map[G];
         const int db = over->main_rgba_map[B];
2f7c8aef
         const int da = over->main_rgba_map[A];
3013bfa8
         const int dstep = over->main_pix_step[0];
         const int sr = over->overlay_rgba_map[R];
         const int sg = over->overlay_rgba_map[G];
         const int sb = over->overlay_rgba_map[B];
         const int sa = over->overlay_rgba_map[A];
         const int sstep = over->overlay_pix_step[0];
2f7c8aef
         const int main_has_alpha = over->main_has_alpha;
58935b25
         if (slice_y > y)
             sp += (slice_y - y) * src->linesize[0];
         for (i = 0; i < height; i++) {
             uint8_t *d = dp, *s = sp;
             for (j = 0; j < width; j++) {
3013bfa8
                 alpha = s[sa];
2f7c8aef
 
                 // if the main channel has an alpha channel, alpha has to be calculated
                 // to create an un-premultiplied (straight) alpha value
                 if (main_has_alpha && alpha != 0 && alpha != 255) {
                     // apply the general equation:
                     // alpha = alpha_overlay / ( (alpha_main + alpha_overlay) - (alpha_main * alpha_overlay) )
                     alpha =
                         // the next line is a faster version of: 255 * 255 * alpha
                         ( (alpha << 16) - (alpha << 9) + alpha )
                         /
                         // the next line is a faster version of: 255 * (alpha + d[da])
                         ( ((alpha + d[da]) << 8 ) - (alpha + d[da])
                           - d[da] * alpha );
                 }
 
3013bfa8
                 switch (alpha) {
                 case 0:
                     break;
                 case 255:
                     d[dr] = s[sr];
                     d[dg] = s[sg];
                     d[db] = s[sb];
                     break;
                 default:
                     // main_value = main_value * (1 - alpha) + overlay_value * alpha
                     // since alpha is in the range 0-255, the result must divided by 255
                     d[dr] = FAST_DIV255(d[dr] * (255 - alpha) + s[sr] * alpha);
                     d[dg] = FAST_DIV255(d[dg] * (255 - alpha) + s[sg] * alpha);
                     d[db] = FAST_DIV255(d[db] * (255 - alpha) + s[sb] * alpha);
                 }
2f7c8aef
                 if (main_has_alpha) {
                     switch (alpha) {
                     case 0:
                         break;
                     case 255:
                         d[da] = s[sa];
                         break;
                     default:
                         // apply alpha compositing: main_alpha += (1-main_alpha) * overlay_alpha
                         d[da] += FAST_DIV255((255 - d[da]) * s[sa]);
                     }
                 }
3013bfa8
                 d += dstep;
                 s += sstep;
58935b25
             }
             dp += dst->linesize[0];
             sp += src->linesize[0];
         }
     } else {
         for (i = 0; i < 3; i++) {
             int hsub = i ? over->hsub : 0;
             int vsub = i ? over->vsub : 0;
             uint8_t *dp = dst->data[i] + (x >> hsub) +
                 (start_y >> vsub) * dst->linesize[i];
             uint8_t *sp = src->data[i];
             uint8_t *ap = src->data[3];
             int wp = FFALIGN(width, 1<<hsub) >> hsub;
             int hp = FFALIGN(height, 1<<vsub) >> vsub;
             if (slice_y > y) {
                 sp += ((slice_y - y) >> vsub) * src->linesize[i];
                 ap += (slice_y - y) * src->linesize[3];
             }
             for (j = 0; j < hp; j++) {
                 uint8_t *d = dp, *s = sp, *a = ap;
                 for (k = 0; k < wp; k++) {
                     // average alpha for color components, improve quality
                     int alpha_v, alpha_h, alpha;
                     if (hsub && vsub && j+1 < hp && k+1 < wp) {
                         alpha = (a[0] + a[src->linesize[3]] +
                                  a[1] + a[src->linesize[3]+1]) >> 2;
                     } else if (hsub || vsub) {
                         alpha_h = hsub && k+1 < wp ?
                             (a[0] + a[1]) >> 1 : a[0];
                         alpha_v = vsub && j+1 < hp ?
                             (a[0] + a[src->linesize[3]]) >> 1 : a[0];
                         alpha = (alpha_v + alpha_h) >> 1;
                     } else
                         alpha = a[0];
0b3e9d5d
                     *d = FAST_DIV255(*d * (255 - alpha) + *s * alpha);
                     s++;
58935b25
                     d++;
                     a += 1 << hsub;
                 }
                 dp += dst->linesize[i];
                 sp += src->linesize[i];
                 ap += (1 << vsub) * src->linesize[3];
             }
         }
     }
 }
 
06bf6d3b
 static int try_start_frame(AVFilterContext *ctx, AVFilterBufferRef *mainpic)
58935b25
 {
06bf6d3b
     OverlayContext *over = ctx->priv;
     AVFilterLink *outlink = ctx->outputs[0];
     AVFilterBufferRef *next_overpic, *outpicref;
52820bc5
     int ret;
06bf6d3b
 
     /* Discard obsolete overlay frames: if there is a next frame with pts is
      * before the main frame, we can drop the current overlay. */
     while (1) {
         next_overpic = ff_bufqueue_peek(&over->queue_over, 0);
         if (!next_overpic || next_overpic->pts > mainpic->pts)
             break;
         ff_bufqueue_get(&over->queue_over);
         avfilter_unref_buffer(over->overpicref);
         over->overpicref = next_overpic;
     }
     /* If there is no next frame and no EOF and the overlay frame is before
      * the main frame, we can not know yet if it will be superseded. */
     if (!over->queue_over.available && !over->overlay_eof &&
         (!over->overpicref || over->overpicref->pts < mainpic->pts))
         return AVERROR(EAGAIN);
     /* At this point, we know that the current overlay frame extends to the
      * time of the main frame. */
     outlink->out_buf = outpicref = avfilter_ref_buffer(mainpic, ~0);
 
     av_dlog(ctx, "main_pts:%s main_pts_time:%s",
             av_ts2str(outpicref->pts), av_ts2timestr(outpicref->pts, &outlink->time_base));
     if (over->overpicref)
         av_dlog(ctx, " over_pts:%s over_pts_time:%s",
                 av_ts2str(over->overpicref->pts), av_ts2timestr(over->overpicref->pts, &outlink->time_base));
     av_dlog(ctx, "\n");
 
52820bc5
     ret = ff_start_frame(ctx->outputs[0], avfilter_ref_buffer(outpicref, ~0));
06bf6d3b
     over->frame_requested = 0;
52820bc5
     return ret;
06bf6d3b
 }
 
 static int try_start_next_frame(AVFilterContext *ctx)
 {
     OverlayContext *over = ctx->priv;
     AVFilterBufferRef *next_mainpic = ff_bufqueue_peek(&over->queue_main, 0);
52820bc5
     int ret;
 
     if (!next_mainpic)
06bf6d3b
         return AVERROR(EAGAIN);
52820bc5
     if ((ret = try_start_frame(ctx, next_mainpic)) == AVERROR(EAGAIN))
         return ret;
06bf6d3b
     avfilter_unref_buffer(ff_bufqueue_get(&over->queue_main));
52820bc5
     return ret;
06bf6d3b
 }
 
 static int try_push_frame(AVFilterContext *ctx)
 {
     OverlayContext *over = ctx->priv;
58935b25
     AVFilterLink *outlink = ctx->outputs[0];
ad55244c
     AVFilterBufferRef *outpicref;
52820bc5
     int ret;
06bf6d3b
 
52820bc5
     if ((ret = try_start_next_frame(ctx)) < 0)
         return ret;
06bf6d3b
     outpicref = outlink->out_buf;
     if (over->overpicref)
         blend_slice(ctx, outpicref, over->overpicref, over->x, over->y,
                     over->overpicref->video->w, over->overpicref->video->h,
                     0, outpicref->video->w, outpicref->video->h);
52820bc5
     if ((ret = ff_draw_slice(outlink, 0, outpicref->video->h, +1)) < 0 ||
         (ret = ff_end_frame(outlink)) < 0)
         return ret;
06bf6d3b
     return 0;
 }
 
52820bc5
 static int flush_frames(AVFilterContext *ctx)
06bf6d3b
 {
52820bc5
     int ret;
 
     while (!(ret = try_push_frame(ctx)));
     return ret == AVERROR(EAGAIN) ? 0 : ret;
06bf6d3b
 }
 
88beb2df
 static int start_frame_main(AVFilterLink *inlink, AVFilterBufferRef *inpicref)
06bf6d3b
 {
     AVFilterContext *ctx = inlink->dst;
     OverlayContext *over = ctx->priv;
52820bc5
     int ret;
06bf6d3b
 
52820bc5
     if ((ret = flush_frames(ctx)) < 0)
         return ret;
06bf6d3b
     inpicref->pts = av_rescale_q(inpicref->pts, ctx->inputs[MAIN]->time_base,
                                  ctx->outputs[0]->time_base);
52820bc5
     if ((ret = try_start_frame(ctx, inpicref)) < 0) {
         if (ret != AVERROR(EAGAIN))
             return ret;
06bf6d3b
         ff_bufqueue_add(ctx, &over->queue_main, inpicref);
9c1d649c
         av_assert1(inpicref == inlink->cur_buf);
         inlink->cur_buf = NULL;
     }
88beb2df
     return 0;
06bf6d3b
 }
 
88beb2df
 static int draw_slice_main(AVFilterLink *inlink, int y, int h, int slice_dir)
06bf6d3b
 {
     AVFilterContext *ctx = inlink->dst;
58935b25
     OverlayContext *over = ctx->priv;
06bf6d3b
     AVFilterLink *outlink = ctx->outputs[0];
     AVFilterBufferRef *outpicref = outlink->out_buf;
58935b25
 
06bf6d3b
     if (!outpicref)
67a30498
         return 0;
58935b25
     if (over->overpicref &&
06bf6d3b
         y + h > over->y && y < over->y + over->overpicref->video->h) {
58935b25
         blend_slice(ctx, outpicref, over->overpicref, over->x, over->y,
                     over->overpicref->video->w, over->overpicref->video->h,
                     y, outpicref->video->w, h);
     }
e9b992d0
     return ff_draw_slice(outlink, y, h, slice_dir);
58935b25
 }
 
88beb2df
 static int end_frame_main(AVFilterLink *inlink)
58935b25
 {
06bf6d3b
     AVFilterContext *ctx = inlink->dst;
     AVFilterLink *outlink = ctx->outputs[0];
     AVFilterBufferRef *outpicref = outlink->out_buf;
     flush_frames(ctx);
58935b25
 
06bf6d3b
     if (!outpicref)
88beb2df
         return 0;
     return ff_end_frame(ctx->outputs[0]);
06bf6d3b
 }
58935b25
 
88beb2df
 static int start_frame_over(AVFilterLink *inlink, AVFilterBufferRef *inpicref)
06bf6d3b
 {
e9b992d0
     return 0;
06bf6d3b
 }
58935b25
 
88beb2df
 static int end_frame_over(AVFilterLink *inlink)
e36b25d1
 {
06bf6d3b
     AVFilterContext *ctx = inlink->dst;
     OverlayContext *over = ctx->priv;
     AVFilterBufferRef *inpicref = inlink->cur_buf;
52820bc5
     int ret;
 
f7e0c185
     inlink->cur_buf = NULL;
e36b25d1
 
52820bc5
     if ((ret = flush_frames(ctx)) < 0)
         return ret;
06bf6d3b
     inpicref->pts = av_rescale_q(inpicref->pts, ctx->inputs[OVERLAY]->time_base,
                                  ctx->outputs[0]->time_base);
     ff_bufqueue_add(ctx, &over->queue_over, inpicref);
52820bc5
     ret = try_push_frame(ctx);
     return ret == AVERROR(EAGAIN) ? 0 : ret;
06bf6d3b
 }
e36b25d1
 
06bf6d3b
 static int request_frame(AVFilterLink *outlink)
 {
     AVFilterContext *ctx = outlink->src;
     OverlayContext *over = ctx->priv;
     int input, ret;
 
     if (!try_push_frame(ctx))
         return 0;
     over->frame_requested = 1;
     while (over->frame_requested) {
         /* TODO if we had a frame duration, we could guess more accurately */
         input = !over->overlay_eof && (over->queue_main.available ||
                                        over->queue_over.available < 2) ?
                 OVERLAY : MAIN;
ad60b3b1
         ret = ff_request_frame(ctx->inputs[input]);
06bf6d3b
         /* EOF on main is reported immediately */
         if (ret == AVERROR_EOF && input == OVERLAY) {
             over->overlay_eof = 1;
52820bc5
             if ((ret = try_start_next_frame(ctx)) != AVERROR(EAGAIN))
                 return ret;
06bf6d3b
             ret = 0; /* continue requesting frames on main */
         }
         if (ret < 0)
             return ret;
     }
     return 0;
e36b25d1
 }
 
88beb2df
 static int null_draw_slice(AVFilterLink *inlink, int y, int h, int slice_dir)
 {
     return 0;
e36b25d1
 }
06bf6d3b
 
58935b25
 AVFilter avfilter_vf_overlay = {
     .name      = "overlay",
     .description = NULL_IF_CONFIG_SMALL("Overlay a video source on top of the input."),
 
     .init      = init,
     .uninit    = uninit,
 
     .priv_size = sizeof(OverlayContext),
 
     .query_formats = query_formats,
 
3db40703
     .inputs    = (const AVFilterPad[]) {{ .name            = "main",
                                           .type            = AVMEDIA_TYPE_VIDEO,
                                           .get_video_buffer= get_video_buffer,
                                           .config_props    = config_input_main,
9023de34
                                           .start_frame     = start_frame_main,
                                           .draw_slice      = draw_slice_main,
                                           .end_frame       = end_frame_main,
616c3f3e
                                           .min_perms       = AV_PERM_READ | AV_PERM_WRITE | AV_PERM_PRESERVE },
3db40703
                                         { .name            = "overlay",
                                           .type            = AVMEDIA_TYPE_VIDEO,
                                           .config_props    = config_input_overlay,
9023de34
                                           .start_frame     = start_frame_over,
3db40703
                                           .draw_slice      = null_draw_slice,
9023de34
                                           .end_frame       = end_frame_over,
616c3f3e
                                           .min_perms       = AV_PERM_READ | AV_PERM_PRESERVE },
3db40703
                                         { .name = NULL}},
     .outputs   = (const AVFilterPad[]) {{ .name            = "default",
                                           .type            = AVMEDIA_TYPE_VIDEO,
616c3f3e
                                           .rej_perms       = AV_PERM_WRITE,
3db40703
                                           .config_props    = config_output,
9023de34
                                           .request_frame   = request_frame, },
3db40703
                                         { .name = NULL}},
42d621d1
     .priv_class = &overlay_class,
58935b25
 };