]> git.sesse.net Git - ffmpeg/blob - libavfilter/asrc_aevalsrc.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavfilter / asrc_aevalsrc.c
1 /*
2  * Copyright (c) 2011 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  * eval audio source
24  */
25
26 #include "libavutil/audioconvert.h"
27 #include "libavutil/avassert.h"
28 #include "libavutil/avstring.h"
29 #include "libavutil/eval.h"
30 #include "libavutil/opt.h"
31 #include "libavutil/parseutils.h"
32 #include "avfilter.h"
33 #include "audio.h"
34 #include "internal.h"
35
36 static const char * const var_names[] = {
37     "n",            ///< number of frame
38     "t",            ///< timestamp expressed in seconds
39     "s",            ///< sample rate
40     NULL
41 };
42
43 enum var_name {
44     VAR_N,
45     VAR_T,
46     VAR_S,
47     VAR_VARS_NB
48 };
49
50 typedef struct {
51     const AVClass *class;
52     char *sample_rate_str;
53     int sample_rate;
54     int64_t chlayout;
55     char *chlayout_str;
56     int nb_channels;
57     int64_t pts;
58     AVExpr *expr[8];
59     char *expr_str[8];
60     int nb_samples;             ///< number of samples per requested frame
61     char *duration_str;         ///< total duration of the generated audio
62     double duration;
63     uint64_t n;
64     double var_values[VAR_VARS_NB];
65 } EvalContext;
66
67 #define OFFSET(x) offsetof(EvalContext, x)
68
69 static const AVOption eval_options[]= {
70     { "nb_samples",  "set the number of samples per requested frame", OFFSET(nb_samples),      AV_OPT_TYPE_INT,    {.dbl = 1024},    0,        INT_MAX },
71     { "n",           "set the number of samples per requested frame", OFFSET(nb_samples),      AV_OPT_TYPE_INT,    {.dbl = 1024},    0,        INT_MAX },
72     { "sample_rate", "set the sample rate",                           OFFSET(sample_rate_str), AV_OPT_TYPE_STRING, {.str = "44100"}, CHAR_MIN, CHAR_MAX },
73     { "s",           "set the sample rate",                           OFFSET(sample_rate_str), AV_OPT_TYPE_STRING, {.str = "44100"}, CHAR_MIN, CHAR_MAX },
74     { "duration",    "set audio duration", OFFSET(duration_str), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0 },
75     { "d",           "set audio duration", OFFSET(duration_str), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0 },
76     { "channel_layout", "set channel layout", OFFSET(chlayout_str), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0 },
77     { "c",              "set channel layout", OFFSET(chlayout_str), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0 },
78 {NULL},
79 };
80
81 static const AVClass eval_class = {
82     "AEvalSrcContext",
83     av_default_item_name,
84     eval_options
85 };
86
87 static int init(AVFilterContext *ctx, const char *args, void *opaque)
88 {
89     EvalContext *eval = ctx->priv;
90     char *args1 = av_strdup(args);
91     char *expr, *buf, *bufptr;
92     int ret, i;
93
94     eval->class = &eval_class;
95     av_opt_set_defaults(eval);
96
97     /* parse expressions */
98     buf = args1;
99     i = 0;
100     while (expr = av_strtok(buf, ":", &bufptr)) {
101         ret = av_expr_parse(&eval->expr[i], expr, var_names,
102                             NULL, NULL, NULL, NULL, 0, ctx);
103         if (ret < 0)
104             goto end;
105         i++;
106         if (bufptr && *bufptr == ':') { /* found last expression */
107             bufptr++;
108             break;
109         }
110         buf = NULL;
111     }
112     eval->nb_channels = i;
113
114     if (bufptr && (ret = av_set_options_string(eval, bufptr, "=", ":")) < 0)
115         goto end;
116
117     if (eval->chlayout_str) {
118         int n;
119         ret = ff_parse_channel_layout(&eval->chlayout, eval->chlayout_str, ctx);
120         if (ret < 0)
121             goto end;
122
123         n = av_get_channel_layout_nb_channels(eval->chlayout);
124         if (n != eval->nb_channels) {
125             av_log(ctx, AV_LOG_ERROR,
126                    "Mismatch between the specified number of channels '%d' "
127                    "and the number of channels '%d' in the specified channel layout '%s'\n",
128                    eval->nb_channels, n, eval->chlayout_str);
129             ret = AVERROR(EINVAL);
130             goto end;
131         }
132     } else {
133         /* guess channel layout from nb expressions/channels */
134         eval->chlayout = av_get_default_channel_layout(eval->nb_channels);
135         if (!eval->chlayout) {
136             av_log(ctx, AV_LOG_ERROR, "Invalid number of channels '%d' provided\n",
137                    eval->nb_channels);
138             ret = AVERROR(EINVAL);
139             goto end;
140         }
141     }
142
143     if ((ret = ff_parse_sample_rate(&eval->sample_rate, eval->sample_rate_str, ctx)))
144         goto end;
145
146     eval->duration = -1;
147     if (eval->duration_str) {
148         int64_t us = -1;
149         if ((ret = av_parse_time(&us, eval->duration_str, 1)) < 0) {
150             av_log(ctx, AV_LOG_ERROR, "Invalid duration: '%s'\n", eval->duration_str);
151             goto end;
152         }
153         eval->duration = (double)us / 1000000;
154     }
155     eval->n = 0;
156
157 end:
158     av_free(args1);
159     return ret;
160 }
161
162 static void uninit(AVFilterContext *ctx)
163 {
164     EvalContext *eval = ctx->priv;
165     int i;
166
167     for (i = 0; i < 8; i++) {
168         av_expr_free(eval->expr[i]);
169         eval->expr[i] = NULL;
170     }
171     av_freep(&eval->chlayout_str);
172     av_freep(&eval->duration_str);
173     av_freep(&eval->sample_rate_str);
174 }
175
176 static int config_props(AVFilterLink *outlink)
177 {
178     EvalContext *eval = outlink->src->priv;
179     char buf[128];
180
181     outlink->time_base = (AVRational){1, eval->sample_rate};
182     outlink->sample_rate = eval->sample_rate;
183
184     eval->var_values[VAR_S] = eval->sample_rate;
185
186     av_get_channel_layout_string(buf, sizeof(buf), 0, eval->chlayout);
187
188     av_log(outlink->src, AV_LOG_INFO,
189            "sample_rate:%d chlayout:%s duration:%f\n",
190            eval->sample_rate, buf, eval->duration);
191
192     return 0;
193 }
194
195 static int query_formats(AVFilterContext *ctx)
196 {
197     EvalContext *eval = ctx->priv;
198     enum AVSampleFormat sample_fmts[] = { AV_SAMPLE_FMT_DBLP, AV_SAMPLE_FMT_NONE };
199     int64_t chlayouts[] = { eval->chlayout, -1 };
200     int sample_rates[] = { eval->sample_rate, -1 };
201
202     avfilter_set_common_sample_formats (ctx, avfilter_make_format_list(sample_fmts));
203     ff_set_common_channel_layouts(ctx, avfilter_make_format64_list(chlayouts));
204     ff_set_common_samplerates(ctx, avfilter_make_format_list(sample_rates));
205
206     return 0;
207 }
208
209 static int request_frame(AVFilterLink *outlink)
210 {
211     EvalContext *eval = outlink->src->priv;
212     AVFilterBufferRef *samplesref;
213     int i, j;
214     double t = eval->var_values[VAR_N] * (double)1/eval->sample_rate;
215
216     if (eval->duration >= 0 && t > eval->duration)
217         return AVERROR_EOF;
218
219     samplesref = ff_get_audio_buffer(outlink, AV_PERM_WRITE, eval->nb_samples);
220
221     /* evaluate expression for each single sample and for each channel */
222     for (i = 0; i < eval->nb_samples; i++, eval->n++) {
223         eval->var_values[VAR_N] = eval->n;
224         eval->var_values[VAR_T] = eval->var_values[VAR_N] * (double)1/eval->sample_rate;
225
226         for (j = 0; j < eval->nb_channels; j++) {
227             *((double *) samplesref->extended_data[j] + i) =
228                 av_expr_eval(eval->expr[j], eval->var_values, NULL);
229         }
230     }
231
232     samplesref->pts = eval->pts;
233     samplesref->pos = -1;
234     samplesref->audio->sample_rate = eval->sample_rate;
235     eval->pts += eval->nb_samples;
236
237     ff_filter_samples(outlink, samplesref);
238
239     return 0;
240 }
241
242 AVFilter avfilter_asrc_aevalsrc = {
243     .name        = "aevalsrc",
244     .description = NULL_IF_CONFIG_SMALL("Generate an audio signal generated by an expression."),
245
246     .query_formats = query_formats,
247     .init        = init,
248     .uninit      = uninit,
249     .priv_size   = sizeof(EvalContext),
250
251     .inputs      = (const AVFilterPad[]) {{ .name = NULL}},
252
253     .outputs     = (const AVFilterPad[]) {{ .name = "default",
254                                       .type = AVMEDIA_TYPE_AUDIO,
255                                       .config_props = config_props,
256                                       .request_frame = request_frame, },
257                                     { .name = NULL}},
258 };