]> git.sesse.net Git - ffmpeg/blob - libavfilter/af_asplit.c
aresample: add code to flush the internal swr buffer.
[ffmpeg] / libavfilter / af_asplit.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  * audio splitter
24  */
25
26 #include "avfilter.h"
27 #include "audio.h"
28
29 static void filter_samples(AVFilterLink *inlink, AVFilterBufferRef *insamples)
30 {
31     ff_filter_samples(inlink->dst->outputs[0],
32                             avfilter_ref_buffer(insamples, ~AV_PERM_WRITE));
33     ff_filter_samples(inlink->dst->outputs[1],
34                             avfilter_ref_buffer(insamples, ~AV_PERM_WRITE));
35     avfilter_unref_buffer(insamples);
36 }
37
38 AVFilter avfilter_af_asplit = {
39     .name        = "asplit",
40     .description = NULL_IF_CONFIG_SMALL("Pass on the audio input to two outputs."),
41
42     .inputs = (const AVFilterPad[]) {
43         { .name             = "default",
44           .type             = AVMEDIA_TYPE_AUDIO,
45           .get_audio_buffer = ff_null_get_audio_buffer,
46           .filter_samples   = filter_samples, },
47         { .name = NULL}
48     },
49     .outputs = (const AVFilterPad[]) {
50         { .name             = "output1",
51           .type             = AVMEDIA_TYPE_AUDIO, },
52         { .name             = "output2",
53           .type             = AVMEDIA_TYPE_AUDIO, },
54         { .name = NULL}
55     },
56 };