libavfilter/vf_pad.c
3c940173
 /*
3fa77bde
  * Copyright (c) 2008 vmrsss
  * Copyright (c) 2009 Stefano Sabatini
3c940173
  *
  * 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
  */
 
 /**
aeaa9630
  * @file
bb3a2b72
  * video padding filter
3c940173
  */
 
 #include "avfilter.h"
b74a1da4
 #include "formats.h"
9d0bfc50
 #include "internal.h"
803391f7
 #include "video.h"
484a3308
 #include "libavutil/avstring.h"
1d9c2dc8
 #include "libavutil/common.h"
484a3308
 #include "libavutil/eval.h"
3c940173
 #include "libavutil/pixdesc.h"
2b4abbd6
 #include "libavutil/colorspace.h"
e3331706
 #include "libavutil/avassert.h"
7ffe76e5
 #include "libavutil/imgutils.h"
 #include "libavutil/parseutils.h"
0ebcdf5c
 #include "libavutil/mathematics.h"
bcfd9e82
 #include "drawutils.h"
e3331706
 
b0f29db5
 static const char *const var_names[] = {
484a3308
     "in_w",   "iw",
     "in_h",   "ih",
     "out_w",  "ow",
     "out_h",  "oh",
     "x",
     "y",
61d55fda
     "a",
0bf02fb1
     "sar",
61d55fda
     "dar",
484a3308
     "hsub",
     "vsub",
     NULL
 };
 
 enum var_name {
     VAR_IN_W,   VAR_IW,
     VAR_IN_H,   VAR_IH,
     VAR_OUT_W,  VAR_OW,
     VAR_OUT_H,  VAR_OH,
     VAR_X,
     VAR_Y,
61d55fda
     VAR_A,
0bf02fb1
     VAR_SAR,
61d55fda
     VAR_DAR,
484a3308
     VAR_HSUB,
     VAR_VSUB,
     VARS_NB
 };
 
1b364fd2
 static int query_formats(AVFilterContext *ctx)
 {
ad60b3b1
     ff_set_common_formats(ctx, ff_draw_supported_pixel_formats(0));
1b364fd2
     return 0;
 }
 
3c940173
 typedef struct {
     int w, h;               ///< output dimensions, a value of 0 will result in the input size
     int x, y;               ///< offsets of the input area with respect to the padded area
     int in_w, in_h;         ///< width and height for the padded input video, which has to be aligned to the chroma values in order to avoid chroma issues
 
484a3308
     char w_expr[256];       ///< width  expression string
     char h_expr[256];       ///< height expression string
     char x_expr[256];       ///< width  expression string
     char y_expr[256];       ///< height expression string
 
53b7a3fe
     uint8_t rgba_color[4];  ///< color for the padding area
     FFDrawContext draw;
     FFDrawColor color;
e3331706
     int needs_copy;
3c940173
 } PadContext;
 
a5e8c41c
 static av_cold int init(AVFilterContext *ctx, const char *args)
3c940173
 {
     PadContext *pad = ctx->priv;
     char color_string[128] = "black";
 
484a3308
     av_strlcpy(pad->w_expr, "iw", sizeof(pad->w_expr));
     av_strlcpy(pad->h_expr, "ih", sizeof(pad->h_expr));
     av_strlcpy(pad->x_expr, "0" , sizeof(pad->w_expr));
     av_strlcpy(pad->y_expr, "0" , sizeof(pad->h_expr));
 
3c940173
     if (args)
b1b0fd27
         sscanf(args, "%255[^:]:%255[^:]:%255[^:]:%255[^:]:%127s",
484a3308
                pad->w_expr, pad->h_expr, pad->x_expr, pad->y_expr, color_string);
3c940173
 
53b7a3fe
     if (av_parse_color(pad->rgba_color, color_string, -1, ctx) < 0)
622e6ce5
         return AVERROR(EINVAL);
3c940173
 
     return 0;
 }
 
 static int config_input(AVFilterLink *inlink)
 {
     AVFilterContext *ctx = inlink->dst;
     PadContext *pad = ctx->priv;
53b7a3fe
     int ret;
484a3308
     double var_values[VARS_NB], res;
     char *expr;
3c940173
 
53b7a3fe
     ff_draw_init(&pad->draw, inlink->format, 0);
     ff_draw_color(&pad->draw, &pad->color, pad->rgba_color);
3c940173
 
484a3308
     var_values[VAR_IN_W]  = var_values[VAR_IW] = inlink->w;
     var_values[VAR_IN_H]  = var_values[VAR_IH] = inlink->h;
     var_values[VAR_OUT_W] = var_values[VAR_OW] = NAN;
     var_values[VAR_OUT_H] = var_values[VAR_OH] = NAN;
61d55fda
     var_values[VAR_A]     = (float) inlink->w / inlink->h;
0bf02fb1
     var_values[VAR_SAR]   = inlink->sample_aspect_ratio.num ?
         (float) inlink->sample_aspect_ratio.num / inlink->sample_aspect_ratio.den : 1;
61d55fda
     var_values[VAR_DAR]   = var_values[VAR_A] * var_values[VAR_SAR];
53b7a3fe
     var_values[VAR_HSUB]  = 1 << pad->draw.hsub_max;
     var_values[VAR_VSUB]  = 1 << pad->draw.vsub_max;
484a3308
 
     /* evaluate width and height */
     av_expr_parse_and_eval(&res, (expr = pad->w_expr),
                            var_names, var_values,
                            NULL, NULL, NULL, NULL, NULL, 0, ctx);
     pad->w = var_values[VAR_OUT_W] = var_values[VAR_OW] = res;
     if ((ret = av_expr_parse_and_eval(&res, (expr = pad->h_expr),
                                       var_names, var_values,
                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
         goto eval_fail;
     pad->h = var_values[VAR_OUT_H] = var_values[VAR_OH] = res;
     /* evaluate the width again, as it may depend on the evaluated output height */
     if ((ret = av_expr_parse_and_eval(&res, (expr = pad->w_expr),
                                       var_names, var_values,
                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
         goto eval_fail;
     pad->w = var_values[VAR_OUT_W] = var_values[VAR_OW] = res;
 
     /* evaluate x and y */
     av_expr_parse_and_eval(&res, (expr = pad->x_expr),
                            var_names, var_values,
                            NULL, NULL, NULL, NULL, NULL, 0, ctx);
     pad->x = var_values[VAR_X] = res;
     if ((ret = av_expr_parse_and_eval(&res, (expr = pad->y_expr),
                                       var_names, var_values,
                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
         goto eval_fail;
     pad->y = var_values[VAR_Y] = res;
     /* evaluate x again, as it may depend on the evaluated y value */
     if ((ret = av_expr_parse_and_eval(&res, (expr = pad->x_expr),
                                       var_names, var_values,
                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
         goto eval_fail;
     pad->x = var_values[VAR_X] = res;
 
     /* sanity check params */
     if (pad->w < 0 || pad->h < 0 || pad->x < 0 || pad->y < 0) {
         av_log(ctx, AV_LOG_ERROR, "Negative values are not acceptable.\n");
         return AVERROR(EINVAL);
     }
 
3c940173
     if (!pad->w)
         pad->w = inlink->w;
     if (!pad->h)
         pad->h = inlink->h;
 
53b7a3fe
     pad->w    = ff_draw_round_to_sub(&pad->draw, 0, -1, pad->w);
     pad->h    = ff_draw_round_to_sub(&pad->draw, 1, -1, pad->h);
     pad->x    = ff_draw_round_to_sub(&pad->draw, 0, -1, pad->x);
     pad->y    = ff_draw_round_to_sub(&pad->draw, 1, -1, pad->y);
     pad->in_w = ff_draw_round_to_sub(&pad->draw, 0, -1, inlink->w);
     pad->in_h = ff_draw_round_to_sub(&pad->draw, 1, -1, inlink->h);
3c940173
 
b536e2fa
     av_log(ctx, AV_LOG_VERBOSE, "w:%d h:%d -> w:%d h:%d x:%d y:%d color:0x%02X%02X%02X%02X\n",
8bca3493
            inlink->w, inlink->h, pad->w, pad->h, pad->x, pad->y,
53b7a3fe
            pad->rgba_color[0], pad->rgba_color[1], pad->rgba_color[2], pad->rgba_color[3]);
3c940173
 
     if (pad->x <  0 || pad->y <  0                      ||
         pad->w <= 0 || pad->h <= 0                      ||
         (unsigned)pad->x + (unsigned)inlink->w > pad->w ||
         (unsigned)pad->y + (unsigned)inlink->h > pad->h) {
         av_log(ctx, AV_LOG_ERROR,
                "Input area %d:%d:%d:%d not within the padded area 0:0:%d:%d or zero-sized\n",
                pad->x, pad->y, pad->x + inlink->w, pad->y + inlink->h, pad->w, pad->h);
622e6ce5
         return AVERROR(EINVAL);
3c940173
     }
 
     return 0;
484a3308
 
 eval_fail:
     av_log(NULL, AV_LOG_ERROR,
            "Error when evaluating the expression '%s'\n", expr);
     return ret;
 
3c940173
 }
 
 static int config_output(AVFilterLink *outlink)
 {
     PadContext *pad = outlink->src->priv;
 
     outlink->w = pad->w;
     outlink->h = pad->h;
     return 0;
 }
 
ecc8dada
 static AVFilterBufferRef *get_video_buffer(AVFilterLink *inlink, int perms, int w, int h)
3c940173
 {
     PadContext *pad = inlink->dst->priv;
d7dcd96a
     int align = (perms&AV_PERM_ALIGN) ? AVFILTER_ALIGN : 1;
3c940173
 
6d58358a
     AVFilterBufferRef *picref = ff_get_video_buffer(inlink->dst->outputs[0], perms,
c7b9eab2
                                                     w + (pad->w - pad->in_w) + 4*align,
6d58358a
                                                     h + (pad->h - pad->in_h));
f66b3905
     int plane;
3c940173
 
8f3a3ce7
     if (!picref)
         return NULL;
 
c71e9640
     picref->video->w = w;
     picref->video->h = h;
 
53b7a3fe
     for (plane = 0; plane < 4 && picref->data[plane]; plane++)
         picref->data[plane] += FFALIGN(pad->x >> pad->draw.hsub[plane], align) * pad->draw.pixelstep[plane] +
                                       (pad->y >> pad->draw.vsub[plane])        * picref->linesize[plane];
3c940173
 
     return picref;
 }
 
e3331706
 static int does_clip(PadContext *pad, AVFilterBufferRef *outpicref, int plane, int hsub, int vsub, int x, int y)
 {
     int64_t x_in_buf, y_in_buf;
 
     x_in_buf =  outpicref->data[plane] - outpicref->buf->data[plane]
53b7a3fe
              +  (x >> hsub) * pad->draw.pixelstep[plane]
              +  (y >> vsub) * outpicref->linesize[plane];
e3331706
 
53b7a3fe
     if(x_in_buf < 0 || x_in_buf % pad->draw.pixelstep[plane])
e3331706
         return 1;
53b7a3fe
     x_in_buf /= pad->draw.pixelstep[plane];
e3331706
 
     av_assert0(outpicref->buf->linesize[plane]>0); //while reference can use negative linesize the main buffer should not
 
     y_in_buf = x_in_buf / outpicref->buf->linesize[plane];
     x_in_buf %= outpicref->buf->linesize[plane];
 
     if(   y_in_buf<<vsub >= outpicref->buf->h
        || x_in_buf<<hsub >= outpicref->buf->w)
         return 1;
     return 0;
 }
 
ebc8d974
 static int start_frame(AVFilterLink *inlink, AVFilterBufferRef *inpicref)
3c940173
 {
     PadContext *pad = inlink->dst->priv;
7fce481a
     AVFilterBufferRef *outpicref = avfilter_ref_buffer(inpicref, ~0);
f493c644
     AVFilterBufferRef *for_next_filter;
ebc8d974
     int plane, ret = 0;
 
     if (!outpicref)
         return AVERROR(ENOMEM);
f66b3905
 
24eac3cf
     for (plane = 0; plane < 4 && outpicref->data[plane] && pad->draw.pixelstep[plane]; plane++) {
53b7a3fe
         int hsub = pad->draw.hsub[plane];
         int vsub = pad->draw.vsub[plane];
3c940173
 
e3331706
         av_assert0(outpicref->buf->w>0 && outpicref->buf->h>0);
 
         if(outpicref->format != outpicref->buf->format) //unsupported currently
             break;
 
53b7a3fe
         outpicref->data[plane] -=   (pad->x  >> hsub) * pad->draw.pixelstep[plane]
                                   + (pad->y  >> vsub) * outpicref->linesize[plane];
e3331706
 
         if(   does_clip(pad, outpicref, plane, hsub, vsub, 0, 0)
            || does_clip(pad, outpicref, plane, hsub, vsub, 0, pad->h-1)
            || does_clip(pad, outpicref, plane, hsub, vsub, pad->w-1, 0)
            || does_clip(pad, outpicref, plane, hsub, vsub, pad->w-1, pad->h-1)
           )
             break;
3c940173
     }
46c50b17
     pad->needs_copy= plane < 4 && outpicref->data[plane] || !(outpicref->perms & AV_PERM_WRITE);
e3331706
     if(pad->needs_copy){
         av_log(inlink->dst, AV_LOG_DEBUG, "Direct padding impossible allocating new frame\n");
         avfilter_unref_buffer(outpicref);
6d58358a
         outpicref = ff_get_video_buffer(inlink->dst->outputs[0], AV_PERM_WRITE | AV_PERM_NEG_LINESIZES,
                                         FFMAX(inlink->w, pad->w),
                                         FFMAX(inlink->h, pad->h));
ebc8d974
         if (!outpicref)
             return AVERROR(ENOMEM);
 
e3331706
         avfilter_copy_buffer_ref_props(outpicref, inpicref);
     }
 
69057b70
     outpicref->video->w = pad->w;
     outpicref->video->h = pad->h;
 
f493c644
     for_next_filter = avfilter_ref_buffer(outpicref, ~0);
ebc8d974
     if (!for_next_filter) {
         ret = AVERROR(ENOMEM);
         goto fail;
     }
 
     ret = ff_start_frame(inlink->dst->outputs[0], for_next_filter);
     if (ret < 0)
         goto fail;
 
     inlink->dst->outputs[0]->out_buf = outpicref;
     return 0;
 
 fail:
     avfilter_unref_bufferp(&outpicref);
     return ret;
3c940173
 }
 
e9b992d0
 static int draw_send_bar_slice(AVFilterLink *link, int y, int h, int slice_dir, int before_slice)
3c940173
 {
     PadContext *pad = link->dst->priv;
e9b992d0
     int bar_y, bar_h = 0, ret = 0;
3c940173
 
     if        (slice_dir * before_slice ==  1 && y == pad->y) {
         /* top bar */
         bar_y = 0;
         bar_h = pad->y;
     } else if (slice_dir * before_slice == -1 && (y + h) == (pad->y + pad->in_h)) {
         /* bottom bar */
         bar_y = pad->y + pad->in_h;
         bar_h = pad->h - pad->in_h - pad->y;
     }
 
     if (bar_h) {
53b7a3fe
         ff_fill_rectangle(&pad->draw, &pad->color,
                           link->dst->outputs[0]->out_buf->data,
bcfd9e82
                           link->dst->outputs[0]->out_buf->linesize,
                           0, bar_y, pad->w, bar_h);
e9b992d0
         ret = ff_draw_slice(link->dst->outputs[0], bar_y, bar_h, slice_dir);
3c940173
     }
e9b992d0
     return ret;
3c940173
 }
 
e9b992d0
 static int draw_slice(AVFilterLink *link, int y, int h, int slice_dir)
3c940173
 {
     PadContext *pad = link->dst->priv;
5d4890d7
     AVFilterBufferRef *outpic = link->dst->outputs[0]->out_buf;
e3331706
     AVFilterBufferRef *inpic = link->cur_buf;
e9b992d0
     int ret;
3c940173
 
     y += pad->y;
 
53b7a3fe
     y = ff_draw_round_to_sub(&pad->draw, 1, -1, y);
     h = ff_draw_round_to_sub(&pad->draw, 1, -1, h);
3c940173
 
     if (!h)
e9b992d0
         return 0;
3c940173
     draw_send_bar_slice(link, y, h, slice_dir, 1);
 
     /* left border */
53b7a3fe
     ff_fill_rectangle(&pad->draw, &pad->color, outpic->data, outpic->linesize,
                       0, y, pad->x, h);
e3331706
 
     if(pad->needs_copy){
53b7a3fe
         ff_copy_rectangle2(&pad->draw,
                            outpic->data, outpic->linesize,
                            inpic ->data, inpic ->linesize,
                            pad->x, y, 0, y - pad->y, inpic->video->w, h);
e3331706
     }
 
3c940173
     /* right border */
53b7a3fe
     ff_fill_rectangle(&pad->draw, &pad->color, outpic->data, outpic->linesize,
bcfd9e82
                       pad->x + pad->in_w, y, pad->w - pad->x - pad->in_w, h);
e9b992d0
     ret = ff_draw_slice(link->dst->outputs[0], y, h, slice_dir);
     if (ret < 0)
         return ret;
3c940173
 
e9b992d0
     return draw_send_bar_slice(link, y, h, slice_dir, -1);
3c940173
 }
 
 AVFilter avfilter_vf_pad = {
     .name          = "pad",
478b9d74
     .description   = NULL_IF_CONFIG_SMALL("Pad input image to width:height[:x:y[:color]] (default x and y: 0, default color: black)."),
3c940173
 
     .priv_size     = sizeof(PadContext),
     .init          = init,
     .query_formats = query_formats,
 
3db40703
     .inputs    = (const AVFilterPad[]) {{ .name             = "default",
                                           .type             = AVMEDIA_TYPE_VIDEO,
                                           .config_props     = config_input,
                                           .get_video_buffer = get_video_buffer,
                                           .start_frame      = start_frame,
9023de34
                                           .draw_slice       = draw_slice, },
3db40703
                                         { .name = NULL}},
 
     .outputs   = (const AVFilterPad[]) {{ .name             = "default",
                                           .type             = AVMEDIA_TYPE_VIDEO,
                                           .config_props     = config_output, },
                                         { .name = NULL}},
3c940173
 };