]> git.sesse.net Git - ffmpeg/blob - libavfilter/af_astreamsync.c
lavfi: fix mp and mandelbrot descriptions to make them complete sentences
[ffmpeg] / libavfilter / af_astreamsync.c
1 /*
2  * Copyright (c) 2011 Nicolas George <nicolas.george@normalesup.org>
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
14  * GNU 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  * Stream (de)synchronization filter
24  */
25
26 #include "libavutil/eval.h"
27 #include "avfilter.h"
28 #include "internal.h"
29
30 #define QUEUE_SIZE 16
31
32 static const char * const var_names[] = {
33     "b1", "b2",
34     "s1", "s2",
35     "t1", "t2",
36     NULL
37 };
38
39 enum var_name {
40     VAR_B1, VAR_B2,
41     VAR_S1, VAR_S2,
42     VAR_T1, VAR_T2,
43     VAR_NB
44 };
45
46 typedef struct {
47     AVExpr *expr;
48     double var_values[VAR_NB];
49     struct buf_queue {
50         AVFilterBufferRef *buf[QUEUE_SIZE];
51         unsigned tail, nb;
52         /* buf[tail] is the oldest,
53            buf[(tail + nb) % QUEUE_SIZE] is where the next is added */
54     } queue[2];
55     int req[2];
56     int next_out;
57     int eof; /* bitmask, one bit for each stream */
58 } AStreamSyncContext;
59
60 static const char *default_expr = "t1-t2";
61
62 static av_cold int init(AVFilterContext *ctx, const char *args0, void *opaque)
63 {
64     AStreamSyncContext *as = ctx->priv;
65     const char *expr = args0 ? args0 : default_expr;
66     int r, i;
67
68     r = av_expr_parse(&as->expr, expr, var_names,
69                       NULL, NULL, NULL, NULL, 0, ctx);
70     if (r < 0) {
71         av_log(ctx, AV_LOG_ERROR, "Error in expression \"%s\"\n", expr);
72         return r;
73     }
74     for (i = 0; i < 42; i++)
75         av_expr_eval(as->expr, as->var_values, NULL); /* exercize prng */
76     return 0;
77 }
78
79 static int query_formats(AVFilterContext *ctx)
80 {
81     int i;
82     AVFilterFormats *formats;
83
84     for (i = 0; i < 2; i++) {
85         formats = ctx->inputs[i]->in_formats;
86         avfilter_formats_ref(formats, &ctx->inputs[i]->out_formats);
87         avfilter_formats_ref(formats, &ctx->outputs[i]->in_formats);
88         formats = ctx->inputs[i]->in_packing;
89         avfilter_formats_ref(formats, &ctx->inputs[i]->out_packing);
90         avfilter_formats_ref(formats, &ctx->outputs[i]->in_packing);
91         formats = ctx->inputs[i]->in_chlayouts;
92         avfilter_formats_ref(formats, &ctx->inputs[i]->out_chlayouts);
93         avfilter_formats_ref(formats, &ctx->outputs[i]->in_chlayouts);
94     }
95     return 0;
96 }
97
98 static int config_output(AVFilterLink *outlink)
99 {
100     AVFilterContext *ctx = outlink->src;
101     int id = outlink == ctx->outputs[1];
102
103     outlink->sample_rate = ctx->inputs[id]->sample_rate;
104     outlink->time_base   = ctx->inputs[id]->time_base;
105     return 0;
106 }
107
108 static void send_out(AVFilterContext *ctx, int out_id)
109 {
110     AStreamSyncContext *as = ctx->priv;
111     struct buf_queue *queue = &as->queue[out_id];
112     AVFilterBufferRef *buf = queue->buf[queue->tail];
113
114     queue->buf[queue->tail] = NULL;
115     as->var_values[VAR_B1 + out_id]++;
116     as->var_values[VAR_S1 + out_id] += buf->audio->nb_samples;
117     if (buf->pts != AV_NOPTS_VALUE)
118         as->var_values[VAR_T1 + out_id] =
119             av_q2d(ctx->outputs[out_id]->time_base) * buf->pts;
120     as->var_values[VAR_T1 + out_id] += buf->audio->nb_samples /
121                                    (double)ctx->inputs[out_id]->sample_rate;
122     avfilter_filter_samples(ctx->outputs[out_id], buf);
123     queue->nb--;
124     queue->tail = (queue->tail + 1) % QUEUE_SIZE;
125     if (as->req[out_id])
126         as->req[out_id]--;
127 }
128
129 static void send_next(AVFilterContext *ctx)
130 {
131     AStreamSyncContext *as = ctx->priv;
132     int i;
133
134     while (1) {
135         if (!as->queue[as->next_out].nb)
136             break;
137         send_out(ctx, as->next_out);
138         if (!as->eof)
139             as->next_out = av_expr_eval(as->expr, as->var_values, NULL) >= 0;
140     }
141     for (i = 0; i < 2; i++)
142         if (as->queue[i].nb == QUEUE_SIZE)
143             send_out(ctx, i);
144 }
145
146 static int request_frame(AVFilterLink *outlink)
147 {
148     AVFilterContext *ctx = outlink->src;
149     AStreamSyncContext *as = ctx->priv;
150     int id = outlink == ctx->outputs[1];
151
152     as->req[id]++;
153     while (as->req[id] && !(as->eof & (1 << id))) {
154         if (as->queue[as->next_out].nb) {
155             send_next(ctx);
156         } else {
157             as->eof |= 1 << as->next_out;
158             avfilter_request_frame(ctx->inputs[as->next_out]);
159             if (as->eof & (1 << as->next_out))
160                 as->next_out = !as->next_out;
161         }
162     }
163     return 0;
164 }
165
166 static void filter_samples(AVFilterLink *inlink, AVFilterBufferRef *insamples)
167 {
168     AVFilterContext *ctx = inlink->dst;
169     AStreamSyncContext *as = ctx->priv;
170     int id = inlink == ctx->inputs[1];
171
172     as->queue[id].buf[(as->queue[id].tail + as->queue[id].nb++) % QUEUE_SIZE] =
173         insamples;
174     as->eof &= ~(1 << id);
175     send_next(ctx);
176 }
177
178 AVFilter avfilter_af_astreamsync = {
179     .name          = "astreamsync",
180     .description   = NULL_IF_CONFIG_SMALL("Copy two streams of audio data "
181                                           "in a configurable order."),
182     .priv_size     = sizeof(AStreamSyncContext),
183     .init          = init,
184     .query_formats = query_formats,
185
186     .inputs    = (const AVFilterPad[]) {
187         { .name             = "in1",
188           .type             = AVMEDIA_TYPE_AUDIO,
189           .filter_samples   = filter_samples,
190           .min_perms        = AV_PERM_READ, },
191         { .name             = "in2",
192           .type             = AVMEDIA_TYPE_AUDIO,
193           .filter_samples   = filter_samples,
194           .min_perms        = AV_PERM_READ, },
195         { .name = NULL }
196     },
197     .outputs   = (const AVFilterPad[]) {
198         { .name             = "out1",
199           .type             = AVMEDIA_TYPE_AUDIO,
200           .config_props     = config_output,
201           .request_frame    = request_frame, },
202         { .name             = "out2",
203           .type             = AVMEDIA_TYPE_AUDIO,
204           .config_props     = config_output,
205           .request_frame    = request_frame, },
206         { .name = NULL }
207     },
208 };