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