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
  */
 
7e59393d
 #include <float.h>  /* DBL_MAX */
 
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"
7ffe76e5
 #include "libavutil/imgutils.h"
 #include "libavutil/parseutils.h"
0ebcdf5c
 #include "libavutil/mathematics.h"
40c885c5
 #include "libavutil/opt.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)
 {
a0854c08
     return ff_set_common_formats(ctx, ff_draw_supported_pixel_formats(0));
1b364fd2
 }
 
ffc3337e
 enum EvalMode {
     EVAL_MODE_INIT,
     EVAL_MODE_FRAME,
     EVAL_MODE_NB
 };
 
58400ac1
 typedef struct PadContext {
1897109c
     const AVClass *class;
3c940173
     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
ffc3337e
     int inlink_w, inlink_h;
7e59393d
     AVRational aspect;
3c940173
 
40c885c5
     char *w_expr;           ///< width  expression string
     char *h_expr;           ///< height expression string
     char *x_expr;           ///< width  expression string
     char *y_expr;           ///< height expression string
53b7a3fe
     uint8_t rgba_color[4];  ///< color for the padding area
     FFDrawContext draw;
     FFDrawColor color;
ffc3337e
 
     int eval_mode;          ///< expression evaluation mode
3c940173
 } PadContext;
 
 static int config_input(AVFilterLink *inlink)
 {
     AVFilterContext *ctx = inlink->dst;
3062ac4c
     PadContext *s = ctx->priv;
7e59393d
     AVRational adjusted_aspect = s->aspect;
53b7a3fe
     int ret;
484a3308
     double var_values[VARS_NB], res;
     char *expr;
3c940173
 
af00d68a
     ff_draw_init(&s->draw, inlink->format, 0);
     ff_draw_color(&s->draw, &s->color, s->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;
ba04177e
     var_values[VAR_A]     = (double) inlink->w / inlink->h;
0bf02fb1
     var_values[VAR_SAR]   = inlink->sample_aspect_ratio.num ?
55c49afc
         (double) inlink->sample_aspect_ratio.num / inlink->sample_aspect_ratio.den : 1;
61d55fda
     var_values[VAR_DAR]   = var_values[VAR_A] * var_values[VAR_SAR];
af00d68a
     var_values[VAR_HSUB]  = 1 << s->draw.hsub_max;
     var_values[VAR_VSUB]  = 1 << s->draw.vsub_max;
484a3308
 
     /* evaluate width and height */
3062ac4c
     av_expr_parse_and_eval(&res, (expr = s->w_expr),
484a3308
                            var_names, var_values,
                            NULL, NULL, NULL, NULL, NULL, 0, ctx);
3062ac4c
     s->w = var_values[VAR_OUT_W] = var_values[VAR_OW] = res;
     if ((ret = av_expr_parse_and_eval(&res, (expr = s->h_expr),
484a3308
                                       var_names, var_values,
                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
         goto eval_fail;
3062ac4c
     s->h = var_values[VAR_OUT_H] = var_values[VAR_OH] = res;
2ec112f7
     if (!s->h)
         var_values[VAR_OUT_H] = var_values[VAR_OH] = s->h = inlink->h;
 
484a3308
     /* evaluate the width again, as it may depend on the evaluated output height */
3062ac4c
     if ((ret = av_expr_parse_and_eval(&res, (expr = s->w_expr),
484a3308
                                       var_names, var_values,
                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
         goto eval_fail;
3062ac4c
     s->w = var_values[VAR_OUT_W] = var_values[VAR_OW] = res;
2ec112f7
     if (!s->w)
         var_values[VAR_OUT_W] = var_values[VAR_OW] = s->w = inlink->w;
484a3308
 
7e59393d
     if (adjusted_aspect.num && adjusted_aspect.den) {
         adjusted_aspect = av_div_q(adjusted_aspect, inlink->sample_aspect_ratio);
         if (s->h < av_rescale(s->w, adjusted_aspect.den, adjusted_aspect.num)) {
             s->h = var_values[VAR_OUT_H] = var_values[VAR_OH] = av_rescale(s->w, adjusted_aspect.den, adjusted_aspect.num);
         } else {
             s->w = var_values[VAR_OUT_W] = var_values[VAR_OW] = av_rescale(s->h, adjusted_aspect.num, adjusted_aspect.den);
         }
     }
 
484a3308
     /* evaluate x and y */
3062ac4c
     av_expr_parse_and_eval(&res, (expr = s->x_expr),
484a3308
                            var_names, var_values,
                            NULL, NULL, NULL, NULL, NULL, 0, ctx);
3062ac4c
     s->x = var_values[VAR_X] = res;
     if ((ret = av_expr_parse_and_eval(&res, (expr = s->y_expr),
484a3308
                                       var_names, var_values,
                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
         goto eval_fail;
3062ac4c
     s->y = var_values[VAR_Y] = res;
484a3308
     /* evaluate x again, as it may depend on the evaluated y value */
3062ac4c
     if ((ret = av_expr_parse_and_eval(&res, (expr = s->x_expr),
484a3308
                                       var_names, var_values,
                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
         goto eval_fail;
3062ac4c
     s->x = var_values[VAR_X] = res;
484a3308
 
57c36708
     if (s->x < 0 || s->x + inlink->w > s->w)
         s->x = var_values[VAR_X] = (s->w - inlink->w) / 2;
     if (s->y < 0 || s->y + inlink->h > s->h)
         s->y = var_values[VAR_Y] = (s->h - inlink->h) / 2;
 
484a3308
     /* sanity check params */
57c36708
     if (s->w < 0 || s->h < 0) {
484a3308
         av_log(ctx, AV_LOG_ERROR, "Negative values are not acceptable.\n");
         return AVERROR(EINVAL);
     }
 
af00d68a
     s->w    = ff_draw_round_to_sub(&s->draw, 0, -1, s->w);
     s->h    = ff_draw_round_to_sub(&s->draw, 1, -1, s->h);
     s->x    = ff_draw_round_to_sub(&s->draw, 0, -1, s->x);
     s->y    = ff_draw_round_to_sub(&s->draw, 1, -1, s->y);
     s->in_w = ff_draw_round_to_sub(&s->draw, 0, -1, inlink->w);
     s->in_h = ff_draw_round_to_sub(&s->draw, 1, -1, inlink->h);
ffc3337e
     s->inlink_w = inlink->w;
     s->inlink_h = 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",
3062ac4c
            inlink->w, inlink->h, s->w, s->h, s->x, s->y,
af00d68a
            s->rgba_color[0], s->rgba_color[1], s->rgba_color[2], s->rgba_color[3]);
3c940173
 
9cd62b2c
     if (s->x <  0 || s->y <  0                      ||
         s->w <= 0 || s->h <= 0                      ||
         (unsigned)s->x + (unsigned)inlink->w > s->w ||
         (unsigned)s->y + (unsigned)inlink->h > s->h) {
3c940173
         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",
3062ac4c
                s->x, s->y, s->x + inlink->w, s->y + inlink->h, s->w, s->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)
 {
3062ac4c
     PadContext *s = outlink->src->priv;
3c940173
 
3062ac4c
     outlink->w = s->w;
     outlink->h = s->h;
3c940173
     return 0;
 }
 
7e350379
 static AVFrame *get_video_buffer(AVFilterLink *inlink, int w, int h)
3c940173
 {
3062ac4c
     PadContext *s = inlink->dst->priv;
3d8a8fd2
     AVFrame *frame;
f66b3905
     int plane;
3c940173
 
3d8a8fd2
     if (s->inlink_w <= 0)
         return NULL;
 
     frame = ff_get_video_buffer(inlink->dst->outputs[0],
                                 w + (s->w - s->in_w),
                                 h + (s->h - s->in_h) + (s->x > 0));
 
7e350379
     if (!frame)
8f3a3ce7
         return NULL;
 
7e350379
     frame->width  = w;
     frame->height = h;
c71e9640
 
e43a0a23
     for (plane = 0; plane < 4 && frame->data[plane] && frame->linesize[plane]; plane++) {
af00d68a
         int hsub = s->draw.hsub[plane];
         int vsub = s->draw.vsub[plane];
         frame->data[plane] += (s->x >> hsub) * s->draw.pixelstep[plane] +
                               (s->y >> vsub) * frame->linesize[plane];
3c940173
     }
 
7e350379
     return frame;
3c940173
 }
 
7e350379
 /* check whether each plane in this buffer can be padded without copying */
 static int buffer_needs_copy(PadContext *s, AVFrame *frame, AVBufferRef *buf)
e3331706
 {
7e350379
     int planes[4] = { -1, -1, -1, -1}, *p = planes;
     int i, j;
e3331706
 
7e350379
     /* get all planes in this buffer */
     for (i = 0; i < FF_ARRAY_ELEMS(planes) && frame->data[i]; i++) {
         if (av_frame_get_plane_buffer(frame, i) == buf)
             *p++ = i;
     }
e3331706
 
7e350379
     /* for each plane in this buffer, check that it can be padded without
      * going over buffer bounds or other planes */
     for (i = 0; i < FF_ARRAY_ELEMS(planes) && planes[i] >= 0; i++) {
a05a44e2
         int hsub = s->draw.hsub[planes[i]];
         int vsub = s->draw.vsub[planes[i]];
7e350379
 
         uint8_t *start = frame->data[planes[i]];
c10b5797
         uint8_t *end   = start + (frame->height >> vsub) *
7e350379
                                  frame->linesize[planes[i]];
 
         /* amount of free space needed before the start and after the end
          * of the plane */
a05a44e2
         ptrdiff_t req_start = (s->x >> hsub) * s->draw.pixelstep[planes[i]] +
7e350379
                               (s->y >> vsub) * frame->linesize[planes[i]];
         ptrdiff_t req_end   = ((s->w - s->x - frame->width) >> hsub) *
a05a44e2
                               s->draw.pixelstep[planes[i]] +
0cc5011f
                               ((s->h - s->y - frame->height) >> vsub) * frame->linesize[planes[i]];
7e350379
 
a05a44e2
         if (frame->linesize[planes[i]] < (s->w >> hsub) * s->draw.pixelstep[planes[i]])
7e350379
             return 1;
         if (start - buf->data < req_start ||
             (buf->data + buf->size) - end < req_end)
             return 1;
 
969e8d35
         for (j = 0; j < FF_ARRAY_ELEMS(planes) && planes[j] >= 0; j++) {
c10b5797
             int vsub1 = s->draw.vsub[planes[j]];
7e350379
             uint8_t *start1 = frame->data[planes[j]];
c10b5797
             uint8_t *end1   = start1 + (frame->height >> vsub1) *
7e350379
                                        frame->linesize[planes[j]];
             if (i == j)
                 continue;
 
d2dd1e07
             if (FFSIGN(start - end1) != FFSIGN(start - end1 - req_start) ||
                 FFSIGN(end - start1) != FFSIGN(end - start1 + req_end))
7e350379
                 return 1;
         }
     }
e3331706
 
7e350379
     return 0;
 }
e3331706
 
7e350379
 static int frame_needs_copy(PadContext *s, AVFrame *frame)
 {
     int i;
e3331706
 
7e350379
     if (!av_frame_is_writable(frame))
e3331706
         return 1;
7e350379
 
a05a44e2
     for (i = 0; i < 4 && frame->buf[i]; i++)
7e350379
         if (buffer_needs_copy(s, frame, frame->buf[i]))
             return 1;
e3331706
     return 0;
 }
 
7e350379
 static int filter_frame(AVFilterLink *inlink, AVFrame *in)
3c940173
 {
3062ac4c
     PadContext *s = inlink->dst->priv;
ffc3337e
     AVFilterLink *outlink = inlink->dst->outputs[0];
7e350379
     AVFrame *out;
ffc3337e
     int needs_copy;
     if(s->eval_mode == EVAL_MODE_FRAME && (
            in->width  != s->inlink_w
         || in->height != s->inlink_h
         || in->format != outlink->format
         || in->sample_aspect_ratio.den != outlink->sample_aspect_ratio.den || in->sample_aspect_ratio.num != outlink->sample_aspect_ratio.num)) {
         int ret;
 
         inlink->dst->inputs[0]->format = in->format;
         inlink->dst->inputs[0]->w      = in->width;
         inlink->dst->inputs[0]->h      = in->height;
 
         inlink->dst->inputs[0]->sample_aspect_ratio.den = in->sample_aspect_ratio.den;
         inlink->dst->inputs[0]->sample_aspect_ratio.num = in->sample_aspect_ratio.num;
 
 
         if ((ret = config_input(inlink)) < 0) {
             s->inlink_w = -1;
             return ret;
         }
         if ((ret = config_output(outlink)) < 0) {
             s->inlink_w = -1;
             return ret;
         }
     }
 
     needs_copy = frame_needs_copy(s, in);
e3331706
 
6be0df50
     if (needs_copy) {
e3331706
         av_log(inlink->dst, AV_LOG_DEBUG, "Direct padding impossible allocating new frame\n");
7e350379
         out = ff_get_video_buffer(inlink->dst->outputs[0],
3062ac4c
                                   FFMAX(inlink->w, s->w),
                                   FFMAX(inlink->h, s->h));
6be0df50
         if (!out) {
7e350379
             av_frame_free(&in);
ebc8d974
             return AVERROR(ENOMEM);
6be0df50
         }
ebc8d974
 
7e350379
         av_frame_copy_props(out, in);
     } else {
         int i;
e3331706
 
7e350379
         out = in;
e43a0a23
         for (i = 0; i < 4 && out->data[i] && out->linesize[i]; i++) {
af00d68a
             int hsub = s->draw.hsub[i];
             int vsub = s->draw.vsub[i];
             out->data[i] -= (s->x >> hsub) * s->draw.pixelstep[i] +
3062ac4c
                             (s->y >> vsub) * out->linesize[i];
7e350379
         }
     }
ebc8d974
 
6be0df50
     /* top bar */
3062ac4c
     if (s->y) {
af00d68a
         ff_fill_rectangle(&s->draw, &s->color,
6be0df50
                           out->data, out->linesize,
3062ac4c
                           0, 0, s->w, s->y);
3c940173
     }
 
6be0df50
     /* bottom bar */
3062ac4c
     if (s->h > s->y + s->in_h) {
af00d68a
         ff_fill_rectangle(&s->draw, &s->color,
6be0df50
                           out->data, out->linesize,
3062ac4c
                           0, s->y + s->in_h, s->w, s->h - s->y - s->in_h);
3c940173
     }
 
     /* left border */
af00d68a
     ff_fill_rectangle(&s->draw, &s->color, out->data, out->linesize,
                       0, s->y, s->x, in->height);
e3331706
 
6be0df50
     if (needs_copy) {
af00d68a
         ff_copy_rectangle2(&s->draw,
6be0df50
                           out->data, out->linesize, in->data, in->linesize,
af00d68a
                           s->x, s->y, 0, 0, in->width, in->height);
e3331706
     }
 
3c940173
     /* right border */
af00d68a
     ff_fill_rectangle(&s->draw, &s->color, out->data, out->linesize,
3062ac4c
                       s->x + s->in_w, s->y, s->w - s->x - s->in_w,
7e350379
                       in->height);
 
3062ac4c
     out->width  = s->w;
     out->height = s->h;
3c940173
 
7e350379
     if (in != out)
         av_frame_free(&in);
6be0df50
     return ff_filter_frame(inlink->dst->outputs[0], out);
3c940173
 }
 
40c885c5
 #define OFFSET(x) offsetof(PadContext, x)
7e99ccf5
 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
 
 static const AVOption pad_options[] = {
     { "width",  "set the pad area width expression",       OFFSET(w_expr), AV_OPT_TYPE_STRING, {.str = "iw"}, CHAR_MIN, CHAR_MAX, FLAGS },
     { "w",      "set the pad area width expression",       OFFSET(w_expr), AV_OPT_TYPE_STRING, {.str = "iw"}, CHAR_MIN, CHAR_MAX, FLAGS },
     { "height", "set the pad area height expression",      OFFSET(h_expr), AV_OPT_TYPE_STRING, {.str = "ih"}, CHAR_MIN, CHAR_MAX, FLAGS },
     { "h",      "set the pad area height expression",      OFFSET(h_expr), AV_OPT_TYPE_STRING, {.str = "ih"}, CHAR_MIN, CHAR_MAX, FLAGS },
     { "x",      "set the x offset expression for the input image position", OFFSET(x_expr), AV_OPT_TYPE_STRING, {.str = "0"}, CHAR_MIN, CHAR_MAX, FLAGS },
     { "y",      "set the y offset expression for the input image position", OFFSET(y_expr), AV_OPT_TYPE_STRING, {.str = "0"}, CHAR_MIN, CHAR_MAX, FLAGS },
85e8a116
     { "color",  "set the color of the padded area border", OFFSET(rgba_color), AV_OPT_TYPE_COLOR, {.str = "black"}, .flags = FLAGS },
ffc3337e
     { "eval",   "specify when to evaluate expressions",    OFFSET(eval_mode), AV_OPT_TYPE_INT, {.i64 = EVAL_MODE_INIT}, 0, EVAL_MODE_NB-1, FLAGS, "eval" },
          { "init",  "eval expressions once during initialization", 0, AV_OPT_TYPE_CONST, {.i64=EVAL_MODE_INIT},  .flags = FLAGS, .unit = "eval" },
          { "frame", "eval expressions during initialization and per-frame", 0, AV_OPT_TYPE_CONST, {.i64=EVAL_MODE_FRAME}, .flags = FLAGS, .unit = "eval" },
7e59393d
     { "aspect",  "pad to fit an aspect instead of a resolution", OFFSET(aspect), AV_OPT_TYPE_RATIONAL, {.dbl = 0}, 0, DBL_MAX, FLAGS },
b211607b
     { NULL }
40c885c5
 };
 
7e99ccf5
 AVFILTER_DEFINE_CLASS(pad);
40c885c5
 
568c70e7
 static const AVFilterPad avfilter_vf_pad_inputs[] = {
     {
         .name             = "default",
         .type             = AVMEDIA_TYPE_VIDEO,
         .config_props     = config_input,
         .get_video_buffer = get_video_buffer,
6be0df50
         .filter_frame     = filter_frame,
568c70e7
     },
     { NULL }
 };
 
 static const AVFilterPad avfilter_vf_pad_outputs[] = {
     {
         .name         = "default",
         .type         = AVMEDIA_TYPE_VIDEO,
         .config_props = config_output,
     },
     { NULL }
 };
 
cd43ca04
 AVFilter ff_vf_pad = {
3c940173
     .name          = "pad",
59d72f8b
     .description   = NULL_IF_CONFIG_SMALL("Pad the input video."),
3c940173
     .priv_size     = sizeof(PadContext),
40c885c5
     .priv_class    = &pad_class,
3c940173
     .query_formats = query_formats,
b211607b
     .inputs        = avfilter_vf_pad_inputs,
     .outputs       = avfilter_vf_pad_outputs,
3c940173
 };