Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/af_extrastereo.c')
-rw-r--r--libavfilter/af_extrastereo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_extrastereo.c b/libavfilter/af_extrastereo.c
index b4f8c85c38..020d09c025 100644
--- a/libavfilter/af_extrastereo.c
+++ b/libavfilter/af_extrastereo.c
@@ -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);