mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-25 16:52:31 +00:00
Merge commit 'ac976ed91e323754e9a84509873ebdb437372797'
* commit 'ac976ed91e323754e9a84509873ebdb437372797': lavr: allocate the resampling buffer with a positive size Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
c11aa9d29a
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user