mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
c79eddaff1
This commit also drops the planar parameter; you now need to use the 'p' suffix in order to request a planar sample format.
178 lines
6.5 KiB
C
178 lines
6.5 KiB
C
/*
|
|
* Copyright (c) 2010 S.N. Hemanth Meenakshisundaram <smeenaks@ucsd.edu>
|
|
* Copyright (c) 2011 Stefano Sabatini
|
|
* Copyright (c) 2011 Mina Nagy Zaki
|
|
*
|
|
* This file is part of FFmpeg.
|
|
*
|
|
* FFmpeg is free software; you can redistribute it and/or
|
|
* 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.
|
|
*
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
|
* 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 FFmpeg; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
* sample format and channel layout conversion audio filter
|
|
*/
|
|
|
|
#include "libavutil/avstring.h"
|
|
#include "libswresample/swresample.h"
|
|
#include "avfilter.h"
|
|
#include "internal.h"
|
|
|
|
typedef struct {
|
|
enum AVSampleFormat out_sample_fmt;
|
|
int64_t out_chlayout;
|
|
struct SwrContext *swr;
|
|
} AConvertContext;
|
|
|
|
static av_cold int init(AVFilterContext *ctx, const char *args0, void *opaque)
|
|
{
|
|
AConvertContext *aconvert = ctx->priv;
|
|
char *arg, *ptr = NULL;
|
|
int ret = 0;
|
|
char *args = av_strdup(args0);
|
|
|
|
aconvert->out_sample_fmt = AV_SAMPLE_FMT_NONE;
|
|
aconvert->out_chlayout = 0;
|
|
|
|
if ((arg = av_strtok(args, ":", &ptr)) && strcmp(arg, "auto")) {
|
|
if ((ret = ff_parse_sample_format(&aconvert->out_sample_fmt, arg, ctx)) < 0)
|
|
goto end;
|
|
}
|
|
if ((arg = av_strtok(NULL, ":", &ptr)) && strcmp(arg, "auto")) {
|
|
if ((ret = ff_parse_channel_layout(&aconvert->out_chlayout, arg, ctx)) < 0)
|
|
goto end;
|
|
}
|
|
|
|
end:
|
|
av_freep(&args);
|
|
return ret;
|
|
}
|
|
|
|
static av_cold void uninit(AVFilterContext *ctx)
|
|
{
|
|
AConvertContext *aconvert = ctx->priv;
|
|
swr_free(&aconvert->swr);
|
|
}
|
|
|
|
static int query_formats(AVFilterContext *ctx)
|
|
{
|
|
AVFilterFormats *formats = NULL;
|
|
AConvertContext *aconvert = ctx->priv;
|
|
AVFilterLink *inlink = ctx->inputs[0];
|
|
AVFilterLink *outlink = ctx->outputs[0];
|
|
int out_packing = av_sample_fmt_is_planar(aconvert->out_sample_fmt);
|
|
|
|
avfilter_formats_ref(avfilter_make_all_formats(AVMEDIA_TYPE_AUDIO),
|
|
&inlink->out_formats);
|
|
if (aconvert->out_sample_fmt != AV_SAMPLE_FMT_NONE) {
|
|
formats = NULL;
|
|
avfilter_add_format(&formats, aconvert->out_sample_fmt);
|
|
avfilter_formats_ref(formats, &outlink->in_formats);
|
|
} else
|
|
avfilter_formats_ref(avfilter_make_all_formats(AVMEDIA_TYPE_AUDIO),
|
|
&outlink->in_formats);
|
|
|
|
avfilter_formats_ref(avfilter_make_all_channel_layouts(),
|
|
&inlink->out_chlayouts);
|
|
if (aconvert->out_chlayout != 0) {
|
|
formats = NULL;
|
|
avfilter_add_format(&formats, aconvert->out_chlayout);
|
|
avfilter_formats_ref(formats, &outlink->in_chlayouts);
|
|
} else
|
|
avfilter_formats_ref(avfilter_make_all_channel_layouts(),
|
|
&outlink->in_chlayouts);
|
|
|
|
avfilter_formats_ref(avfilter_make_all_packing_formats(),
|
|
&inlink->out_packing);
|
|
formats = NULL;
|
|
avfilter_add_format(&formats, out_packing);
|
|
avfilter_formats_ref(formats, &outlink->in_packing);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int config_output(AVFilterLink *outlink)
|
|
{
|
|
int ret;
|
|
AVFilterContext *ctx = outlink->src;
|
|
AVFilterLink *inlink = ctx->inputs[0];
|
|
AConvertContext *aconvert = ctx->priv;
|
|
char buf1[64], buf2[64];
|
|
|
|
/* if not specified in args, use the format and layout of the output */
|
|
if (aconvert->out_sample_fmt == AV_SAMPLE_FMT_NONE)
|
|
aconvert->out_sample_fmt = outlink->format;
|
|
if (aconvert->out_chlayout == 0)
|
|
aconvert->out_chlayout = outlink->channel_layout;
|
|
|
|
aconvert->swr = swr_alloc_set_opts(aconvert->swr,
|
|
aconvert->out_chlayout, aconvert->out_sample_fmt, inlink->sample_rate,
|
|
inlink->channel_layout, inlink->format, inlink->sample_rate,
|
|
0, ctx);
|
|
if (!aconvert->swr)
|
|
return AVERROR(ENOMEM);
|
|
ret = swr_init(aconvert->swr);
|
|
if (ret < 0)
|
|
return ret;
|
|
|
|
av_get_channel_layout_string(buf1, sizeof(buf1),
|
|
-1, inlink ->channel_layout);
|
|
av_get_channel_layout_string(buf2, sizeof(buf2),
|
|
-1, outlink->channel_layout);
|
|
av_log(ctx, AV_LOG_INFO,
|
|
"fmt:%s cl:%s planar:%i -> fmt:%s cl:%s planar:%i\n",
|
|
av_get_sample_fmt_name(inlink ->format), buf1, inlink ->planar,
|
|
av_get_sample_fmt_name(outlink->format), buf2, outlink->planar);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void filter_samples(AVFilterLink *inlink, AVFilterBufferRef *insamplesref)
|
|
{
|
|
AConvertContext *aconvert = inlink->dst->priv;
|
|
const int n = insamplesref->audio->nb_samples;
|
|
AVFilterLink *const outlink = inlink->dst->outputs[0];
|
|
AVFilterBufferRef *outsamplesref = avfilter_get_audio_buffer(outlink, AV_PERM_WRITE, n);
|
|
|
|
swr_convert(aconvert->swr, outsamplesref->data, n,
|
|
(void *)insamplesref->data, n);
|
|
|
|
avfilter_copy_buffer_ref_props(outsamplesref, insamplesref);
|
|
outsamplesref->audio->channel_layout = outlink->channel_layout;
|
|
outsamplesref->audio->planar = outlink->planar;
|
|
|
|
avfilter_filter_samples(outlink, outsamplesref);
|
|
avfilter_unref_buffer(insamplesref);
|
|
}
|
|
|
|
AVFilter avfilter_af_aconvert = {
|
|
.name = "aconvert",
|
|
.description = NULL_IF_CONFIG_SMALL("Convert the input audio to sample_fmt:channel_layout:packed_fmt."),
|
|
.priv_size = sizeof(AConvertContext),
|
|
.init = init,
|
|
.uninit = uninit,
|
|
.query_formats = query_formats,
|
|
|
|
.inputs = (const AVFilterPad[]) {{ .name = "default",
|
|
.type = AVMEDIA_TYPE_AUDIO,
|
|
.filter_samples = filter_samples,
|
|
.min_perms = AV_PERM_READ, },
|
|
{ .name = NULL}},
|
|
.outputs = (const AVFilterPad[]) {{ .name = "default",
|
|
.type = AVMEDIA_TYPE_AUDIO,
|
|
.config_props = config_output, },
|
|
{ .name = NULL}},
|
|
};
|