From a61bc91d42945e6ccefef4867ef32d2073f8f8c7 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 9 Apr 2011 01:00:44 +0200 Subject: [PATCH] Fix ticket21, temporary audio array was too small. Signed-off-by: Michael Niedermayer --- libavcodec/resample.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/resample.c b/libavcodec/resample.c index 45fba69f45..ed2b31bd31 100644 --- a/libavcodec/resample.c +++ b/libavcodec/resample.c @@ -274,7 +274,7 @@ int audio_resample(ReSampleContext *s, short *output, short *input, int nb_sampl input = s->buffer[0]; } - lenout= 4*nb_samples * s->ratio + 16; + lenout= 2*s->output_channels*nb_samples * s->ratio + 16; if (s->sample_fmt[1] != AV_SAMPLE_FMT_S16) { output_bak = output;