]> git.sesse.net Git - ffmpeg/blob - libavfilter/vf_aspect.c
Add some more missing includes after removing the implicit common.h
[ffmpeg] / libavfilter / vf_aspect.c
1 /*
2  * Copyright (c) 2010 Bobby Bingham
3
4  * This file is part of Libav.
5  *
6  * Libav 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  * Libav 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 Libav; 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/common.h"
27 #include "libavutil/mathematics.h"
28 #include "avfilter.h"
29 #include "internal.h"
30 #include "video.h"
31
32 typedef struct {
33     AVRational aspect;
34 } AspectContext;
35
36 static av_cold int init(AVFilterContext *ctx, const char *args)
37 {
38     AspectContext *aspect = ctx->priv;
39     double  ratio;
40     int64_t gcd;
41     char c = 0;
42
43     if (args) {
44         if (sscanf(args, "%d:%d%c", &aspect->aspect.num, &aspect->aspect.den, &c) != 2)
45             if (sscanf(args, "%lf%c", &ratio, &c) == 1)
46                 aspect->aspect = av_d2q(ratio, 100);
47
48         if (c || aspect->aspect.num <= 0 || aspect->aspect.den <= 0) {
49             av_log(ctx, AV_LOG_ERROR,
50                    "Invalid string '%s' for aspect ratio.\n", args);
51             return AVERROR(EINVAL);
52         }
53
54         gcd = av_gcd(FFABS(aspect->aspect.num), FFABS(aspect->aspect.den));
55         if (gcd) {
56             aspect->aspect.num /= gcd;
57             aspect->aspect.den /= gcd;
58         }
59     }
60
61     if (aspect->aspect.den == 0)
62         aspect->aspect = (AVRational) {0, 1};
63
64     av_log(ctx, AV_LOG_VERBOSE, "a:%d/%d\n", aspect->aspect.num, aspect->aspect.den);
65     return 0;
66 }
67
68 static int start_frame(AVFilterLink *link, AVFilterBufferRef *picref)
69 {
70     AspectContext *aspect = link->dst->priv;
71
72     picref->video->pixel_aspect = aspect->aspect;
73     link->cur_buf = NULL;
74     return ff_start_frame(link->dst->outputs[0], picref);
75 }
76
77 #if CONFIG_SETDAR_FILTER
78 /* for setdar filter, convert from frame aspect ratio to pixel aspect ratio */
79 static int setdar_config_props(AVFilterLink *inlink)
80 {
81     AspectContext *aspect = inlink->dst->priv;
82     AVRational dar = aspect->aspect;
83
84     av_reduce(&aspect->aspect.num, &aspect->aspect.den,
85                aspect->aspect.num * inlink->h,
86                aspect->aspect.den * inlink->w, 100);
87
88     av_log(inlink->dst, AV_LOG_VERBOSE, "w:%d h:%d -> dar:%d/%d sar:%d/%d\n",
89            inlink->w, inlink->h, dar.num, dar.den, aspect->aspect.num, aspect->aspect.den);
90
91     inlink->sample_aspect_ratio = aspect->aspect;
92
93     return 0;
94 }
95
96 AVFilter avfilter_vf_setdar = {
97     .name      = "setdar",
98     .description = NULL_IF_CONFIG_SMALL("Set the frame display aspect ratio."),
99
100     .init      = init,
101
102     .priv_size = sizeof(AspectContext),
103
104     .inputs    = (const AVFilterPad[]) {{ .name             = "default",
105                                           .type             = AVMEDIA_TYPE_VIDEO,
106                                           .config_props     = setdar_config_props,
107                                           .get_video_buffer = ff_null_get_video_buffer,
108                                           .start_frame      = start_frame,
109                                           .end_frame        = ff_null_end_frame },
110                                         { .name = NULL}},
111
112     .outputs   = (const AVFilterPad[]) {{ .name             = "default",
113                                           .type             = AVMEDIA_TYPE_VIDEO, },
114                                         { .name = NULL}},
115 };
116 #endif /* CONFIG_SETDAR_FILTER */
117
118 #if CONFIG_SETSAR_FILTER
119 /* for setdar filter, convert from frame aspect ratio to pixel aspect ratio */
120 static int setsar_config_props(AVFilterLink *inlink)
121 {
122     AspectContext *aspect = inlink->dst->priv;
123
124     inlink->sample_aspect_ratio = aspect->aspect;
125
126     return 0;
127 }
128
129 AVFilter avfilter_vf_setsar = {
130     .name      = "setsar",
131     .description = NULL_IF_CONFIG_SMALL("Set the pixel sample aspect ratio."),
132
133     .init      = init,
134
135     .priv_size = sizeof(AspectContext),
136
137     .inputs    = (const AVFilterPad[]) {{ .name             = "default",
138                                           .type             = AVMEDIA_TYPE_VIDEO,
139                                           .config_props     = setsar_config_props,
140                                           .get_video_buffer = ff_null_get_video_buffer,
141                                           .start_frame      = start_frame,
142                                           .end_frame        = ff_null_end_frame },
143                                         { .name = NULL}},
144
145     .outputs   = (const AVFilterPad[]) {{ .name             = "default",
146                                           .type             = AVMEDIA_TYPE_VIDEO, },
147                                         { .name = NULL}},
148 };
149 #endif /* CONFIG_SETSAR_FILTER */