]> git.sesse.net Git - ffmpeg/blob - libavfilter/asrc_anullsrc.c
avfilter/formats: Schedule avfilter_make_format64_list() for removal
[ffmpeg] / libavfilter / asrc_anullsrc.c
1 /*
2  * Copyright 2010 S.N. Hemanth Meenakshisundaram <smeenaks ucsd edu>
3  * Copyright 2010 Stefano Sabatini <stefano.sabatini-lala poste it>
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  * null audio source
25  */
26
27 #include <inttypes.h>
28 #include <stdio.h>
29
30 #include "libavutil/channel_layout.h"
31 #include "libavutil/internal.h"
32 #include "libavutil/opt.h"
33 #include "audio.h"
34 #include "avfilter.h"
35 #include "internal.h"
36
37 typedef struct ANullContext {
38     const AVClass *class;
39     char   *channel_layout_str;
40     uint64_t channel_layout;
41     char   *sample_rate_str;
42     int     sample_rate;
43     int nb_samples;             ///< number of samples per requested frame
44     int64_t pts;
45 } ANullContext;
46
47 #define OFFSET(x) offsetof(ANullContext, x)
48 #define FLAGS AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
49
50 static const AVOption anullsrc_options[]= {
51     { "channel_layout", "set channel_layout", OFFSET(channel_layout_str), AV_OPT_TYPE_STRING, {.str = "stereo"}, 0, 0, FLAGS },
52     { "cl",             "set channel_layout", OFFSET(channel_layout_str), AV_OPT_TYPE_STRING, {.str = "stereo"}, 0, 0, FLAGS },
53     { "sample_rate",    "set sample rate",    OFFSET(sample_rate_str)   , AV_OPT_TYPE_STRING, {.str = "44100"}, 0, 0, FLAGS },
54     { "r",              "set sample rate",    OFFSET(sample_rate_str)   , AV_OPT_TYPE_STRING, {.str = "44100"}, 0, 0, FLAGS },
55     { "nb_samples",     "set the number of samples per requested frame", OFFSET(nb_samples), AV_OPT_TYPE_INT, {.i64 = 1024}, 0, INT_MAX, FLAGS },
56     { "n",              "set the number of samples per requested frame", OFFSET(nb_samples), AV_OPT_TYPE_INT, {.i64 = 1024}, 0, INT_MAX, FLAGS },
57     { NULL }
58 };
59
60 AVFILTER_DEFINE_CLASS(anullsrc);
61
62 static av_cold int init(AVFilterContext *ctx)
63 {
64     ANullContext *null = ctx->priv;
65     int ret;
66
67     if ((ret = ff_parse_sample_rate(&null->sample_rate,
68                                      null->sample_rate_str, ctx)) < 0)
69         return ret;
70
71     if ((ret = ff_parse_channel_layout(&null->channel_layout, NULL,
72                                         null->channel_layout_str, ctx)) < 0)
73         return ret;
74
75     return 0;
76 }
77
78 static int query_formats(AVFilterContext *ctx)
79 {
80     ANullContext *null = ctx->priv;
81     int64_t chlayouts[] = { null->channel_layout, -1 };
82     int sample_rates[] = { null->sample_rate, -1 };
83     int ret;
84
85     if ((ret = ff_set_common_formats         (ctx, ff_all_formats              (AVMEDIA_TYPE_AUDIO))) < 0 ||
86         (ret = ff_set_common_samplerates     (ctx, ff_make_format_list         (sample_rates      ))) < 0)
87         return ret;
88
89     return ff_set_common_channel_layouts(ctx, ff_make_format64_list(chlayouts));
90 }
91
92 static int config_props(AVFilterLink *outlink)
93 {
94     ANullContext *null = outlink->src->priv;
95     char buf[128];
96
97     av_get_channel_layout_string(buf, sizeof(buf), 0, null->channel_layout);
98     av_log(outlink->src, AV_LOG_VERBOSE,
99            "sample_rate:%d channel_layout:'%s' nb_samples:%d\n",
100            null->sample_rate, buf, null->nb_samples);
101
102     return 0;
103 }
104
105 static int request_frame(AVFilterLink *outlink)
106 {
107     int ret;
108     ANullContext *null = outlink->src->priv;
109     AVFrame *samplesref;
110
111     samplesref = ff_get_audio_buffer(outlink, null->nb_samples);
112     if (!samplesref)
113         return AVERROR(ENOMEM);
114
115     samplesref->pts = null->pts;
116
117     ret = ff_filter_frame(outlink, samplesref);
118     if (ret < 0)
119         return ret;
120
121     null->pts += null->nb_samples;
122     return ret;
123 }
124
125 static const AVFilterPad avfilter_asrc_anullsrc_outputs[] = {
126     {
127         .name          = "default",
128         .type          = AVMEDIA_TYPE_AUDIO,
129         .config_props  = config_props,
130         .request_frame = request_frame,
131     },
132     { NULL }
133 };
134
135 AVFilter ff_asrc_anullsrc = {
136     .name          = "anullsrc",
137     .description   = NULL_IF_CONFIG_SMALL("Null audio source, return empty audio frames."),
138     .init          = init,
139     .query_formats = query_formats,
140     .priv_size     = sizeof(ANullContext),
141     .inputs        = NULL,
142     .outputs       = avfilter_asrc_anullsrc_outputs,
143     .priv_class    = &anullsrc_class,
144 };