2010-05-07 14:47:13 +03:00
|
|
|
/*
|
2010-11-28 12:22:58 +02:00
|
|
|
* Copyright (c) 2008 vmrsss
|
|
|
|
* Copyright (c) 2009 Stefano Sabatini
|
2010-05-07 14:47:13 +03:00
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* This file is part of Libav.
|
2010-05-07 14:47:13 +03:00
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2010-05-07 14:47:13 +03:00
|
|
|
* 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.
|
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2010-05-07 14:47:13 +03:00
|
|
|
* 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
|
2011-03-18 19:35:10 +02:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2010-05-07 14:47:13 +03:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-05-13 21:26:11 +03:00
|
|
|
* @file
|
2011-06-18 02:46:27 +03:00
|
|
|
* video padding filter
|
2010-05-07 14:47:13 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "avfilter.h"
|
2012-05-30 11:12:55 +03:00
|
|
|
#include "formats.h"
|
2012-06-12 21:12:42 +03:00
|
|
|
#include "internal.h"
|
2012-05-30 12:20:32 +03:00
|
|
|
#include "video.h"
|
2011-04-17 18:19:05 +03:00
|
|
|
#include "libavutil/avstring.h"
|
2012-08-06 16:49:32 +03:00
|
|
|
#include "libavutil/common.h"
|
2011-04-17 18:19:05 +03:00
|
|
|
#include "libavutil/eval.h"
|
2010-05-07 14:47:13 +03:00
|
|
|
#include "libavutil/pixdesc.h"
|
2010-07-01 21:49:44 +03:00
|
|
|
#include "libavutil/colorspace.h"
|
2011-02-07 15:37:08 +02:00
|
|
|
#include "libavutil/imgutils.h"
|
|
|
|
#include "libavutil/parseutils.h"
|
2011-06-04 14:58:23 +03:00
|
|
|
#include "libavutil/mathematics.h"
|
2013-02-25 23:21:29 +03:00
|
|
|
#include "libavutil/opt.h"
|
|
|
|
|
2011-02-21 00:42:17 +02:00
|
|
|
#include "drawutils.h"
|
2011-01-12 01:53:24 +02:00
|
|
|
|
2012-02-20 11:42:33 +03:00
|
|
|
static const char *const var_names[] = {
|
2011-04-17 18:19:05 +03:00
|
|
|
"PI",
|
|
|
|
"PHI",
|
|
|
|
"E",
|
|
|
|
"in_w", "iw",
|
|
|
|
"in_h", "ih",
|
|
|
|
"out_w", "ow",
|
|
|
|
"out_h", "oh",
|
|
|
|
"x",
|
|
|
|
"y",
|
|
|
|
"a",
|
|
|
|
"hsub",
|
|
|
|
"vsub",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
enum var_name {
|
|
|
|
VAR_PI,
|
|
|
|
VAR_PHI,
|
|
|
|
VAR_E,
|
|
|
|
VAR_IN_W, VAR_IW,
|
|
|
|
VAR_IN_H, VAR_IH,
|
|
|
|
VAR_OUT_W, VAR_OW,
|
|
|
|
VAR_OUT_H, VAR_OH,
|
|
|
|
VAR_X,
|
|
|
|
VAR_Y,
|
|
|
|
VAR_A,
|
|
|
|
VAR_HSUB,
|
|
|
|
VAR_VSUB,
|
|
|
|
VARS_NB
|
|
|
|
};
|
|
|
|
|
2010-07-06 01:33:06 +03:00
|
|
|
static int query_formats(AVFilterContext *ctx)
|
|
|
|
{
|
2012-10-06 13:10:34 +03:00
|
|
|
static const enum AVPixelFormat pix_fmts[] = {
|
|
|
|
AV_PIX_FMT_ARGB, AV_PIX_FMT_RGBA,
|
|
|
|
AV_PIX_FMT_ABGR, AV_PIX_FMT_BGRA,
|
|
|
|
AV_PIX_FMT_RGB24, AV_PIX_FMT_BGR24,
|
2010-07-06 01:33:06 +03:00
|
|
|
|
2012-10-06 13:10:34 +03:00
|
|
|
AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV422P,
|
|
|
|
AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV411P,
|
|
|
|
AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUV440P,
|
|
|
|
AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ422P,
|
|
|
|
AV_PIX_FMT_YUVJ420P, AV_PIX_FMT_YUVJ440P,
|
|
|
|
AV_PIX_FMT_YUVA420P,
|
2010-07-06 01:33:06 +03:00
|
|
|
|
2012-10-06 13:10:34 +03:00
|
|
|
AV_PIX_FMT_NONE
|
2010-07-06 01:33:06 +03:00
|
|
|
};
|
|
|
|
|
2012-05-30 11:12:55 +03:00
|
|
|
ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
|
2010-07-06 01:33:06 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-04-11 12:54:15 +03:00
|
|
|
typedef struct PadContext {
|
2013-02-25 23:21:29 +03:00
|
|
|
const AVClass *class;
|
2010-05-07 14:47:13 +03:00
|
|
|
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
|
|
|
|
|
2013-02-25 23:21:29 +03:00
|
|
|
char *w_expr; ///< width expression string
|
|
|
|
char *h_expr; ///< height expression string
|
|
|
|
char *x_expr; ///< width expression string
|
|
|
|
char *y_expr; ///< height expression string
|
|
|
|
char *color_str;
|
2011-04-17 18:19:05 +03:00
|
|
|
|
2010-05-07 14:47:13 +03:00
|
|
|
uint8_t color[4]; ///< color expressed either in YUVA or RGBA colorspace for the padding area
|
|
|
|
uint8_t *line[4];
|
|
|
|
int line_step[4];
|
|
|
|
int hsub, vsub; ///< chroma subsampling values
|
|
|
|
} PadContext;
|
|
|
|
|
2013-03-13 10:26:39 +03:00
|
|
|
static av_cold int init(AVFilterContext *ctx)
|
2010-05-07 14:47:13 +03:00
|
|
|
{
|
2013-03-18 22:44:36 +03:00
|
|
|
PadContext *s = ctx->priv;
|
2011-04-17 18:19:05 +03:00
|
|
|
|
2013-03-18 22:44:36 +03:00
|
|
|
if (av_parse_color(s->color, s->color_str, -1, ctx) < 0)
|
2010-05-13 21:26:07 +03:00
|
|
|
return AVERROR(EINVAL);
|
2010-05-07 14:47:13 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static av_cold void uninit(AVFilterContext *ctx)
|
|
|
|
{
|
2013-03-18 22:44:36 +03:00
|
|
|
PadContext *s = ctx->priv;
|
2010-05-07 14:47:13 +03:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < 4; i++) {
|
2013-03-18 22:44:36 +03:00
|
|
|
av_freep(&s->line[i]);
|
|
|
|
s->line_step[i] = 0;
|
2010-05-07 14:47:13 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int config_input(AVFilterLink *inlink)
|
|
|
|
{
|
|
|
|
AVFilterContext *ctx = inlink->dst;
|
2013-03-18 22:44:36 +03:00
|
|
|
PadContext *s = ctx->priv;
|
2012-10-06 14:29:37 +03:00
|
|
|
const AVPixFmtDescriptor *pix_desc = av_pix_fmt_desc_get(inlink->format);
|
2010-05-07 14:47:13 +03:00
|
|
|
uint8_t rgba_color[4];
|
2011-04-17 18:19:05 +03:00
|
|
|
int ret, is_packed_rgba;
|
|
|
|
double var_values[VARS_NB], res;
|
|
|
|
char *expr;
|
2010-05-07 14:47:13 +03:00
|
|
|
|
2013-03-18 22:44:36 +03:00
|
|
|
s->hsub = pix_desc->log2_chroma_w;
|
|
|
|
s->vsub = pix_desc->log2_chroma_h;
|
2010-05-07 14:47:13 +03:00
|
|
|
|
2011-04-17 18:19:05 +03:00
|
|
|
var_values[VAR_PI] = M_PI;
|
|
|
|
var_values[VAR_PHI] = M_PHI;
|
|
|
|
var_values[VAR_E] = M_E;
|
|
|
|
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;
|
2012-10-05 15:45:30 +03:00
|
|
|
var_values[VAR_A] = (double) inlink->w / inlink->h;
|
2013-03-18 22:44:36 +03:00
|
|
|
var_values[VAR_HSUB] = 1<<s->hsub;
|
|
|
|
var_values[VAR_VSUB] = 1<<s->vsub;
|
2011-04-17 18:19:05 +03:00
|
|
|
|
|
|
|
/* evaluate width and height */
|
2015-05-02 09:09:52 +02:00
|
|
|
av_expr_parse_and_eval(&res, (expr = s->w_expr),
|
|
|
|
var_names, var_values,
|
|
|
|
NULL, NULL, NULL, NULL, NULL, 0, ctx);
|
2013-03-18 22:44:36 +03:00
|
|
|
s->w = var_values[VAR_OUT_W] = var_values[VAR_OW] = res;
|
|
|
|
if ((ret = av_expr_parse_and_eval(&res, (expr = s->h_expr),
|
2011-04-17 18:19:05 +03:00
|
|
|
var_names, var_values,
|
|
|
|
NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
|
|
|
|
goto eval_fail;
|
2013-03-18 22:44:36 +03:00
|
|
|
s->h = var_values[VAR_OUT_H] = var_values[VAR_OH] = res;
|
2015-10-25 20:36:10 +02:00
|
|
|
if (!s->h)
|
|
|
|
var_values[VAR_OUT_H] = var_values[VAR_OH] = s->h = inlink->h;
|
|
|
|
|
2011-04-17 18:19:05 +03:00
|
|
|
/* evaluate the width again, as it may depend on the evaluated output height */
|
2013-03-18 22:44:36 +03:00
|
|
|
if ((ret = av_expr_parse_and_eval(&res, (expr = s->w_expr),
|
2011-04-17 18:19:05 +03:00
|
|
|
var_names, var_values,
|
|
|
|
NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
|
|
|
|
goto eval_fail;
|
2013-03-18 22:44:36 +03:00
|
|
|
s->w = var_values[VAR_OUT_W] = var_values[VAR_OW] = res;
|
2015-10-25 20:36:10 +02:00
|
|
|
if (!s->w)
|
|
|
|
var_values[VAR_OUT_W] = var_values[VAR_OW] = s->w = inlink->w;
|
2011-04-17 18:19:05 +03:00
|
|
|
|
|
|
|
/* evaluate x and y */
|
2015-05-02 09:09:52 +02:00
|
|
|
av_expr_parse_and_eval(&res, (expr = s->x_expr),
|
|
|
|
var_names, var_values,
|
|
|
|
NULL, NULL, NULL, NULL, NULL, 0, ctx);
|
2013-03-18 22:44:36 +03:00
|
|
|
s->x = var_values[VAR_X] = res;
|
|
|
|
if ((ret = av_expr_parse_and_eval(&res, (expr = s->y_expr),
|
2011-04-17 18:19:05 +03:00
|
|
|
var_names, var_values,
|
|
|
|
NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
|
|
|
|
goto eval_fail;
|
2013-03-18 22:44:36 +03:00
|
|
|
s->y = var_values[VAR_Y] = res;
|
2011-04-17 18:19:05 +03:00
|
|
|
/* evaluate x again, as it may depend on the evaluated y value */
|
2013-03-18 22:44:36 +03:00
|
|
|
if ((ret = av_expr_parse_and_eval(&res, (expr = s->x_expr),
|
2011-04-17 18:19:05 +03:00
|
|
|
var_names, var_values,
|
|
|
|
NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
|
|
|
|
goto eval_fail;
|
2013-03-18 22:44:36 +03:00
|
|
|
s->x = var_values[VAR_X] = res;
|
2011-04-17 18:19:05 +03:00
|
|
|
|
|
|
|
/* sanity check params */
|
2013-03-18 22:44:36 +03:00
|
|
|
if (s->w < 0 || s->h < 0 || s->x < 0 || s->y < 0) {
|
2011-04-17 18:19:05 +03:00
|
|
|
av_log(ctx, AV_LOG_ERROR, "Negative values are not acceptable.\n");
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
}
|
|
|
|
|
2013-03-18 22:44:36 +03:00
|
|
|
s->w &= ~((1 << s->hsub) - 1);
|
|
|
|
s->h &= ~((1 << s->vsub) - 1);
|
|
|
|
s->x &= ~((1 << s->hsub) - 1);
|
|
|
|
s->y &= ~((1 << s->vsub) - 1);
|
2010-05-07 14:47:13 +03:00
|
|
|
|
2013-03-18 22:44:36 +03:00
|
|
|
s->in_w = inlink->w & ~((1 << s->hsub) - 1);
|
|
|
|
s->in_h = inlink->h & ~((1 << s->vsub) - 1);
|
2010-05-07 14:47:13 +03:00
|
|
|
|
2013-03-18 22:44:36 +03:00
|
|
|
memcpy(rgba_color, s->color, sizeof(rgba_color));
|
|
|
|
ff_fill_line_with_color(s->line, s->line_step, s->w, s->color,
|
2011-02-21 00:42:17 +02:00
|
|
|
inlink->format, rgba_color, &is_packed_rgba, NULL);
|
2010-05-07 14:47:13 +03:00
|
|
|
|
2012-06-25 07:31:38 +03:00
|
|
|
av_log(ctx, AV_LOG_VERBOSE, "w:%d h:%d -> w:%d h:%d x:%d y:%d color:0x%02X%02X%02X%02X[%s]\n",
|
2013-03-18 22:44:36 +03:00
|
|
|
inlink->w, inlink->h, s->w, s->h, s->x, s->y,
|
|
|
|
s->color[0], s->color[1], s->color[2], s->color[3],
|
2010-07-06 01:33:02 +03:00
|
|
|
is_packed_rgba ? "rgba" : "yuva");
|
2010-05-07 14:47:13 +03:00
|
|
|
|
2013-03-18 22:44:36 +03:00
|
|
|
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) {
|
2010-05-07 14:47:13 +03:00
|
|
|
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",
|
2013-03-18 22:44:36 +03:00
|
|
|
s->x, s->y, s->x + inlink->w, s->y + inlink->h, s->w, s->h);
|
2010-05-13 21:26:07 +03:00
|
|
|
return AVERROR(EINVAL);
|
2010-05-07 14:47:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2011-04-17 18:19:05 +03:00
|
|
|
|
|
|
|
eval_fail:
|
|
|
|
av_log(NULL, AV_LOG_ERROR,
|
|
|
|
"Error when evaluating the expression '%s'\n", expr);
|
|
|
|
return ret;
|
|
|
|
|
2010-05-07 14:47:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static int config_output(AVFilterLink *outlink)
|
|
|
|
{
|
2013-03-18 22:44:36 +03:00
|
|
|
PadContext *s = outlink->src->priv;
|
2010-05-07 14:47:13 +03:00
|
|
|
|
2013-03-18 22:44:36 +03:00
|
|
|
outlink->w = s->w;
|
|
|
|
outlink->h = s->h;
|
2010-05-07 14:47:13 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-11-28 10:41:07 +03:00
|
|
|
static AVFrame *get_video_buffer(AVFilterLink *inlink, int w, int h)
|
2010-05-07 14:47:13 +03:00
|
|
|
{
|
2013-03-18 22:44:36 +03:00
|
|
|
PadContext *s = inlink->dst->priv;
|
2010-05-07 14:47:13 +03:00
|
|
|
|
2012-11-28 10:41:07 +03:00
|
|
|
AVFrame *frame = ff_get_video_buffer(inlink->dst->outputs[0],
|
2013-03-18 22:44:36 +03:00
|
|
|
w + (s->w - s->in_w),
|
|
|
|
h + (s->h - s->in_h));
|
2010-05-07 20:53:29 +03:00
|
|
|
int plane;
|
2010-05-07 14:47:13 +03:00
|
|
|
|
2012-11-28 10:41:07 +03:00
|
|
|
if (!frame)
|
2012-07-15 12:16:53 +03:00
|
|
|
return NULL;
|
|
|
|
|
2012-11-28 10:41:07 +03:00
|
|
|
frame->width = w;
|
|
|
|
frame->height = h;
|
2010-11-17 03:03:06 +02:00
|
|
|
|
2012-11-28 10:41:07 +03:00
|
|
|
for (plane = 0; plane < 4 && frame->data[plane]; plane++) {
|
2013-03-18 22:44:36 +03:00
|
|
|
int hsub = (plane == 1 || plane == 2) ? s->hsub : 0;
|
|
|
|
int vsub = (plane == 1 || plane == 2) ? s->vsub : 0;
|
2010-05-07 14:47:13 +03:00
|
|
|
|
2013-03-18 22:44:36 +03:00
|
|
|
frame->data[plane] += (s->x >> hsub) * s->line_step[plane] +
|
|
|
|
(s->y >> vsub) * frame->linesize[plane];
|
2010-05-07 14:47:13 +03:00
|
|
|
}
|
|
|
|
|
2012-11-28 10:41:07 +03:00
|
|
|
return frame;
|
2010-05-07 14:47:13 +03:00
|
|
|
}
|
|
|
|
|
2012-11-28 10:41:07 +03:00
|
|
|
/* check whether each plane in this buffer can be padded without copying */
|
|
|
|
static int buffer_needs_copy(PadContext *s, AVFrame *frame, AVBufferRef *buf)
|
2011-01-12 01:53:24 +02:00
|
|
|
{
|
2012-11-28 10:41:07 +03:00
|
|
|
int planes[4] = { -1, -1, -1, -1}, *p = planes;
|
|
|
|
int i, j;
|
2011-01-12 01:53:24 +02:00
|
|
|
|
2012-11-28 10:41:07 +03:00
|
|
|
/* 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;
|
|
|
|
}
|
2011-01-12 01:53:24 +02:00
|
|
|
|
2012-11-28 10:41:07 +03:00
|
|
|
/* 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++) {
|
|
|
|
int hsub = (planes[i] == 1 || planes[i] == 2) ? s->hsub : 0;
|
|
|
|
int vsub = (planes[i] == 1 || planes[i] == 2) ? s->vsub : 0;
|
|
|
|
|
|
|
|
uint8_t *start = frame->data[planes[i]];
|
|
|
|
uint8_t *end = start + (frame->height >> hsub) *
|
|
|
|
frame->linesize[planes[i]];
|
|
|
|
|
|
|
|
/* amount of free space needed before the start and after the end
|
|
|
|
* of the plane */
|
|
|
|
ptrdiff_t req_start = (s->x >> hsub) * s->line_step[planes[i]] +
|
|
|
|
(s->y >> vsub) * frame->linesize[planes[i]];
|
|
|
|
ptrdiff_t req_end = ((s->w - s->x - frame->width) >> hsub) *
|
|
|
|
s->line_step[planes[i]] +
|
|
|
|
(s->y >> vsub) * frame->linesize[planes[i]];
|
|
|
|
|
|
|
|
if (frame->linesize[planes[i]] < (s->w >> hsub) * s->line_step[planes[i]])
|
|
|
|
return 1;
|
|
|
|
if (start - buf->data < req_start ||
|
|
|
|
(buf->data + buf->size) - end < req_end)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
#define SIGN(x) ((x) > 0 ? 1 : -1)
|
2013-03-10 06:34:27 +03:00
|
|
|
for (j = 0; j < FF_ARRAY_ELEMS(planes) && planes[j] >= 0; j++) {
|
2012-11-28 10:41:07 +03:00
|
|
|
int hsub1 = (planes[j] == 1 || planes[j] == 2) ? s->hsub : 0;
|
|
|
|
uint8_t *start1 = frame->data[planes[j]];
|
|
|
|
uint8_t *end1 = start1 + (frame->height >> hsub1) *
|
|
|
|
frame->linesize[planes[j]];
|
|
|
|
if (i == j)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (SIGN(start - end1) != SIGN(start - end1 - req_start) ||
|
|
|
|
SIGN(end - start1) != SIGN(end - start1 + req_end))
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
2011-01-12 01:53:24 +02:00
|
|
|
|
2012-11-28 10:41:07 +03:00
|
|
|
return 0;
|
|
|
|
}
|
2011-01-12 01:53:24 +02:00
|
|
|
|
2012-11-28 10:41:07 +03:00
|
|
|
static int frame_needs_copy(PadContext *s, AVFrame *frame)
|
|
|
|
{
|
|
|
|
int i;
|
2011-01-12 01:53:24 +02:00
|
|
|
|
2012-11-28 10:41:07 +03:00
|
|
|
if (!av_frame_is_writable(frame))
|
2011-01-12 01:53:24 +02:00
|
|
|
return 1;
|
2012-11-28 10:41:07 +03:00
|
|
|
|
|
|
|
for (i = 0; i < FF_ARRAY_ELEMS(frame->buf) && frame->buf[i]; i++)
|
|
|
|
if (buffer_needs_copy(s, frame, frame->buf[i]))
|
|
|
|
return 1;
|
2011-01-12 01:53:24 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-11-28 10:41:07 +03:00
|
|
|
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
|
2010-05-07 14:47:13 +03:00
|
|
|
{
|
2013-03-18 22:44:36 +03:00
|
|
|
PadContext *s = inlink->dst->priv;
|
2012-11-28 10:41:07 +03:00
|
|
|
AVFrame *out;
|
2013-03-18 22:44:36 +03:00
|
|
|
int needs_copy = frame_needs_copy(s, in);
|
2010-05-07 20:53:29 +03:00
|
|
|
|
2012-11-27 09:49:45 +03:00
|
|
|
if (needs_copy) {
|
2011-01-12 01:53:24 +02:00
|
|
|
av_log(inlink->dst, AV_LOG_DEBUG, "Direct padding impossible allocating new frame\n");
|
2012-11-28 10:41:07 +03:00
|
|
|
out = ff_get_video_buffer(inlink->dst->outputs[0],
|
2013-03-18 22:44:36 +03:00
|
|
|
FFMAX(inlink->w, s->w),
|
|
|
|
FFMAX(inlink->h, s->h));
|
2012-11-27 09:49:45 +03:00
|
|
|
if (!out) {
|
2012-11-28 10:41:07 +03:00
|
|
|
av_frame_free(&in);
|
2012-07-08 18:29:42 +03:00
|
|
|
return AVERROR(ENOMEM);
|
2012-11-27 09:49:45 +03:00
|
|
|
}
|
2012-07-08 18:29:42 +03:00
|
|
|
|
2012-11-28 10:41:07 +03:00
|
|
|
av_frame_copy_props(out, in);
|
|
|
|
} else {
|
|
|
|
int i;
|
2012-07-08 18:29:42 +03:00
|
|
|
|
2012-11-28 10:41:07 +03:00
|
|
|
out = in;
|
|
|
|
for (i = 0; i < FF_ARRAY_ELEMS(out->data) && out->data[i]; i++) {
|
2013-03-18 22:44:36 +03:00
|
|
|
int hsub = (i == 1 || i == 2) ? s->hsub : 0;
|
|
|
|
int vsub = (i == 1 || i == 2) ? s->vsub : 0;
|
|
|
|
out->data[i] -= (s->x >> hsub) * s->line_step[i] +
|
|
|
|
(s->y >> vsub) * out->linesize[i];
|
2012-11-28 10:41:07 +03:00
|
|
|
}
|
|
|
|
}
|
2010-05-07 14:47:13 +03:00
|
|
|
|
2012-11-27 09:49:45 +03:00
|
|
|
/* top bar */
|
2013-03-18 22:44:36 +03:00
|
|
|
if (s->y) {
|
2012-11-27 09:49:45 +03:00
|
|
|
ff_draw_rectangle(out->data, out->linesize,
|
2013-03-18 22:44:36 +03:00
|
|
|
s->line, s->line_step, s->hsub, s->vsub,
|
|
|
|
0, 0, s->w, s->y);
|
2010-05-07 14:47:13 +03:00
|
|
|
}
|
|
|
|
|
2012-11-27 09:49:45 +03:00
|
|
|
/* bottom bar */
|
2013-03-18 22:44:36 +03:00
|
|
|
if (s->h > s->y + s->in_h) {
|
2012-11-27 09:49:45 +03:00
|
|
|
ff_draw_rectangle(out->data, out->linesize,
|
2013-03-18 22:44:36 +03:00
|
|
|
s->line, s->line_step, s->hsub, s->vsub,
|
|
|
|
0, s->y + s->in_h, s->w, s->h - s->y - s->in_h);
|
2010-05-07 14:47:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* left border */
|
2013-03-18 22:44:36 +03:00
|
|
|
ff_draw_rectangle(out->data, out->linesize, s->line, s->line_step,
|
|
|
|
s->hsub, s->vsub, 0, s->y, s->x, in->height);
|
2012-11-27 09:49:45 +03:00
|
|
|
|
|
|
|
if (needs_copy) {
|
|
|
|
ff_copy_rectangle(out->data, out->linesize, in->data, in->linesize,
|
2013-03-18 22:44:36 +03:00
|
|
|
s->line_step, s->hsub, s->vsub,
|
|
|
|
s->x, s->y, 0, in->width, in->height);
|
2011-01-12 01:53:24 +02:00
|
|
|
}
|
|
|
|
|
2010-05-07 14:47:13 +03:00
|
|
|
/* right border */
|
2012-11-27 09:49:45 +03:00
|
|
|
ff_draw_rectangle(out->data, out->linesize,
|
2013-03-18 22:44:36 +03:00
|
|
|
s->line, s->line_step, s->hsub, s->vsub,
|
|
|
|
s->x + s->in_w, s->y, s->w - s->x - s->in_w,
|
2012-11-28 10:41:07 +03:00
|
|
|
in->height);
|
|
|
|
|
2013-03-18 22:44:36 +03:00
|
|
|
out->width = s->w;
|
|
|
|
out->height = s->h;
|
2010-05-07 14:47:13 +03:00
|
|
|
|
2012-11-28 10:41:07 +03:00
|
|
|
if (in != out)
|
|
|
|
av_frame_free(&in);
|
2012-11-27 09:49:45 +03:00
|
|
|
return ff_filter_frame(inlink->dst->outputs[0], out);
|
2010-05-07 14:47:13 +03:00
|
|
|
}
|
|
|
|
|
2013-02-25 23:21:29 +03:00
|
|
|
#define OFFSET(x) offsetof(PadContext, x)
|
|
|
|
#define FLAGS AV_OPT_FLAG_VIDEO_PARAM
|
|
|
|
static const AVOption options[] = {
|
|
|
|
{ "width", "Output video width", OFFSET(w_expr), AV_OPT_TYPE_STRING, { .str = "iw" }, .flags = FLAGS },
|
|
|
|
{ "height", "Output video height", OFFSET(h_expr), AV_OPT_TYPE_STRING, { .str = "ih" }, .flags = FLAGS },
|
|
|
|
{ "x", "Horizontal position of the left edge of the input video in the "
|
|
|
|
"output video", OFFSET(x_expr), AV_OPT_TYPE_STRING, { .str = "0" }, .flags = FLAGS },
|
|
|
|
{ "y", "Vertical position of the top edge of the input video in the "
|
|
|
|
"output video", OFFSET(y_expr), AV_OPT_TYPE_STRING, { .str = "0" }, .flags = FLAGS },
|
|
|
|
{ "color", "Color of the padded area", OFFSET(color_str), AV_OPT_TYPE_STRING, { .str = "black" }, .flags = FLAGS },
|
|
|
|
{ NULL },
|
|
|
|
};
|
|
|
|
|
|
|
|
static const AVClass pad_class = {
|
|
|
|
.class_name = "pad",
|
|
|
|
.item_name = av_default_item_name,
|
|
|
|
.option = options,
|
|
|
|
.version = LIBAVUTIL_VERSION_INT,
|
|
|
|
};
|
|
|
|
|
2012-07-24 16:14:01 +03:00
|
|
|
static const AVFilterPad avfilter_vf_pad_inputs[] = {
|
|
|
|
{
|
|
|
|
.name = "default",
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
|
|
|
.config_props = config_input,
|
|
|
|
.get_video_buffer = get_video_buffer,
|
2012-11-27 09:49:45 +03:00
|
|
|
.filter_frame = filter_frame,
|
2012-07-24 16:14:01 +03:00
|
|
|
},
|
|
|
|
{ NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
static const AVFilterPad avfilter_vf_pad_outputs[] = {
|
|
|
|
{
|
|
|
|
.name = "default",
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
|
|
|
.config_props = config_output,
|
|
|
|
},
|
|
|
|
{ NULL }
|
|
|
|
};
|
|
|
|
|
2013-10-28 09:44:24 +03:00
|
|
|
AVFilter ff_vf_pad = {
|
2010-05-07 14:47:13 +03:00
|
|
|
.name = "pad",
|
2010-07-03 22:41:22 +03:00
|
|
|
.description = NULL_IF_CONFIG_SMALL("Pad input image to width:height[:x:y[:color]] (default x and y: 0, default color: black)."),
|
2010-05-07 14:47:13 +03:00
|
|
|
|
|
|
|
.priv_size = sizeof(PadContext),
|
2013-02-25 23:21:29 +03:00
|
|
|
.priv_class = &pad_class,
|
2010-05-07 14:47:13 +03:00
|
|
|
.init = init,
|
|
|
|
.uninit = uninit,
|
|
|
|
.query_formats = query_formats,
|
|
|
|
|
2012-07-24 16:14:01 +03:00
|
|
|
.inputs = avfilter_vf_pad_inputs,
|
|
|
|
|
|
|
|
.outputs = avfilter_vf_pad_outputs,
|
2010-05-07 14:47:13 +03:00
|
|
|
};
|