Files
ffmpeg/libavfilter/asrc_anullsrc.c
T

108 lines
3.0 KiB
C
Raw Normal View History

2010-09-25 01:56:58 +00:00
/*
* This file is part of Libav.
2010-09-25 01:56:58 +00:00
*
* Libav is free software; you can redistribute it and/or
2010-09-25 01:56:58 +00:00
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* Libav is distributed in the hope that it will be useful,
2010-09-25 01:56:58 +00:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with Libav; if not, write to the Free Software
2010-09-25 01:56:58 +00:00
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/**
* @file
* null audio source
*/
2012-08-06 16:49:32 +03:00
#include <inttypes.h>
#include <stdio.h>
2010-09-25 01:56:58 +00:00
#include "avfilter.h"
#include "internal.h"
2011-02-07 14:37:08 +01:00
#include "libavutil/audioconvert.h"
2012-08-06 16:49:32 +03:00
#include "libavutil/internal.h"
2010-09-25 01:56:58 +00:00
typedef struct {
2011-11-25 12:51:57 +00:00
uint64_t channel_layout;
2010-09-25 01:56:58 +00:00
int64_t sample_rate;
} ANullContext;
static int init(AVFilterContext *ctx, const char *args)
2010-09-25 01:56:58 +00:00
{
ANullContext *priv = ctx->priv;
char channel_layout_str[128] = "";
priv->sample_rate = 44100;
2010-11-21 20:06:22 +00:00
priv->channel_layout = AV_CH_LAYOUT_STEREO;
2010-09-25 01:56:58 +00:00
if (args)
sscanf(args, "%"PRId64":%s", &priv->sample_rate, channel_layout_str);
if (priv->sample_rate < 0) {
av_log(ctx, AV_LOG_ERROR, "Invalid negative sample rate: %"PRId64"\n", priv->sample_rate);
return AVERROR(EINVAL);
}
if (*channel_layout_str)
2010-11-21 20:06:22 +00:00
if (!(priv->channel_layout = av_get_channel_layout(channel_layout_str))
2010-09-25 01:56:58 +00:00
&& sscanf(channel_layout_str, "%"PRId64, &priv->channel_layout) != 1) {
av_log(ctx, AV_LOG_ERROR, "Invalid value '%s' for channel layout\n",
channel_layout_str);
return AVERROR(EINVAL);
}
return 0;
}
static int config_props(AVFilterLink *outlink)
{
ANullContext *priv = outlink->src->priv;
char buf[128];
int chans_nb;
outlink->sample_rate = priv->sample_rate;
outlink->channel_layout = priv->channel_layout;
2010-11-21 20:06:22 +00:00
chans_nb = av_get_channel_layout_nb_channels(priv->channel_layout);
av_get_channel_layout_string(buf, sizeof(buf), chans_nb, priv->channel_layout);
2012-06-25 06:31:38 +02:00
av_log(outlink->src, AV_LOG_VERBOSE,
2010-09-25 01:56:58 +00:00
"sample_rate:%"PRId64 " channel_layout:%"PRId64 " channel_layout_description:'%s'\n",
priv->sample_rate, priv->channel_layout, buf);
return 0;
}
static int request_frame(AVFilterLink *link)
{
return -1;
}
static const AVFilterPad avfilter_asrc_anullsrc_outputs[] = {
{
.name = "default",
.type = AVMEDIA_TYPE_AUDIO,
.config_props = config_props,
.request_frame = request_frame,
},
{ NULL }
};
2010-09-25 01:56:58 +00:00
AVFilter avfilter_asrc_anullsrc = {
.name = "anullsrc",
.description = NULL_IF_CONFIG_SMALL("Null audio source, never return audio frames."),
.init = init,
.priv_size = sizeof(ANullContext),
.inputs = NULL,
2010-09-25 01:56:58 +00:00
.outputs = avfilter_asrc_anullsrc_outputs,
2010-09-25 01:56:58 +00:00
};