]> git.sesse.net Git - ffmpeg/blob - libavfilter/f_settb.c
Merge commit '40c885c589808455a1c4b473509f1e6cd4908f55'
[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 <inttypes.h>
27 #include <stdio.h>
28
29 #include "libavutil/avstring.h"
30 #include "libavutil/eval.h"
31 #include "libavutil/internal.h"
32 #include "libavutil/mathematics.h"
33 #include "libavutil/opt.h"
34 #include "libavutil/rational.h"
35 #include "avfilter.h"
36 #include "internal.h"
37 #include "audio.h"
38 #include "video.h"
39
40 static const char *const var_names[] = {
41     "AVTB",   /* default timebase 1/AV_TIME_BASE */
42     "intb",   /* input timebase */
43     "sr",     /* sample rate */
44     NULL
45 };
46
47 enum var_name {
48     VAR_AVTB,
49     VAR_INTB,
50     VAR_SR,
51     VAR_VARS_NB
52 };
53
54 typedef struct {
55     const AVClass *class;
56     char *tb_expr;
57     double var_values[VAR_VARS_NB];
58 } SetTBContext;
59
60 #define OFFSET(x) offsetof(SetTBContext, x)
61 #define DEFINE_OPTIONS(filt_name, filt_type)                                               \
62 static const AVOption filt_name##_options[] = {                                            \
63     { "tb", "set timebase expression", OFFSET(tb_expr), AV_OPT_TYPE_STRING, {.str="intb"}, \
64            .flags=AV_OPT_FLAG_##filt_type##_PARAM|AV_OPT_FLAG_FILTERING_PARAM },           \
65     { NULL }                                                                               \
66 }
67
68 static int config_output_props(AVFilterLink *outlink)
69 {
70     AVFilterContext *ctx = outlink->src;
71     SetTBContext *settb = ctx->priv;
72     AVFilterLink *inlink = ctx->inputs[0];
73     AVRational time_base;
74     int ret;
75     double res;
76
77     settb->var_values[VAR_AVTB] = av_q2d(AV_TIME_BASE_Q);
78     settb->var_values[VAR_INTB] = av_q2d(inlink->time_base);
79     settb->var_values[VAR_SR]   = inlink->sample_rate;
80
81     outlink->w = inlink->w;
82     outlink->h = inlink->h;
83
84     if ((ret = av_expr_parse_and_eval(&res, settb->tb_expr, var_names, settb->var_values,
85                                       NULL, NULL, NULL, NULL, NULL, 0, NULL)) < 0) {
86         av_log(ctx, AV_LOG_ERROR, "Invalid expression '%s' for timebase.\n", settb->tb_expr);
87         return ret;
88     }
89     time_base = av_d2q(res, INT_MAX);
90     if (time_base.num <= 0 || time_base.den <= 0) {
91         av_log(ctx, AV_LOG_ERROR,
92                "Invalid non-positive values for the timebase num:%d or den:%d.\n",
93                time_base.num, time_base.den);
94         return AVERROR(EINVAL);
95     }
96
97     outlink->time_base = time_base;
98     av_log(outlink->src, AV_LOG_VERBOSE, "tb:%d/%d -> tb:%d/%d\n",
99            inlink ->time_base.num, inlink ->time_base.den,
100            outlink->time_base.num, outlink->time_base.den);
101
102     return 0;
103 }
104
105 static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
106 {
107     AVFilterContext *ctx = inlink->dst;
108     AVFilterLink *outlink = ctx->outputs[0];
109
110     if (av_cmp_q(inlink->time_base, outlink->time_base)) {
111         int64_t orig_pts = frame->pts;
112         frame->pts = av_rescale_q(frame->pts, inlink->time_base, outlink->time_base);
113         av_log(ctx, AV_LOG_DEBUG, "tb:%d/%d pts:%"PRId64" -> tb:%d/%d pts:%"PRId64"\n",
114                inlink ->time_base.num, inlink ->time_base.den, orig_pts,
115                outlink->time_base.num, outlink->time_base.den, frame->pts);
116     }
117
118     return ff_filter_frame(outlink, frame);
119 }
120
121 static const char *const shorthand[] = { "tb", NULL };
122
123 #if CONFIG_SETTB_FILTER
124
125 DEFINE_OPTIONS(settb, VIDEO);
126 AVFILTER_DEFINE_CLASS(settb);
127
128 static const AVFilterPad avfilter_vf_settb_inputs[] = {
129     {
130         .name             = "default",
131         .type             = AVMEDIA_TYPE_VIDEO,
132         .get_video_buffer = ff_null_get_video_buffer,
133         .filter_frame     = filter_frame,
134     },
135     { NULL }
136 };
137
138 static const AVFilterPad avfilter_vf_settb_outputs[] = {
139     {
140         .name         = "default",
141         .type         = AVMEDIA_TYPE_VIDEO,
142         .config_props = config_output_props,
143     },
144     { NULL }
145 };
146
147 AVFilter avfilter_vf_settb = {
148     .name      = "settb",
149     .description = NULL_IF_CONFIG_SMALL("Set timebase for the video output link."),
150
151     .priv_size = sizeof(SetTBContext),
152
153     .inputs    = avfilter_vf_settb_inputs,
154     .outputs   = avfilter_vf_settb_outputs,
155     .priv_class = &settb_class,
156     .shorthand  = shorthand,
157 };
158 #endif
159
160 #if CONFIG_ASETTB_FILTER
161
162 DEFINE_OPTIONS(asettb, AUDIO);
163 AVFILTER_DEFINE_CLASS(asettb);
164
165 static const AVFilterPad avfilter_af_asettb_inputs[] = {
166     {
167         .name             = "default",
168         .type             = AVMEDIA_TYPE_AUDIO,
169         .get_audio_buffer = ff_null_get_audio_buffer,
170         .filter_frame     = filter_frame,
171     },
172     { NULL }
173 };
174
175 static const AVFilterPad avfilter_af_asettb_outputs[] = {
176     {
177         .name         = "default",
178         .type         = AVMEDIA_TYPE_AUDIO,
179         .config_props = config_output_props,
180     },
181     { NULL }
182 };
183
184 AVFilter avfilter_af_asettb = {
185     .name      = "asettb",
186     .description = NULL_IF_CONFIG_SMALL("Set timebase for the audio output link."),
187
188     .priv_size = sizeof(SetTBContext),
189     .inputs    = avfilter_af_asettb_inputs,
190     .outputs   = avfilter_af_asettb_outputs,
191     .priv_class = &asettb_class,
192     .shorthand  = shorthand,
193 };
194 #endif