Commit d1c8368e authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/af_extrastereo: Fix shadowed variable

Fixes CID1325675
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent e34ba5ec
......@@ -71,7 +71,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
if (av_frame_is_writable(in)) {
out = in;
} else {
AVFrame *out = ff_get_audio_buffer(inlink, in->nb_samples);
out = ff_get_audio_buffer(inlink, in->nb_samples);
if (!out) {
av_frame_free(&in);
return AVERROR(ENOMEM);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment