]> git.sesse.net Git - ffmpeg/blob - libavfilter/vf_aspect.c
lavu: introduce av_parse_ratio() and use it in ffmpeg and lavfi/aspect
[ffmpeg] / libavfilter / vf_aspect.c
1 /*
2  * Copyright (c) 2010 Bobby Bingham
3
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 /**
22  * @file
23  * aspect ratio modification video filters
24  */
25
26 #include "libavutil/mathematics.h"
27 #include "libavutil/parseutils.h"
28 #include "avfilter.h"
29
30 typedef struct {
31     AVRational aspect;
32 } AspectContext;
33
34 static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
35 {
36     AspectContext *aspect = ctx->priv;
37     int ret;
38
39     if (args) {
40         if ((ret = av_parse_ratio(&aspect->aspect, args, 100, 0, ctx)) < 0 ||
41             aspect->aspect.num < 0 || aspect->aspect.den <= 0) {
42             av_log(ctx, AV_LOG_ERROR,
43                    "Invalid string '%s' for aspect ratio.\n", args);
44             return ret;
45         }
46
47         av_log(ctx, AV_LOG_INFO, "a:%d/%d\n", aspect->aspect.num, aspect->aspect.den);
48     }
49     return 0;
50 }
51
52 static void start_frame(AVFilterLink *link, AVFilterBufferRef *picref)
53 {
54     AspectContext *aspect = link->dst->priv;
55
56     picref->video->sample_aspect_ratio = aspect->aspect;
57     avfilter_start_frame(link->dst->outputs[0], picref);
58 }
59
60 #if CONFIG_SETDAR_FILTER
61 /* for setdar filter, convert from frame aspect ratio to pixel aspect ratio */
62 static int setdar_config_props(AVFilterLink *inlink)
63 {
64     AspectContext *aspect = inlink->dst->priv;
65     AVRational dar = aspect->aspect;
66
67     av_reduce(&aspect->aspect.num, &aspect->aspect.den,
68                aspect->aspect.num * inlink->h,
69                aspect->aspect.den * inlink->w, 100);
70
71     av_log(inlink->dst, AV_LOG_INFO, "w:%d h:%d -> dar:%d/%d sar:%d/%d\n",
72            inlink->w, inlink->h, dar.num, dar.den, aspect->aspect.num, aspect->aspect.den);
73
74     inlink->sample_aspect_ratio = aspect->aspect;
75
76     return 0;
77 }
78
79 AVFilter avfilter_vf_setdar = {
80     .name      = "setdar",
81     .description = NULL_IF_CONFIG_SMALL("Set the frame display aspect ratio."),
82
83     .init      = init,
84
85     .priv_size = sizeof(AspectContext),
86
87     .inputs    = (const AVFilterPad[]) {{ .name       = "default",
88                                     .type             = AVMEDIA_TYPE_VIDEO,
89                                     .config_props     = setdar_config_props,
90                                     .get_video_buffer = avfilter_null_get_video_buffer,
91                                     .start_frame      = start_frame,
92                                     .end_frame        = avfilter_null_end_frame },
93                                   { .name = NULL}},
94
95     .outputs   = (const AVFilterPad[]) {{ .name       = "default",
96                                     .type             = AVMEDIA_TYPE_VIDEO, },
97                                   { .name = NULL}},
98 };
99 #endif /* CONFIG_SETDAR_FILTER */
100
101 #if CONFIG_SETSAR_FILTER
102 /* for setdar filter, convert from frame aspect ratio to pixel aspect ratio */
103 static int setsar_config_props(AVFilterLink *inlink)
104 {
105     AspectContext *aspect = inlink->dst->priv;
106
107     inlink->sample_aspect_ratio = aspect->aspect;
108
109     return 0;
110 }
111
112 AVFilter avfilter_vf_setsar = {
113     .name      = "setsar",
114     .description = NULL_IF_CONFIG_SMALL("Set the pixel sample aspect ratio."),
115
116     .init      = init,
117
118     .priv_size = sizeof(AspectContext),
119
120     .inputs    = (const AVFilterPad[]) {{ .name       = "default",
121                                     .type             = AVMEDIA_TYPE_VIDEO,
122                                     .config_props     = setsar_config_props,
123                                     .get_video_buffer = avfilter_null_get_video_buffer,
124                                     .start_frame      = start_frame,
125                                     .end_frame        = avfilter_null_end_frame },
126                                   { .name = NULL}},
127
128     .outputs   = (const AVFilterPad[]) {{ .name       = "default",
129                                     .type             = AVMEDIA_TYPE_VIDEO, },
130                                   { .name = NULL}},
131 };
132 #endif /* CONFIG_SETSAR_FILTER */