提交 432017b2 编写于 作者: J jp9000

libobs: Don't render audio if context not initialized

Fixes a race where the audio subsystem could call audio render callbacks
before the source was fully initialized.
上级 3992bd24
......@@ -4595,7 +4595,7 @@ static inline void process_audio_source_tick(obs_source_t *source,
void obs_source_audio_render(obs_source_t *source, uint32_t mixers,
size_t channels, size_t sample_rate, size_t size)
{
if (!source->audio_output_buf[0][0]) {
if (!source->audio_output_buf[0][0] || !source->context.data) {
source->audio_pending = true;
return;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册