]> git.sesse.net Git - ffmpeg/blob - libavfilter/f_settb.c
libspeex: support ZygoAudio (quality 10 mode)
[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 av_cold int init(AVFilterContext *ctx, const char *args, const AVClass *class)
69 {
70     SetTBContext *settb = ctx->priv;
71     static const char *shorthand[] = { "tb", NULL };
72     int ret;
73
74     settb->class = class;
75     av_opt_set_defaults(settb);
76
77     if ((ret = av_opt_set_from_string(settb, args, shorthand, "=", ":")) < 0)
78         return ret;
79
80     return 0;
81 }
82
83 static av_cold void uninit(AVFilterContext *ctx)
84 {
85     SetTBContext *settb = ctx->priv;
86     av_opt_free(settb);
87 }
88
89 static int config_output_props(AVFilterLink *outlink)
90 {
91     AVFilterContext *ctx = outlink->src;
92     SetTBContext *settb = ctx->priv;
93     AVFilterLink *inlink = ctx->inputs[0];
94     AVRational time_base;
95     int ret;
96     double res;
97
98     settb->var_values[VAR_AVTB] = av_q2d(AV_TIME_BASE_Q);
99     settb->var_values[VAR_INTB] = av_q2d(inlink->time_base);
100     settb->var_values[VAR_SR]   = inlink->sample_rate;
101
102     outlink->w = inlink->w;
103     outlink->h = inlink->h;
104
105     if ((ret = av_expr_parse_and_eval(&res, settb->tb_expr, var_names, settb->var_values,
106                                       NULL, NULL, NULL, NULL, NULL, 0, NULL)) < 0) {
107         av_log(ctx, AV_LOG_ERROR, "Invalid expression '%s' for timebase.\n", settb->tb_expr);
108         return ret;
109     }
110     time_base = av_d2q(res, INT_MAX);
111     if (time_base.num <= 0 || time_base.den <= 0) {
112         av_log(ctx, AV_LOG_ERROR,
113                "Invalid non-positive values for the timebase num:%d or den:%d.\n",
114                time_base.num, time_base.den);
115         return AVERROR(EINVAL);
116     }
117
118     outlink->time_base = time_base;
119     av_log(outlink->src, AV_LOG_VERBOSE, "tb:%d/%d -> tb:%d/%d\n",
120            inlink ->time_base.num, inlink ->time_base.den,
121            outlink->time_base.num, outlink->time_base.den);
122
123     return 0;
124 }
125
126 static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
127 {
128     AVFilterContext *ctx = inlink->dst;
129     AVFilterLink *outlink = ctx->outputs[0];
130
131     if (av_cmp_q(inlink->time_base, outlink->time_base)) {
132         int64_t orig_pts = frame->pts;
133         frame->pts = av_rescale_q(frame->pts, inlink->time_base, outlink->time_base);
134         av_log(ctx, AV_LOG_DEBUG, "tb:%d/%d pts:%"PRId64" -> tb:%d/%d pts:%"PRId64"\n",
135                inlink ->time_base.num, inlink ->time_base.den, orig_pts,
136                outlink->time_base.num, outlink->time_base.den, frame->pts);
137     }
138
139     return ff_filter_frame(outlink, frame);
140 }
141
142 #if CONFIG_SETTB_FILTER
143
144 DEFINE_OPTIONS(settb, VIDEO);
145 AVFILTER_DEFINE_CLASS(settb);
146
147 static av_cold int settb_init(AVFilterContext *ctx, const char *args)
148 {
149     return init(ctx, args, &settb_class);
150 }
151
152 static const AVFilterPad avfilter_vf_settb_inputs[] = {
153     {
154         .name             = "default",
155         .type             = AVMEDIA_TYPE_VIDEO,
156         .get_video_buffer = ff_null_get_video_buffer,
157         .filter_frame     = filter_frame,
158     },
159     { NULL }
160 };
161
162 static const AVFilterPad avfilter_vf_settb_outputs[] = {
163     {
164         .name         = "default",
165         .type         = AVMEDIA_TYPE_VIDEO,
166         .config_props = config_output_props,
167     },
168     { NULL }
169 };
170
171 AVFilter avfilter_vf_settb = {
172     .name      = "settb",
173     .description = NULL_IF_CONFIG_SMALL("Set timebase for the video output link."),
174     .init      = settb_init,
175     .uninit    = uninit,
176
177     .priv_size = sizeof(SetTBContext),
178
179     .inputs    = avfilter_vf_settb_inputs,
180     .outputs   = avfilter_vf_settb_outputs,
181     .priv_class = &settb_class,
182 };
183 #endif
184
185 #if CONFIG_ASETTB_FILTER
186
187 DEFINE_OPTIONS(asettb, AUDIO);
188 AVFILTER_DEFINE_CLASS(asettb);
189
190 static av_cold int asettb_init(AVFilterContext *ctx, const char *args)
191 {
192     return init(ctx, args, &asettb_class);
193 }
194
195 static const AVFilterPad avfilter_af_asettb_inputs[] = {
196     {
197         .name             = "default",
198         .type             = AVMEDIA_TYPE_AUDIO,
199         .get_audio_buffer = ff_null_get_audio_buffer,
200         .filter_frame     = filter_frame,
201     },
202     { NULL }
203 };
204
205 static const AVFilterPad avfilter_af_asettb_outputs[] = {
206     {
207         .name         = "default",
208         .type         = AVMEDIA_TYPE_AUDIO,
209         .config_props = config_output_props,
210     },
211     { NULL }
212 };
213
214 AVFilter avfilter_af_asettb = {
215     .name      = "asettb",
216     .description = NULL_IF_CONFIG_SMALL("Set timebase for the audio output link."),
217     .init      = asettb_init,
218     .uninit    = uninit,
219
220     .priv_size = sizeof(SetTBContext),
221     .inputs    = avfilter_af_asettb_inputs,
222     .outputs   = avfilter_af_asettb_outputs,
223     .priv_class = &asettb_class,
224 };
225 #endif