]> git.sesse.net Git - ffmpeg/blob - libavfilter/vf_settb.c
settb: cosmetic: reindent vf_settb structure.
[ffmpeg] / libavfilter / vf_settb.c
1 /*
2  * Copyright (c) 2010 Stefano Sabatini
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  * Set timebase for the output link.
24  */
25
26 #include "libavutil/avstring.h"
27 #include "libavutil/eval.h"
28 #include "libavutil/mathematics.h"
29 #include "libavutil/rational.h"
30 #include "avfilter.h"
31 #include "internal.h"
32 #include "audio.h"
33 #include "video.h"
34
35 static const char *const var_names[] = {
36     "AVTB",   /* default timebase 1/AV_TIME_BASE */
37     "intb",   /* input timebase */
38     "sr",     /* sample rate */
39     NULL
40 };
41
42 enum var_name {
43     VAR_AVTB,
44     VAR_INTB,
45     VAR_SR,
46     VAR_VARS_NB
47 };
48
49 typedef struct {
50     char tb_expr[256];
51     double var_values[VAR_VARS_NB];
52 } SetTBContext;
53
54 static av_cold int init(AVFilterContext *ctx, const char *args)
55 {
56     SetTBContext *settb = ctx->priv;
57     av_strlcpy(settb->tb_expr, "intb", sizeof(settb->tb_expr));
58
59     if (args)
60         sscanf(args, "%255[^:]", settb->tb_expr);
61
62     return 0;
63 }
64
65 static int config_output_props(AVFilterLink *outlink)
66 {
67     AVFilterContext *ctx = outlink->src;
68     SetTBContext *settb = ctx->priv;
69     AVFilterLink *inlink = ctx->inputs[0];
70     AVRational time_base;
71     int ret;
72     double res;
73
74     settb->var_values[VAR_AVTB] = av_q2d(AV_TIME_BASE_Q);
75     settb->var_values[VAR_INTB] = av_q2d(inlink->time_base);
76     settb->var_values[VAR_SR]   = inlink->sample_rate;
77
78     outlink->w = inlink->w;
79     outlink->h = inlink->h;
80
81     if ((ret = av_expr_parse_and_eval(&res, settb->tb_expr, var_names, settb->var_values,
82                                       NULL, NULL, NULL, NULL, NULL, 0, NULL)) < 0) {
83         av_log(ctx, AV_LOG_ERROR, "Invalid expression '%s' for timebase.\n", settb->tb_expr);
84         return ret;
85     }
86     time_base = av_d2q(res, INT_MAX);
87     if (time_base.num <= 0 || time_base.den <= 0) {
88         av_log(ctx, AV_LOG_ERROR,
89                "Invalid non-positive values for the timebase num:%d or den:%d.\n",
90                time_base.num, time_base.den);
91         return AVERROR(EINVAL);
92     }
93
94     outlink->time_base = time_base;
95     av_log(outlink->src, AV_LOG_VERBOSE, "tb:%d/%d -> tb:%d/%d\n",
96            inlink ->time_base.num, inlink ->time_base.den,
97            outlink->time_base.num, outlink->time_base.den);
98
99     return 0;
100 }
101
102 static void start_frame(AVFilterLink *inlink, AVFilterBufferRef *picref)
103 {
104     AVFilterContext *ctx = inlink->dst;
105     AVFilterLink *outlink = ctx->outputs[0];
106     AVFilterBufferRef *picref2 = picref;
107
108     if (av_cmp_q(inlink->time_base, outlink->time_base)) {
109         picref2 = avfilter_ref_buffer(picref, ~0);
110         picref2->pts = av_rescale_q(picref->pts, inlink->time_base, outlink->time_base);
111         av_log(ctx, AV_LOG_DEBUG, "tb:%d/%d pts:%"PRId64" -> tb:%d/%d pts:%"PRId64"\n",
112                inlink ->time_base.num, inlink ->time_base.den, picref ->pts,
113                outlink->time_base.num, outlink->time_base.den, picref2->pts);
114         avfilter_unref_buffer(picref);
115     }
116
117     ff_start_frame(outlink, picref2);
118 }
119
120 static void filter_samples(AVFilterLink *inlink, AVFilterBufferRef *insamples)
121 {
122     AVFilterContext *ctx = inlink->dst;
123     AVFilterLink *outlink = ctx->outputs[0];
124     AVFilterBufferRef *outsamples = insamples;
125
126     if (av_cmp_q(inlink->time_base, outlink->time_base)) {
127         outsamples = avfilter_ref_buffer(insamples, ~0);
128         outsamples->pts = av_rescale_q(insamples->pts, inlink->time_base, outlink->time_base);
129         av_log(ctx, AV_LOG_DEBUG, "tb:%d/%d pts:%"PRId64" -> tb:%d/%d pts:%"PRId64"\n",
130                inlink ->time_base.num, inlink ->time_base.den, insamples ->pts,
131                outlink->time_base.num, outlink->time_base.den, outsamples->pts);
132         avfilter_unref_buffer(insamples);
133     }
134
135     ff_filter_samples(outlink, outsamples);
136 }
137
138 #if CONFIG_SETTB_FILTER
139 AVFilter avfilter_vf_settb = {
140     .name      = "settb",
141     .description = NULL_IF_CONFIG_SMALL("Set timebase for the video output link."),
142     .init      = init,
143
144     .priv_size = sizeof(SetTBContext),
145
146     .inputs    = (const AVFilterPad[]) {
147         { .name             = "default",
148           .type             = AVMEDIA_TYPE_VIDEO,
149           .get_video_buffer = ff_null_get_video_buffer,
150           .start_frame      = start_frame,
151           .end_frame        = ff_null_end_frame },
152         { .name = NULL }
153     },
154     .outputs   = (const AVFilterPad[]) {
155         { .name            = "default",
156           .type            = AVMEDIA_TYPE_VIDEO,
157           .config_props    = config_output_props, },
158         { .name = NULL}
159     },
160 };
161 #endif
162
163 #if CONFIG_ASETTB_FILTER
164 AVFilter avfilter_af_asettb = {
165     .name      = "asettb",
166     .description = NULL_IF_CONFIG_SMALL("Set timebase for the audio output link."),
167     .init      = init,
168
169     .priv_size = sizeof(SetTBContext),
170
171     .inputs    = (const AVFilterPad[]) {
172         { .name             = "default",
173           .type             = AVMEDIA_TYPE_AUDIO,
174           .get_audio_buffer = ff_null_get_audio_buffer,
175           .filter_samples   = filter_samples, },
176         { .name = NULL }
177     },
178     .outputs   = (const AVFilterPad[]) {
179         { .name            = "default",
180           .type            = AVMEDIA_TYPE_AUDIO,
181           .config_props    = config_output_props, },
182         { .name = NULL}
183     },
184 };
185 #endif