2010-03-17 03:43:14 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2010 Bobby Bingham
|
2013-04-16 14:26:27 +00:00
|
|
|
*
|
2010-03-17 03:43:14 +00:00
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-04-20 14:45:34 +00:00
|
|
|
* @file
|
2010-11-18 20:37:17 +00:00
|
|
|
* aspect ratio modification video filters
|
2010-03-17 03:43:14 +00:00
|
|
|
*/
|
|
|
|
|
2013-02-25 20:21:29 +00:00
|
|
|
#include <float.h>
|
|
|
|
|
2012-08-06 13:49:32 +00:00
|
|
|
#include "libavutil/common.h"
|
2012-01-24 22:20:23 +00:00
|
|
|
#include "libavutil/opt.h"
|
2011-06-04 11:58:23 +00:00
|
|
|
#include "libavutil/mathematics.h"
|
2013-02-25 20:21:29 +00:00
|
|
|
#include "libavutil/opt.h"
|
2012-01-17 14:25:14 +00:00
|
|
|
#include "libavutil/parseutils.h"
|
2013-02-25 20:21:29 +00:00
|
|
|
|
2010-03-17 03:43:14 +00:00
|
|
|
#include "avfilter.h"
|
2012-06-12 18:12:42 +00:00
|
|
|
#include "internal.h"
|
2012-05-19 08:37:56 +00:00
|
|
|
#include "video.h"
|
2010-03-17 03:43:14 +00:00
|
|
|
|
|
|
|
typedef struct {
|
2012-01-24 22:20:23 +00:00
|
|
|
const AVClass *class;
|
2010-03-17 03:43:14 +00:00
|
|
|
AVRational aspect;
|
2012-10-16 16:10:59 +00:00
|
|
|
int max;
|
2013-02-25 20:21:29 +00:00
|
|
|
#if FF_API_OLD_FILTER_OPTS
|
|
|
|
float aspect_num, aspect_den;
|
|
|
|
#endif
|
2013-04-16 14:29:41 +00:00
|
|
|
char *ratio_str;
|
2010-03-17 03:43:14 +00:00
|
|
|
} AspectContext;
|
|
|
|
|
2013-03-13 07:26:39 +00:00
|
|
|
static av_cold int init(AVFilterContext *ctx)
|
2010-03-17 03:43:14 +00:00
|
|
|
{
|
2013-02-25 20:21:29 +00:00
|
|
|
AspectContext *s = ctx->priv;
|
2013-04-16 14:29:41 +00:00
|
|
|
int ret;
|
2012-01-24 22:20:23 +00:00
|
|
|
|
2013-04-16 14:29:41 +00:00
|
|
|
#if FF_API_OLD_FILTER_OPTS
|
2013-04-11 19:59:53 +00:00
|
|
|
if (s->aspect_num > 0 && s->aspect_den > 0) {
|
2012-01-24 22:20:23 +00:00
|
|
|
av_log(ctx, AV_LOG_WARNING,
|
|
|
|
"num:den syntax is deprecated, please use num/den or named options instead\n");
|
2013-04-11 20:46:34 +00:00
|
|
|
s->aspect = av_d2q(s->aspect_num / s->aspect_den, s->max);
|
2010-03-17 03:43:14 +00:00
|
|
|
}
|
2013-04-16 14:29:41 +00:00
|
|
|
#endif
|
|
|
|
if (s->ratio_str) {
|
|
|
|
ret = av_parse_ratio(&s->aspect, s->ratio_str, s->max, 0, ctx);
|
|
|
|
if (ret < 0 || s->aspect.num < 0 || s->aspect.den <= 0) {
|
|
|
|
av_log(ctx, AV_LOG_ERROR,
|
|
|
|
"Invalid string '%s' for aspect ratio\n", s->ratio_str);
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
}
|
|
|
|
}
|
2010-03-17 03:43:14 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-11-28 07:41:07 +00:00
|
|
|
static int filter_frame(AVFilterLink *link, AVFrame *frame)
|
2010-03-17 03:43:14 +00:00
|
|
|
{
|
|
|
|
AspectContext *aspect = link->dst->priv;
|
|
|
|
|
2012-11-28 07:41:07 +00:00
|
|
|
frame->sample_aspect_ratio = aspect->aspect;
|
2012-11-28 23:31:50 +00:00
|
|
|
return ff_filter_frame(link->dst->outputs[0], frame);
|
2010-03-17 03:43:14 +00:00
|
|
|
}
|
|
|
|
|
2013-02-25 20:21:29 +00:00
|
|
|
#define OFFSET(x) offsetof(AspectContext, x)
|
2013-04-10 13:27:40 +00:00
|
|
|
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
|
2012-01-24 22:20:23 +00:00
|
|
|
|
2010-11-22 22:03:24 +00:00
|
|
|
#if CONFIG_SETDAR_FILTER
|
2012-01-24 22:20:23 +00:00
|
|
|
|
2010-11-22 22:03:24 +00:00
|
|
|
static int setdar_config_props(AVFilterLink *inlink)
|
2010-03-17 03:43:14 +00:00
|
|
|
{
|
|
|
|
AspectContext *aspect = inlink->dst->priv;
|
2010-11-22 22:03:27 +00:00
|
|
|
AVRational dar = aspect->aspect;
|
2010-03-17 03:43:14 +00:00
|
|
|
|
2013-02-25 20:21:29 +00:00
|
|
|
if (aspect->aspect.num && aspect->aspect.den) {
|
|
|
|
av_reduce(&aspect->aspect.num, &aspect->aspect.den,
|
|
|
|
aspect->aspect.num * inlink->h,
|
2013-04-16 14:29:41 +00:00
|
|
|
aspect->aspect.den * inlink->w, INT_MAX);
|
2013-02-25 20:21:29 +00:00
|
|
|
inlink->sample_aspect_ratio = aspect->aspect;
|
|
|
|
} else {
|
|
|
|
inlink->sample_aspect_ratio = (AVRational){ 1, 1 };
|
|
|
|
dar = (AVRational){ inlink->w, inlink->h };
|
|
|
|
}
|
2010-03-17 03:43:14 +00:00
|
|
|
|
2012-06-25 04:31:38 +00:00
|
|
|
av_log(inlink->dst, AV_LOG_VERBOSE, "w:%d h:%d -> dar:%d/%d sar:%d/%d\n",
|
2013-02-25 20:21:29 +00:00
|
|
|
inlink->w, inlink->h, dar.num, dar.den,
|
|
|
|
inlink->sample_aspect_ratio.num, inlink->sample_aspect_ratio.den);
|
2011-01-31 17:51:47 +00:00
|
|
|
|
2010-03-17 03:43:14 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-02-25 20:21:29 +00:00
|
|
|
static const AVOption setdar_options[] = {
|
2013-04-11 19:59:53 +00:00
|
|
|
#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-04-16 14:29:41 +00:00
|
|
|
{ "dar", "set display aspect ratio", OFFSET(ratio_str), AV_OPT_TYPE_STRING, {.str="0"}, .flags=FLAGS },
|
|
|
|
{ "ratio", "set display aspect ratio", OFFSET(ratio_str), AV_OPT_TYPE_STRING, {.str="0"}, .flags=FLAGS },
|
|
|
|
{ "r", "set display aspect ratio", OFFSET(ratio_str), AV_OPT_TYPE_STRING, {.str="0"}, .flags=FLAGS },
|
2013-04-11 19:59:53 +00:00
|
|
|
{ "max", "set max value for nominator or denominator in the ratio", OFFSET(max), AV_OPT_TYPE_INT, {.i64=100}, 1, INT_MAX, FLAGS },
|
|
|
|
{ NULL }
|
2013-02-25 20:21:29 +00:00
|
|
|
};
|
|
|
|
|
2013-04-10 13:27:40 +00:00
|
|
|
AVFILTER_DEFINE_CLASS(setdar);
|
2013-02-25 20:21:29 +00:00
|
|
|
|
2012-07-24 13:14:01 +00: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-28 23:31:50 +00:00
|
|
|
.filter_frame = filter_frame,
|
2012-07-24 13:14:01 +00:00
|
|
|
},
|
|
|
|
{ NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
static const AVFilterPad avfilter_vf_setdar_outputs[] = {
|
|
|
|
{
|
|
|
|
.name = "default",
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
|
|
|
},
|
|
|
|
{ NULL }
|
|
|
|
};
|
|
|
|
|
2010-11-22 22:03:24 +00:00
|
|
|
AVFilter avfilter_vf_setdar = {
|
|
|
|
.name = "setdar",
|
|
|
|
.description = NULL_IF_CONFIG_SMALL("Set the frame display aspect ratio."),
|
2010-03-17 03:43:14 +00:00
|
|
|
.init = init,
|
|
|
|
.priv_size = sizeof(AspectContext),
|
2013-02-25 20:21:29 +00:00
|
|
|
.priv_class = &setdar_class,
|
2010-03-17 03:43:14 +00:00
|
|
|
|
2012-07-24 13:14:01 +00:00
|
|
|
.inputs = avfilter_vf_setdar_inputs,
|
|
|
|
|
|
|
|
.outputs = avfilter_vf_setdar_outputs,
|
2010-03-17 03:43:14 +00:00
|
|
|
};
|
2012-01-24 22:20:23 +00:00
|
|
|
|
2010-11-22 22:03:24 +00:00
|
|
|
#endif /* CONFIG_SETDAR_FILTER */
|
2010-03-17 03:43:14 +00:00
|
|
|
|
2010-11-22 22:03:24 +00:00
|
|
|
#if CONFIG_SETSAR_FILTER
|
2012-01-24 22:20:23 +00:00
|
|
|
|
|
|
|
|
2011-01-31 17:51:47 +00:00
|
|
|
static int setsar_config_props(AVFilterLink *inlink)
|
|
|
|
{
|
|
|
|
AspectContext *aspect = inlink->dst->priv;
|
|
|
|
|
2011-02-02 19:39:56 +00:00
|
|
|
inlink->sample_aspect_ratio = aspect->aspect;
|
2011-01-31 17:51:47 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-02-25 20:21:29 +00:00
|
|
|
static const AVOption setsar_options[] = {
|
2013-04-11 19:59:53 +00:00
|
|
|
#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-04-16 14:29:41 +00:00
|
|
|
{ "sar", "set sample (pixel) aspect ratio", OFFSET(ratio_str), AV_OPT_TYPE_STRING, {.str="0"}, .flags=FLAGS },
|
|
|
|
{ "ratio", "set sample (pixel) aspect ratio", OFFSET(ratio_str), AV_OPT_TYPE_STRING, {.str="0"}, .flags=FLAGS },
|
|
|
|
{ "r", "set sample (pixel) aspect ratio", OFFSET(ratio_str), AV_OPT_TYPE_STRING, {.str="0"}, .flags=FLAGS },
|
2013-04-11 19:59:53 +00:00
|
|
|
{ "max", "set max value for nominator or denominator in the ratio", OFFSET(max), AV_OPT_TYPE_INT, {.i64=100}, 1, INT_MAX, FLAGS },
|
|
|
|
{ NULL }
|
2013-02-25 20:21:29 +00:00
|
|
|
};
|
|
|
|
|
2013-04-10 13:27:40 +00:00
|
|
|
AVFILTER_DEFINE_CLASS(setsar);
|
2013-02-25 20:21:29 +00:00
|
|
|
|
2012-07-24 13:14:01 +00: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-28 23:31:50 +00:00
|
|
|
.filter_frame = filter_frame,
|
2012-07-24 13:14:01 +00:00
|
|
|
},
|
|
|
|
{ NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
static const AVFilterPad avfilter_vf_setsar_outputs[] = {
|
|
|
|
{
|
|
|
|
.name = "default",
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
|
|
|
},
|
|
|
|
{ NULL }
|
|
|
|
};
|
|
|
|
|
2010-11-22 22:03:24 +00:00
|
|
|
AVFilter avfilter_vf_setsar = {
|
|
|
|
.name = "setsar",
|
|
|
|
.description = NULL_IF_CONFIG_SMALL("Set the pixel sample aspect ratio."),
|
2010-03-17 03:43:14 +00:00
|
|
|
|
2013-02-25 20:21:29 +00:00
|
|
|
#if FF_API_OLD_FILTER_OPTS
|
2010-03-17 03:43:14 +00:00
|
|
|
.init = init,
|
2013-02-25 20:21:29 +00:00
|
|
|
#endif
|
2010-03-17 03:43:14 +00:00
|
|
|
|
|
|
|
.priv_size = sizeof(AspectContext),
|
2013-02-25 20:21:29 +00:00
|
|
|
.priv_class = &setsar_class,
|
2010-03-17 03:43:14 +00:00
|
|
|
|
2012-07-24 13:14:01 +00:00
|
|
|
.inputs = avfilter_vf_setsar_inputs,
|
|
|
|
|
|
|
|
.outputs = avfilter_vf_setsar_outputs,
|
2010-03-17 03:43:14 +00:00
|
|
|
};
|
2012-01-24 22:20:23 +00:00
|
|
|
|
2010-11-22 22:03:24 +00:00
|
|
|
#endif /* CONFIG_SETSAR_FILTER */
|