]> git.sesse.net Git - ffmpeg/blob - libavfilter/asink_abuffer.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavfilter / asink_abuffer.c
1 /*
2  * Copyright (c) 2011 Stefano Sabatini
3  * Copyright (c) 2011 Mina Nagy Zaki
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /**
23  * @file
24  * audio buffer sink
25  */
26
27 #include "avfilter.h"
28 #include "asink_abuffer.h"
29
30 static void filter_samples(AVFilterLink *link, AVFilterBufferRef *samplesref)
31 {
32 }
33
34 static int init(AVFilterContext *ctx, const char *args, void *opaque)
35 {
36     if (!opaque) {
37         av_log(ctx, AV_LOG_ERROR, "Opaque field required, please pass"
38                                   " an initialized ABufferSinkContext");
39         return AVERROR(EINVAL);
40     }
41     memcpy(ctx->priv, opaque, sizeof(ABufferSinkContext));
42
43     return 0;
44 }
45
46 static int query_formats(AVFilterContext *ctx)
47 {
48     ABufferSinkContext *abuffersink = ctx->priv;
49     AVFilterFormats *formats;
50     int ret;
51
52     formats = NULL;
53     if ((ret = avfilter_add_format(&formats, abuffersink->sample_fmt)) < 0)
54         return ret;
55     avfilter_set_common_sample_formats(ctx, formats);
56
57     formats = NULL;
58     if ((ret = avfilter_add_format(&formats, abuffersink->channel_layout)) < 0)
59         return ret;
60     avfilter_set_common_channel_layouts(ctx, formats);
61
62     formats = NULL;
63     if ((ret = avfilter_add_format(&formats, abuffersink->planar)) < 0)
64         return ret;
65     avfilter_set_common_packing_formats(ctx, formats);
66
67     return 0;
68 }
69
70 int av_asink_abuffer_get_audio_buffer_ref(AVFilterContext *abuffersink,
71                                           AVFilterBufferRef **samplesref,
72                                           int av_unused flags)
73 {
74     int ret;
75     AVFilterLink * const inlink = abuffersink->inputs[0];
76
77     if ((ret = avfilter_request_frame(inlink)))
78         return ret;
79     if (!inlink->cur_buf)
80         return AVERROR(EINVAL);
81     *samplesref = inlink->cur_buf;
82     inlink->cur_buf = NULL;
83
84     return 0;
85 }
86
87 AVFilter avfilter_asink_abuffersink = {
88     .name      = "abuffersink",
89     .description = NULL_IF_CONFIG_SMALL("Buffer audio frames, and make them available to the end of the filter graph."),
90     .init      = init,
91     .priv_size = sizeof(ABufferSinkContext),
92     .query_formats = query_formats,
93
94     .inputs    = (AVFilterPad[]) {{ .name           = "default",
95                                     .type           = AVMEDIA_TYPE_AUDIO,
96                                     .filter_samples = filter_samples,
97                                     .min_perms      = AV_PERM_READ, },
98                                   { .name = NULL }},
99     .outputs   = (AVFilterPad[]) {{ .name = NULL }},
100 };
101