lavfi: fix resample with differing formats

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2012-05-16 03:53:29 +02:00
parent 1f3f7bd444
commit 75492cce8e
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ static int config_output(AVFilterLink *outlink)
//TODO: make the resampling parameters (filter size, phrase shift, linear, cutoff) configurable
aresample->swr = swr_alloc_set_opts(aresample->swr,
inlink->channel_layout, inlink->format, aresample->out_rate,
outlink->channel_layout, outlink->format, outlink->sample_rate,
inlink->channel_layout, inlink->format, inlink->sample_rate,
0, ctx);
if (!aresample->swr)