libavfilter/vf_aspect.c
3922deb5
 /*
  * Copyright (c) 2010 Bobby Bingham
 
  * 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
  */
 
 /**
ba87f080
  * @file
cef4b74b
  * aspect ratio modification video filters
3922deb5
  */
 
1d9c2dc8
 #include "libavutil/common.h"
ccd6def9
 #include "libavutil/opt.h"
0ebcdf5c
 #include "libavutil/mathematics.h"
70ffda32
 #include "libavutil/parseutils.h"
3922deb5
 #include "avfilter.h"
9d0bfc50
 #include "internal.h"
c04c533f
 #include "video.h"
3922deb5
 
 typedef struct {
ccd6def9
     const AVClass *class;
0349d61e
     AVRational ratio;
ccd6def9
     char *ratio_str;
6752aac6
     int max;
3922deb5
 } AspectContext;
 
ccd6def9
 #define OFFSET(x) offsetof(AspectContext, x)
 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
 
 static const AVOption options[] = {
6752aac6
     {"max", "set max value for nominator or denominator in the ratio", OFFSET(max), AV_OPT_TYPE_INT, {.i64=100}, 1, INT_MAX, FLAGS },
ccd6def9
     {"ratio", "set ratio", OFFSET(ratio_str), AV_OPT_TYPE_STRING, {.str="0"}, 0, 0, FLAGS },
     {"r",     "set ratio", OFFSET(ratio_str), AV_OPT_TYPE_STRING, {.str="0"}, 0, 0, FLAGS },
     {NULL}
 };
 
 static av_cold int init(AVFilterContext *ctx, const char *args, const AVClass *class)
3922deb5
 {
     AspectContext *aspect = ctx->priv;
6752aac6
     static const char *shorthand[] = { "ratio", "max", NULL };
ccd6def9
     char c;
     int ret;
     AVRational q;
 
     aspect->class = class;
     av_opt_set_defaults(aspect);
 
     if (sscanf(args, "%d:%d%c", &q.num, &q.den, &c) == 2) {
         aspect->ratio_str = av_strdup(args);
         av_log(ctx, AV_LOG_WARNING,
                "num:den syntax is deprecated, please use num/den or named options instead\n");
     } else if ((ret = av_opt_set_from_string(aspect, args, shorthand, "=", ":")) < 0) {
         return ret;
     }
3922deb5
 
ccd6def9
     if (aspect->ratio_str) {
6752aac6
         ret = av_parse_ratio(&aspect->ratio, aspect->ratio_str, aspect->max, 0, ctx);
ccd6def9
         if (ret < 0 || aspect->ratio.num < 0 || aspect->ratio.den <= 0) {
7de19a32
             av_log(ctx, AV_LOG_ERROR,
ccd6def9
                    "Invalid string '%s' for aspect ratio\n", args);
e19ccc89
             return AVERROR(EINVAL);
7de19a32
         }
3922deb5
     }
36021871
 
b536e2fa
     av_log(ctx, AV_LOG_VERBOSE, "a:%d/%d\n", aspect->ratio.num, aspect->ratio.den);
3922deb5
     return 0;
 }
 
8f21cfc6
 static int filter_frame(AVFilterLink *link, AVFilterBufferRef *frame)
3922deb5
 {
     AspectContext *aspect = link->dst->priv;
 
8f21cfc6
     frame->video->sample_aspect_ratio = aspect->ratio;
     return ff_filter_frame(link->dst->outputs[0], frame);
3922deb5
 }
 
ccd6def9
 static av_cold void uninit(AVFilterContext *ctx)
 {
     AspectContext *aspect = ctx->priv;
 
     av_opt_free(aspect);
 }
 
2fb21bf4
 #if CONFIG_SETDAR_FILTER
ccd6def9
 
 #define setdar_options options
 AVFILTER_DEFINE_CLASS(setdar);
 
 static av_cold int setdar_init(AVFilterContext *ctx, const char *args)
 {
     return init(ctx, args, &setdar_class);
 }
 
2fb21bf4
 static int setdar_config_props(AVFilterLink *inlink)
3922deb5
 {
     AspectContext *aspect = inlink->dst->priv;
0349d61e
     AVRational dar = aspect->ratio;
3922deb5
 
0349d61e
     av_reduce(&aspect->ratio.num, &aspect->ratio.den,
                aspect->ratio.num * inlink->h,
                aspect->ratio.den * inlink->w, 100);
3922deb5
 
1a49a169
     av_log(inlink->dst, AV_LOG_VERBOSE, "w:%d h:%d -> dar:%d/%d sar:%d/%d\n",
0349d61e
            inlink->w, inlink->h, dar.num, dar.den, aspect->ratio.num, aspect->ratio.den);
14b171cd
 
0349d61e
     inlink->sample_aspect_ratio = aspect->ratio;
14b171cd
 
3922deb5
     return 0;
 }
 
568c70e7
 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,
8f21cfc6
         .filter_frame     = filter_frame,
568c70e7
     },
     { NULL }
 };
 
 static const AVFilterPad avfilter_vf_setdar_outputs[] = {
     {
         .name = "default",
         .type = AVMEDIA_TYPE_VIDEO,
     },
     { NULL }
 };
 
2fb21bf4
 AVFilter avfilter_vf_setdar = {
     .name      = "setdar",
     .description = NULL_IF_CONFIG_SMALL("Set the frame display aspect ratio."),
3922deb5
 
ccd6def9
     .init      = setdar_init,
     .uninit    = uninit,
3922deb5
 
     .priv_size = sizeof(AspectContext),
 
568c70e7
     .inputs    = avfilter_vf_setdar_inputs,
 
     .outputs   = avfilter_vf_setdar_outputs,
ccd6def9
     .priv_class = &setdar_class,
3922deb5
 };
ccd6def9
 
2fb21bf4
 #endif /* CONFIG_SETDAR_FILTER */
3922deb5
 
2fb21bf4
 #if CONFIG_SETSAR_FILTER
ccd6def9
 
 #define setsar_options options
 AVFILTER_DEFINE_CLASS(setsar);
 
 static av_cold int setsar_init(AVFilterContext *ctx, const char *args)
 {
     return init(ctx, args, &setsar_class);
 }
 
14b171cd
 static int setsar_config_props(AVFilterLink *inlink)
 {
     AspectContext *aspect = inlink->dst->priv;
 
0349d61e
     inlink->sample_aspect_ratio = aspect->ratio;
14b171cd
 
     return 0;
 }
 
568c70e7
 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,
8f21cfc6
         .filter_frame     = filter_frame,
568c70e7
     },
     { NULL }
 };
 
 static const AVFilterPad avfilter_vf_setsar_outputs[] = {
     {
         .name = "default",
         .type = AVMEDIA_TYPE_VIDEO,
     },
     { NULL }
 };
 
2fb21bf4
 AVFilter avfilter_vf_setsar = {
     .name      = "setsar",
     .description = NULL_IF_CONFIG_SMALL("Set the pixel sample aspect ratio."),
3922deb5
 
ccd6def9
     .init      = setsar_init,
     .uninit    = uninit,
3922deb5
 
     .priv_size = sizeof(AspectContext),
 
568c70e7
     .inputs    = avfilter_vf_setsar_inputs,
 
     .outputs   = avfilter_vf_setsar_outputs,
6182e0a6
     .priv_class = &setsar_class,
3922deb5
 };
ccd6def9
 
2fb21bf4
 #endif /* CONFIG_SETSAR_FILTER */