libavfilter/vf_aspect.c
3922deb5
 /*
  * Copyright (c) 2010 Bobby Bingham
30926a1f
  *
3922deb5
  * 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
  */
 
2831b307
 #include <float.h>
 
1d9c2dc8
 #include "libavutil/common.h"
b42827ff
 #include "libavutil/eval.h"
0ebcdf5c
 #include "libavutil/mathematics.h"
2831b307
 #include "libavutil/opt.h"
70ffda32
 #include "libavutil/parseutils.h"
34a0ac41
 #include "libavutil/pixdesc.h"
2831b307
 
3922deb5
 #include "avfilter.h"
9d0bfc50
 #include "internal.h"
c04c533f
 #include "video.h"
3922deb5
 
34a0ac41
 static const char *const var_names[] = {
     "w",
     "h",
     "a", "dar",
     "sar",
     "hsub",
     "vsub",
     NULL
 };
 
 enum var_name {
     VAR_W,
     VAR_H,
     VAR_A, VAR_DAR,
     VAR_SAR,
     VAR_HSUB,
     VAR_VSUB,
     VARS_NB
 };
 
58400ac1
 typedef struct AspectContext {
ccd6def9
     const AVClass *class;
d5c66d9c
     AVRational dar;
     AVRational sar;
6752aac6
     int max;
34a0ac41
     char *ratio_expr;
3922deb5
 } AspectContext;
 
7e350379
 static int filter_frame(AVFilterLink *link, AVFrame *frame)
3922deb5
 {
b3ea7662
     AspectContext *s = link->dst->priv;
3922deb5
 
d5c66d9c
     frame->sample_aspect_ratio = s->sar;
8f21cfc6
     return ff_filter_frame(link->dst->outputs[0], frame);
3922deb5
 }
 
2831b307
 #define OFFSET(x) offsetof(AspectContext, x)
43bac121
 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
ccd6def9
 
5229b783
 static inline void compute_dar(AVRational *dar, AVRational sar, int w, int h)
 {
     if (sar.num && sar.den) {
         av_reduce(&dar->num, &dar->den, sar.num * w, sar.den * h, INT_MAX);
     } else {
         av_reduce(&dar->num, &dar->den, w, h, INT_MAX);
     }
 }
 
34a0ac41
 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_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*/
a75bf4e5
     ret = av_expr_parse_and_eval(&res, s->ratio_expr,
34a0ac41
                                       var_names, var_values,
a75bf4e5
                                       NULL, NULL, NULL, NULL, NULL, 0, ctx);
     if (ret < 0) {
         ret = av_parse_ratio(aspect_ratio, s->ratio_expr, s->max, 0, ctx);
     } else
         *aspect_ratio = av_d2q(res, s->max);
 
     if (ret < 0) {
         av_log(ctx, AV_LOG_ERROR,
34a0ac41
                "Error when evaluating the expression '%s'\n", s->ratio_expr);
         return ret;
     }
a75bf4e5
     if (aspect_ratio->num < 0 || aspect_ratio->den <= 0) {
         av_log(ctx, AV_LOG_ERROR,
                 "Invalid string '%s' for aspect ratio\n", s->ratio_expr);
         return AVERROR(EINVAL);
     }
34a0ac41
     return 0;
 }
 
2fb21bf4
 #if CONFIG_SETDAR_FILTER
ccd6def9
 
2fb21bf4
 static int setdar_config_props(AVFilterLink *inlink)
3922deb5
 {
b3ea7662
     AspectContext *s = inlink->dst->priv;
d5c66d9c
     AVRational dar;
71fcb607
     AVRational old_dar;
5229b783
     AVRational old_sar = inlink->sample_aspect_ratio;
34a0ac41
     int ret;
 
     if ((ret = get_aspect_ratio(inlink, &s->dar)))
         return ret;
3922deb5
 
d5c66d9c
     if (s->dar.num && s->dar.den) {
         av_reduce(&s->sar.num, &s->sar.den,
                    s->dar.num * inlink->h,
71fcb607
                    s->dar.den * inlink->w, INT_MAX);
d5c66d9c
         inlink->sample_aspect_ratio = s->sar;
         dar = s->dar;
2831b307
     } else {
         inlink->sample_aspect_ratio = (AVRational){ 1, 1 };
         dar = (AVRational){ inlink->w, inlink->h };
     }
3922deb5
 
5229b783
     compute_dar(&old_dar, old_sar, inlink->w, inlink->h);
     av_log(inlink->dst, AV_LOG_VERBOSE, "w:%d h:%d dar:%d/%d sar:%d/%d -> dar:%d/%d sar:%d/%d\n",
            inlink->w, inlink->h, old_dar.num, old_dar.den, old_sar.num, old_sar.den,
f04ec05f
            dar.num, dar.den, inlink->sample_aspect_ratio.num, inlink->sample_aspect_ratio.den);
14b171cd
 
3922deb5
     return 0;
 }
 
2831b307
 static const AVOption setdar_options[] = {
a75bf4e5
     { "dar",   "set display aspect ratio", OFFSET(ratio_expr), AV_OPT_TYPE_STRING, { .str = "0" }, .flags = FLAGS },
     { "ratio", "set display aspect ratio", OFFSET(ratio_expr), AV_OPT_TYPE_STRING, { .str = "0" }, .flags = FLAGS },
     { "r",     "set display aspect ratio", OFFSET(ratio_expr), AV_OPT_TYPE_STRING, { .str = "0" }, .flags = FLAGS },
71ef1ec7
     { "max",   "set max value for nominator or denominator in the ratio", OFFSET(max), AV_OPT_TYPE_INT, {.i64=100}, 1, INT_MAX, FLAGS },
     { NULL }
2831b307
 };
 
43bac121
 AVFILTER_DEFINE_CLASS(setdar);
2831b307
 
568c70e7
 static const AVFilterPad avfilter_vf_setdar_inputs[] = {
     {
b211607b
         .name         = "default",
         .type         = AVMEDIA_TYPE_VIDEO,
         .config_props = setdar_config_props,
         .filter_frame = filter_frame,
568c70e7
     },
     { NULL }
 };
 
 static const AVFilterPad avfilter_vf_setdar_outputs[] = {
     {
         .name = "default",
         .type = AVMEDIA_TYPE_VIDEO,
     },
     { NULL }
 };
 
cd43ca04
 AVFilter ff_vf_setdar = {
b211607b
     .name        = "setdar",
2fb21bf4
     .description = NULL_IF_CONFIG_SMALL("Set the frame display aspect ratio."),
b211607b
     .priv_size   = sizeof(AspectContext),
     .priv_class  = &setdar_class,
     .inputs      = avfilter_vf_setdar_inputs,
     .outputs     = avfilter_vf_setdar_outputs,
3922deb5
 };
ccd6def9
 
2fb21bf4
 #endif /* CONFIG_SETDAR_FILTER */
3922deb5
 
2fb21bf4
 #if CONFIG_SETSAR_FILTER
ccd6def9
 
14b171cd
 static int setsar_config_props(AVFilterLink *inlink)
 {
b3ea7662
     AspectContext *s = inlink->dst->priv;
5229b783
     AVRational old_sar = inlink->sample_aspect_ratio;
     AVRational old_dar, dar;
34a0ac41
     int ret;
 
     if ((ret = get_aspect_ratio(inlink, &s->sar)))
         return ret;
14b171cd
 
d5c66d9c
     inlink->sample_aspect_ratio = s->sar;
14b171cd
 
5229b783
     compute_dar(&old_dar, old_sar, inlink->w, inlink->h);
71fcb607
     compute_dar(&dar, s->sar, inlink->w, inlink->h);
5229b783
     av_log(inlink->dst, AV_LOG_VERBOSE, "w:%d h:%d sar:%d/%d dar:%d/%d -> sar:%d/%d dar:%d/%d\n",
            inlink->w, inlink->h, old_sar.num, old_sar.den, old_dar.num, old_dar.den,
            inlink->sample_aspect_ratio.num, inlink->sample_aspect_ratio.den, dar.num, dar.den);
 
14b171cd
     return 0;
 }
 
2831b307
 static const AVOption setsar_options[] = {
a75bf4e5
     { "sar",   "set sample (pixel) aspect ratio", OFFSET(ratio_expr), AV_OPT_TYPE_STRING, { .str = "0" }, .flags = FLAGS },
     { "ratio", "set sample (pixel) aspect ratio", OFFSET(ratio_expr), AV_OPT_TYPE_STRING, { .str = "0" }, .flags = FLAGS },
     { "r",     "set sample (pixel) aspect ratio", OFFSET(ratio_expr), AV_OPT_TYPE_STRING, { .str = "0" }, .flags = FLAGS },
71ef1ec7
     { "max",   "set max value for nominator or denominator in the ratio", OFFSET(max), AV_OPT_TYPE_INT, {.i64=100}, 1, INT_MAX, FLAGS },
     { NULL }
2831b307
 };
 
43bac121
 AVFILTER_DEFINE_CLASS(setsar);
2831b307
 
568c70e7
 static const AVFilterPad avfilter_vf_setsar_inputs[] = {
     {
b211607b
         .name         = "default",
         .type         = AVMEDIA_TYPE_VIDEO,
         .config_props = setsar_config_props,
         .filter_frame = filter_frame,
568c70e7
     },
     { NULL }
 };
 
 static const AVFilterPad avfilter_vf_setsar_outputs[] = {
     {
         .name = "default",
         .type = AVMEDIA_TYPE_VIDEO,
     },
     { NULL }
 };
 
cd43ca04
 AVFilter ff_vf_setsar = {
b211607b
     .name        = "setsar",
2fb21bf4
     .description = NULL_IF_CONFIG_SMALL("Set the pixel sample aspect ratio."),
b211607b
     .priv_size   = sizeof(AspectContext),
     .priv_class  = &setsar_class,
     .inputs      = avfilter_vf_setsar_inputs,
     .outputs     = avfilter_vf_setsar_outputs,
3922deb5
 };
ccd6def9
 
2fb21bf4
 #endif /* CONFIG_SETSAR_FILTER */