]> git.sesse.net Git - ffmpeg/blob - libavfilter/f_settb.c
lavfi: move color filter to testsrc, factorize
[ffmpeg] / libavfilter / f_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 int start_frame(AVFilterLink *inlink, AVFilterBufferRef *picref)
103 {
104     AVFilterContext *ctx = inlink->dst;
105     AVFilterLink *outlink = ctx->outputs[0];
106
107     if (av_cmp_q(inlink->time_base, outlink->time_base)) {
108         int64_t orig_pts = picref->pts;
109         picref->pts = av_rescale_q(picref->pts, inlink->time_base, outlink->time_base);
110         av_log(ctx, AV_LOG_DEBUG, "tb:%d/%d pts:%"PRId64" -> tb:%d/%d pts:%"PRId64"\n",
111                inlink ->time_base.num, inlink ->time_base.den, orig_pts,
112                outlink->time_base.num, outlink->time_base.den, picref->pts);
113     }
114     inlink->cur_buf = NULL;
115
116     return ff_start_frame(outlink, picref);
117 }
118
119 static int filter_samples(AVFilterLink *inlink, AVFilterBufferRef *samplesref)
120 {
121     AVFilterContext *ctx = inlink->dst;
122     AVFilterLink *outlink = ctx->outputs[0];
123
124     if (av_cmp_q(inlink->time_base, outlink->time_base)) {
125         int64_t orig_pts = samplesref->pts;
126         samplesref->pts = av_rescale_q(samplesref->pts, inlink->time_base, outlink->time_base);
127         av_log(ctx, AV_LOG_DEBUG, "tb:%d/%d pts:%"PRId64" -> tb:%d/%d pts:%"PRId64"\n",
128                inlink ->time_base.num, inlink ->time_base.den, orig_pts,
129                outlink->time_base.num, outlink->time_base.den, samplesref->pts);
130     }
131
132     return ff_filter_samples(outlink, samplesref);
133 }
134
135 #if CONFIG_SETTB_FILTER
136 AVFilter avfilter_vf_settb = {
137     .name      = "settb",
138     .description = NULL_IF_CONFIG_SMALL("Set timebase for the video output link."),
139     .init      = init,
140
141     .priv_size = sizeof(SetTBContext),
142
143     .inputs    = (const AVFilterPad[]) {
144         { .name             = "default",
145           .type             = AVMEDIA_TYPE_VIDEO,
146           .get_video_buffer = ff_null_get_video_buffer,
147           .start_frame      = start_frame,
148           .end_frame        = ff_null_end_frame },
149         { .name = NULL }
150     },
151     .outputs   = (const AVFilterPad[]) {
152         { .name            = "default",
153           .type            = AVMEDIA_TYPE_VIDEO,
154           .config_props    = config_output_props, },
155         { .name = NULL}
156     },
157 };
158 #endif
159
160 #if CONFIG_ASETTB_FILTER
161 AVFilter avfilter_af_asettb = {
162     .name      = "asettb",
163     .description = NULL_IF_CONFIG_SMALL("Set timebase for the audio output link."),
164     .init      = init,
165
166     .priv_size = sizeof(SetTBContext),
167
168     .inputs    = (const AVFilterPad[]) {
169         { .name             = "default",
170           .type             = AVMEDIA_TYPE_AUDIO,
171           .get_audio_buffer = ff_null_get_audio_buffer,
172           .filter_samples   = filter_samples, },
173         { .name = NULL }
174     },
175     .outputs   = (const AVFilterPad[]) {
176         { .name            = "default",
177           .type            = AVMEDIA_TYPE_AUDIO,
178           .config_props    = config_output_props, },
179         { .name = NULL}
180     },
181 };
182 #endif