mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
resample: Fix array size
Found-by: Jim Radford Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
1b9ca38d9d
commit
3e7db0a9ee
@ -325,9 +325,9 @@ int audio_resample(ReSampleContext *s, short *output, short *input, int nb_sampl
|
|||||||
if (s->sample_fmt[1] != AV_SAMPLE_FMT_S16) {
|
if (s->sample_fmt[1] != AV_SAMPLE_FMT_S16) {
|
||||||
output_bak = output;
|
output_bak = output;
|
||||||
|
|
||||||
if (!s->buffer_size[1] || s->buffer_size[1] < lenout) {
|
if (!s->buffer_size[1] || s->buffer_size[1] < 2*lenout) {
|
||||||
av_free(s->buffer[1]);
|
av_free(s->buffer[1]);
|
||||||
s->buffer_size[1] = lenout;
|
s->buffer_size[1] = 2*lenout;
|
||||||
s->buffer[1] = av_malloc(s->buffer_size[1]);
|
s->buffer[1] = av_malloc(s->buffer_size[1]);
|
||||||
if (!s->buffer[1]) {
|
if (!s->buffer[1]) {
|
||||||
av_log(s->resample_context, AV_LOG_ERROR, "Could not allocate buffer\n");
|
av_log(s->resample_context, AV_LOG_ERROR, "Could not allocate buffer\n");
|
||||||
|
Loading…
Reference in New Issue
Block a user