2010-03-17 05:43:14 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2010 Bobby Bingham
|
|
|
|
|
2011-03-18 19:35:10 +02:00
|
|
|
* This file is part of Libav.
|
2010-03-17 05:43:14 +02:00
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2010-03-17 05:43:14 +02: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-03-17 05:43:14 +02: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-03-17 05:43:14 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-04-20 17:45:34 +03:00
|
|
|
* @file
|
2010-11-18 22:37:17 +02:00
|
|
|
* aspect ratio modification video filters
|
2010-03-17 05:43:14 +02:00
|
|
|
*/
|
|
|
|
|
2013-02-25 23:21:29 +03:00
|
|
|
#include <float.h>
|
|
|
|
|
2012-08-06 16:49:32 +03:00
|
|
|
#include "libavutil/common.h"
|
2013-11-02 13:57:24 +03:00
|
|
|
#include "libavutil/eval.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"
|
2013-11-02 13:57:24 +03:00
|
|
|
#include "libavutil/parseutils.h"
|
|
|
|
#include "libavutil/pixdesc.h"
|
2013-02-25 23:21:29 +03:00
|
|
|
|
2010-03-17 05:43:14 +02:00
|
|
|
#include "avfilter.h"
|
2012-06-12 21:12:42 +03:00
|
|
|
#include "internal.h"
|
2012-05-19 11:37:56 +03:00
|
|
|
#include "video.h"
|
2010-03-17 05:43:14 +02:00
|
|
|
|
2013-11-02 13:57:24 +03:00
|
|
|
static const char *const var_names[] = {
|
|
|
|
"PI",
|
|
|
|
"PHI",
|
|
|
|
"E",
|
|
|
|
"w",
|
|
|
|
"h",
|
|
|
|
"a", "dar",
|
|
|
|
"sar",
|
|
|
|
"hsub",
|
|
|
|
"vsub",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
enum var_name {
|
|
|
|
VAR_PI,
|
|
|
|
VAR_PHI,
|
|
|
|
VAR_E,
|
|
|
|
VAR_W,
|
|
|
|
VAR_H,
|
|
|
|
VAR_A, VAR_DAR,
|
|
|
|
VAR_SAR,
|
|
|
|
VAR_HSUB,
|
|
|
|
VAR_VSUB,
|
|
|
|
VARS_NB
|
|
|
|
};
|
|
|
|
|
2014-04-11 12:54:15 +03:00
|
|
|
typedef struct AspectContext {
|
2013-02-25 23:21:29 +03:00
|
|
|
const AVClass *class;
|
2013-03-18 23:31:54 +03:00
|
|
|
AVRational dar;
|
|
|
|
AVRational sar;
|
2013-02-25 23:21:29 +03:00
|
|
|
#if FF_API_OLD_FILTER_OPTS
|
|
|
|
float aspect_num, aspect_den;
|
|
|
|
#endif
|
2013-11-02 13:57:24 +03:00
|
|
|
char *ratio_expr;
|
2010-03-17 05:43:14 +02:00
|
|
|
} AspectContext;
|
|
|
|
|
2013-02-25 23:21:29 +03:00
|
|
|
#if FF_API_OLD_FILTER_OPTS
|
2013-03-13 10:26:39 +03:00
|
|
|
static av_cold int init(AVFilterContext *ctx)
|
2010-03-17 05:43:14 +02:00
|
|
|
{
|
2013-02-25 23:21:29 +03:00
|
|
|
AspectContext *s = ctx->priv;
|
2010-03-17 05:43:14 +02:00
|
|
|
|
2013-02-25 23:21:29 +03:00
|
|
|
if (s->aspect_num > 0 && s->aspect_den > 0) {
|
|
|
|
av_log(ctx, AV_LOG_WARNING, "This syntax is deprecated, use "
|
|
|
|
"dar=<number> or dar=num/den.\n");
|
2013-03-18 23:31:54 +03:00
|
|
|
s->sar = s->dar = av_d2q(s->aspect_num / s->aspect_den, INT_MAX);
|
2013-02-25 23:21:29 +03:00
|
|
|
}
|
2010-03-17 05:43:14 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2013-02-25 23:21:29 +03:00
|
|
|
#endif
|
2010-03-17 05:43:14 +02:00
|
|
|
|
2012-11-28 10:41:07 +03:00
|
|
|
static int filter_frame(AVFilterLink *link, AVFrame *frame)
|
2010-03-17 05:43:14 +02:00
|
|
|
{
|
2013-03-18 22:44:36 +03:00
|
|
|
AspectContext *s = link->dst->priv;
|
2010-03-17 05:43:14 +02:00
|
|
|
|
2013-03-18 23:31:54 +03:00
|
|
|
frame->sample_aspect_ratio = s->sar;
|
2012-11-27 09:49:45 +03:00
|
|
|
return ff_filter_frame(link->dst->outputs[0], frame);
|
2010-03-17 05:43:14 +02:00
|
|
|
}
|
|
|
|
|
2013-02-25 23:21:29 +03:00
|
|
|
#define OFFSET(x) offsetof(AspectContext, x)
|
|
|
|
#define FLAGS AV_OPT_FLAG_VIDEO_PARAM
|
|
|
|
|
2013-11-02 13:57:24 +03:00
|
|
|
static int get_aspect_ratio(AVFilterLink *inlink, AVRational *aspect_ratio)
|
|
|
|
{
|
|
|
|
AVFilterContext *ctx = inlink->dst;
|
|
|
|
AspectContext *s = inlink->dst->priv;
|
|
|
|
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
|
|
|
|
double var_values[VARS_NB], res;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
var_values[VAR_PI] = M_PI;
|
|
|
|
var_values[VAR_PHI] = M_PHI;
|
|
|
|
var_values[VAR_E] = M_E;
|
|
|
|
var_values[VAR_W] = inlink->w;
|
|
|
|
var_values[VAR_H] = inlink->h;
|
|
|
|
var_values[VAR_A] = (double) inlink->w / inlink->h;
|
|
|
|
var_values[VAR_SAR] = inlink->sample_aspect_ratio.num ?
|
|
|
|
(double) inlink->sample_aspect_ratio.num / inlink->sample_aspect_ratio.den : 1;
|
|
|
|
var_values[VAR_DAR] = var_values[VAR_A] * var_values[VAR_SAR];
|
|
|
|
var_values[VAR_HSUB] = 1 << desc->log2_chroma_w;
|
|
|
|
var_values[VAR_VSUB] = 1 << desc->log2_chroma_h;
|
|
|
|
|
|
|
|
/* evaluate new aspect ratio*/
|
|
|
|
if ((ret = av_expr_parse_and_eval(&res, s->ratio_expr,
|
|
|
|
var_names, var_values,
|
|
|
|
NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0) {
|
|
|
|
av_log(NULL, AV_LOG_ERROR,
|
|
|
|
"Error when evaluating the expression '%s'\n", s->ratio_expr);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
*aspect_ratio = av_d2q(res, INT_MAX);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-11-23 00:03:24 +02:00
|
|
|
#if CONFIG_SETDAR_FILTER
|
|
|
|
/* for setdar filter, convert from frame aspect ratio to pixel aspect ratio */
|
|
|
|
static int setdar_config_props(AVFilterLink *inlink)
|
2010-03-17 05:43:14 +02:00
|
|
|
{
|
2013-03-18 22:44:36 +03:00
|
|
|
AspectContext *s = inlink->dst->priv;
|
2013-03-18 23:31:54 +03:00
|
|
|
AVRational dar;
|
2013-11-02 13:57:24 +03:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
#if FF_API_OLD_FILTER_OPTS
|
|
|
|
if (!(s->aspect_num > 0 && s->aspect_den > 0)) {
|
|
|
|
#endif
|
|
|
|
if ((ret = get_aspect_ratio(inlink, &s->dar)))
|
|
|
|
return ret;
|
|
|
|
#if FF_API_OLD_FILTER_OPTS
|
|
|
|
}
|
|
|
|
#endif
|
2013-03-18 23:31:54 +03:00
|
|
|
|
|
|
|
if (s->dar.num && s->dar.den) {
|
|
|
|
av_reduce(&s->sar.num, &s->sar.den,
|
|
|
|
s->dar.num * inlink->h,
|
|
|
|
s->dar.den * inlink->w, 100);
|
|
|
|
inlink->sample_aspect_ratio = s->sar;
|
|
|
|
dar = s->dar;
|
2013-02-25 23:21:29 +03:00
|
|
|
} else {
|
|
|
|
inlink->sample_aspect_ratio = (AVRational){ 1, 1 };
|
|
|
|
dar = (AVRational){ inlink->w, inlink->h };
|
|
|
|
}
|
2010-03-17 05:43:14 +02:00
|
|
|
|
2012-06-25 07:31:38 +03:00
|
|
|
av_log(inlink->dst, AV_LOG_VERBOSE, "w:%d h:%d -> dar:%d/%d sar:%d/%d\n",
|
2013-02-25 23:21:29 +03:00
|
|
|
inlink->w, inlink->h, dar.num, dar.den,
|
|
|
|
inlink->sample_aspect_ratio.num, inlink->sample_aspect_ratio.den);
|
2011-02-02 21:39:56 +02:00
|
|
|
|
2010-03-17 05:43:14 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-02-25 23:21:29 +03:00
|
|
|
static const AVOption setdar_options[] = {
|
|
|
|
#if FF_API_OLD_FILTER_OPTS
|
|
|
|
{ "dar_num", NULL, OFFSET(aspect_num), AV_OPT_TYPE_FLOAT, { .dbl = 0 }, 0, FLT_MAX, FLAGS },
|
|
|
|
{ "dar_den", NULL, OFFSET(aspect_den), AV_OPT_TYPE_FLOAT, { .dbl = 0 }, 0, FLT_MAX, FLAGS },
|
|
|
|
#endif
|
2013-11-02 13:57:24 +03:00
|
|
|
{ "dar", "display aspect ratio", OFFSET(ratio_expr), AV_OPT_TYPE_STRING, { .str = "1" }, .flags = FLAGS },
|
2013-02-25 23:21:29 +03:00
|
|
|
{ NULL },
|
|
|
|
};
|
|
|
|
|
|
|
|
static const AVClass setdar_class = {
|
|
|
|
.class_name = "setdar",
|
|
|
|
.item_name = av_default_item_name,
|
|
|
|
.option = setdar_options,
|
|
|
|
.version = LIBAVUTIL_VERSION_INT,
|
|
|
|
};
|
|
|
|
|
2012-07-24 16:14:01 +03:00
|
|
|
static const AVFilterPad avfilter_vf_setdar_inputs[] = {
|
|
|
|
{
|
|
|
|
.name = "default",
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
|
|
|
.config_props = setdar_config_props,
|
|
|
|
.get_video_buffer = ff_null_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_setdar_outputs[] = {
|
|
|
|
{
|
|
|
|
.name = "default",
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
|
|
|
},
|
|
|
|
{ NULL }
|
|
|
|
};
|
|
|
|
|
2013-10-28 09:44:24 +03:00
|
|
|
AVFilter ff_vf_setdar = {
|
2010-11-23 00:03:24 +02:00
|
|
|
.name = "setdar",
|
|
|
|
.description = NULL_IF_CONFIG_SMALL("Set the frame display aspect ratio."),
|
2010-03-17 05:43:14 +02:00
|
|
|
|
2013-02-25 23:21:29 +03:00
|
|
|
#if FF_API_OLD_FILTER_OPTS
|
2010-03-17 05:43:14 +02:00
|
|
|
.init = init,
|
2013-02-25 23:21:29 +03:00
|
|
|
#endif
|
2010-03-17 05:43:14 +02:00
|
|
|
|
|
|
|
.priv_size = sizeof(AspectContext),
|
2013-02-25 23:21:29 +03:00
|
|
|
.priv_class = &setdar_class,
|
2010-03-17 05:43:14 +02:00
|
|
|
|
2012-07-24 16:14:01 +03:00
|
|
|
.inputs = avfilter_vf_setdar_inputs,
|
|
|
|
|
|
|
|
.outputs = avfilter_vf_setdar_outputs,
|
2010-03-17 05:43:14 +02:00
|
|
|
};
|
2010-11-23 00:03:24 +02:00
|
|
|
#endif /* CONFIG_SETDAR_FILTER */
|
2010-03-17 05:43:14 +02:00
|
|
|
|
2010-11-23 00:03:24 +02:00
|
|
|
#if CONFIG_SETSAR_FILTER
|
2011-02-02 21:39:56 +02:00
|
|
|
/* for setdar filter, convert from frame aspect ratio to pixel aspect ratio */
|
|
|
|
static int setsar_config_props(AVFilterLink *inlink)
|
|
|
|
{
|
2013-03-18 22:44:36 +03:00
|
|
|
AspectContext *s = inlink->dst->priv;
|
2013-11-02 13:57:24 +03:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
#if FF_API_OLD_FILTER_OPTS
|
|
|
|
if (!(s->aspect_num > 0 && s->aspect_den > 0)) {
|
|
|
|
#endif
|
|
|
|
if ((ret = get_aspect_ratio(inlink, &s->sar)))
|
|
|
|
return ret;
|
|
|
|
#if FF_API_OLD_FILTER_OPTS
|
|
|
|
}
|
|
|
|
#endif
|
2011-02-02 21:39:56 +02:00
|
|
|
|
2013-03-18 23:31:54 +03:00
|
|
|
inlink->sample_aspect_ratio = s->sar;
|
2011-02-02 21:39:56 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-02-25 23:21:29 +03:00
|
|
|
static const AVOption setsar_options[] = {
|
|
|
|
#if FF_API_OLD_FILTER_OPTS
|
|
|
|
{ "sar_num", NULL, OFFSET(aspect_num), AV_OPT_TYPE_FLOAT, { .dbl = 0 }, 0, FLT_MAX, FLAGS },
|
|
|
|
{ "sar_den", NULL, OFFSET(aspect_den), AV_OPT_TYPE_FLOAT, { .dbl = 0 }, 0, FLT_MAX, FLAGS },
|
|
|
|
#endif
|
2013-11-02 13:57:24 +03:00
|
|
|
{ "sar", "sample (pixel) aspect ratio", OFFSET(ratio_expr), AV_OPT_TYPE_STRING, { .str = "1" }, .flags = FLAGS },
|
2013-02-25 23:21:29 +03:00
|
|
|
{ NULL },
|
|
|
|
};
|
|
|
|
|
|
|
|
static const AVClass setsar_class = {
|
|
|
|
.class_name = "setsar",
|
|
|
|
.item_name = av_default_item_name,
|
|
|
|
.option = setsar_options,
|
|
|
|
.version = LIBAVUTIL_VERSION_INT,
|
|
|
|
};
|
|
|
|
|
2012-07-24 16:14:01 +03:00
|
|
|
static const AVFilterPad avfilter_vf_setsar_inputs[] = {
|
|
|
|
{
|
|
|
|
.name = "default",
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
|
|
|
.config_props = setsar_config_props,
|
|
|
|
.get_video_buffer = ff_null_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_setsar_outputs[] = {
|
|
|
|
{
|
|
|
|
.name = "default",
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
|
|
|
},
|
|
|
|
{ NULL }
|
|
|
|
};
|
|
|
|
|
2013-10-28 09:44:24 +03:00
|
|
|
AVFilter ff_vf_setsar = {
|
2010-11-23 00:03:24 +02:00
|
|
|
.name = "setsar",
|
|
|
|
.description = NULL_IF_CONFIG_SMALL("Set the pixel sample aspect ratio."),
|
2010-03-17 05:43:14 +02:00
|
|
|
|
2013-02-25 23:21:29 +03:00
|
|
|
#if FF_API_OLD_FILTER_OPTS
|
2010-03-17 05:43:14 +02:00
|
|
|
.init = init,
|
2013-02-25 23:21:29 +03:00
|
|
|
#endif
|
2010-03-17 05:43:14 +02:00
|
|
|
|
|
|
|
.priv_size = sizeof(AspectContext),
|
2013-02-25 23:21:29 +03:00
|
|
|
.priv_class = &setsar_class,
|
2010-03-17 05:43:14 +02:00
|
|
|
|
2012-07-24 16:14:01 +03:00
|
|
|
.inputs = avfilter_vf_setsar_inputs,
|
|
|
|
|
|
|
|
.outputs = avfilter_vf_setsar_outputs,
|
2010-03-17 05:43:14 +02:00
|
|
|
};
|
2010-11-23 00:03:24 +02:00
|
|
|
#endif /* CONFIG_SETSAR_FILTER */
|