Commit ac976ed9 authored by Anton Khirnov's avatar Anton Khirnov

lavr: allocate the resampling buffer with a positive size

This fixes cases where very few input samples (fewer than needed for one
output sample) are passed to lavr at the beginning.
CC:libav-stable@libav.org
parent 13164e47
...@@ -189,7 +189,7 @@ int avresample_open(AVAudioResampleContext *avr) ...@@ -189,7 +189,7 @@ int avresample_open(AVAudioResampleContext *avr)
} }
if (avr->resample_needed) { if (avr->resample_needed) {
avr->resample_out_buffer = ff_audio_data_alloc(avr->out_channels, avr->resample_out_buffer = ff_audio_data_alloc(avr->out_channels,
0, avr->internal_sample_fmt, 1024, avr->internal_sample_fmt,
"resample_out_buffer"); "resample_out_buffer");
if (!avr->resample_out_buffer) { if (!avr->resample_out_buffer) {
ret = AVERROR(EINVAL); ret = AVERROR(EINVAL);
......
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