]> git.sesse.net Git - ffmpeg/blob - libavfilter/vf_aspect.c
Merge remote-tracking branch 'qatar/master'
[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 #include "internal.h"
30 #include "video.h"
31
32 typedef struct {
33     AVRational ratio;
34 } AspectContext;
35
36 static av_cold int init(AVFilterContext *ctx, const char *args)
37 {
38     AspectContext *aspect = ctx->priv;
39     aspect->ratio = (AVRational) {0, 1};
40
41     if (args) {
42         if (av_parse_ratio(&aspect->ratio, args, 100, 0, ctx) < 0 ||
43             aspect->ratio.num < 0 || aspect->ratio.den <= 0) {
44             av_log(ctx, AV_LOG_ERROR,
45                    "Invalid string '%s' for aspect ratio.\n", args);
46             return AVERROR(EINVAL);
47         }
48     }
49
50     av_log(ctx, AV_LOG_VERBOSE, "a:%d/%d\n", aspect->ratio.num, aspect->ratio.den);
51     return 0;
52 }
53
54 static void start_frame(AVFilterLink *link, AVFilterBufferRef *picref)
55 {
56     AspectContext *aspect = link->dst->priv;
57
58     picref->video->sample_aspect_ratio = aspect->ratio;
59     link->cur_buf = NULL;
60     ff_start_frame(link->dst->outputs[0], picref);
61 }
62
63 #if CONFIG_SETDAR_FILTER
64 static int setdar_config_props(AVFilterLink *inlink)
65 {
66     AspectContext *aspect = inlink->dst->priv;
67     AVRational dar = aspect->ratio;
68
69     av_reduce(&aspect->ratio.num, &aspect->ratio.den,
70                aspect->ratio.num * inlink->h,
71                aspect->ratio.den * inlink->w, 100);
72
73     av_log(inlink->dst, AV_LOG_VERBOSE, "w:%d h:%d -> dar:%d/%d sar:%d/%d\n",
74            inlink->w, inlink->h, dar.num, dar.den, aspect->ratio.num, aspect->ratio.den);
75
76     inlink->sample_aspect_ratio = aspect->ratio;
77
78     return 0;
79 }
80
81 AVFilter avfilter_vf_setdar = {
82     .name      = "setdar",
83     .description = NULL_IF_CONFIG_SMALL("Set the frame display aspect ratio."),
84
85     .init      = init,
86
87     .priv_size = sizeof(AspectContext),
88
89     .inputs    = (const AVFilterPad[]) {{ .name       = "default",
90                                     .type             = AVMEDIA_TYPE_VIDEO,
91                                     .config_props     = setdar_config_props,
92                                     .get_video_buffer = ff_null_get_video_buffer,
93                                     .start_frame      = start_frame,
94                                     .end_frame        = ff_null_end_frame },
95                                   { .name = NULL}},
96
97     .outputs   = (const AVFilterPad[]) {{ .name       = "default",
98                                     .type             = AVMEDIA_TYPE_VIDEO, },
99                                   { .name = NULL}},
100 };
101 #endif /* CONFIG_SETDAR_FILTER */
102
103 #if CONFIG_SETSAR_FILTER
104 static int setsar_config_props(AVFilterLink *inlink)
105 {
106     AspectContext *aspect = inlink->dst->priv;
107
108     inlink->sample_aspect_ratio = aspect->ratio;
109
110     return 0;
111 }
112
113 AVFilter avfilter_vf_setsar = {
114     .name      = "setsar",
115     .description = NULL_IF_CONFIG_SMALL("Set the pixel sample aspect ratio."),
116
117     .init      = init,
118
119     .priv_size = sizeof(AspectContext),
120
121     .inputs    = (const AVFilterPad[]) {{ .name       = "default",
122                                     .type             = AVMEDIA_TYPE_VIDEO,
123                                     .config_props     = setsar_config_props,
124                                     .get_video_buffer = ff_null_get_video_buffer,
125                                     .start_frame      = start_frame,
126                                     .end_frame        = ff_null_end_frame },
127                                   { .name = NULL}},
128
129     .outputs   = (const AVFilterPad[]) {{ .name       = "default",
130                                     .type             = AVMEDIA_TYPE_VIDEO, },
131                                   { .name = NULL}},
132 };
133 #endif /* CONFIG_SETSAR_FILTER */