mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-25 04:09:57 +00:00
lavr: do not try to copy to uninitialized output audio data.
This would happen at least when lavr is used as a fifo with no conversion.
This commit is contained in:
parent
0982b0a431
commit
9684341346
@ -375,7 +375,8 @@ int avresample_convert(AVAudioResampleContext *avr, void **output,
|
||||
}
|
||||
}
|
||||
|
||||
return handle_buffered_output(avr, &output_buffer, current_buffer);
|
||||
return handle_buffered_output(avr, output ? &output_buffer : NULL,
|
||||
current_buffer);
|
||||
}
|
||||
|
||||
int avresample_available(AVAudioResampleContext *avr)
|
||||
|
Loading…
Reference in New Issue
Block a user