diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-04-09 01:00:44 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-04-09 01:00:44 +0200 |
commit | a61bc91d42945e6ccefef4867ef32d2073f8f8c7 (patch) | |
tree | 0936f217c0cc7918d826b59ba670b9943fa5148d | |
parent | 9d4cb45dbea845da477f1eeba976a146ab66d9da (diff) | |
download | ffmpeg-a61bc91d42945e6ccefef4867ef32d2073f8f8c7.tar.gz |
Fix ticket21, temporary audio array was too small.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/resample.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |