Fixes VideostreamGDNative crash on audio_channel=0.
Added an if case to check if the mix_callback exists before running any of the audio code. Fixes: #28644
This commit is contained in:
parent
c2251eab51
commit
f0757f31a4
|
@ -146,6 +146,7 @@ void VideoStreamPlaybackGDNative::update(float p_delta) {
|
|||
ERR_FAIL_COND(interface == NULL);
|
||||
interface->update(data_struct, p_delta);
|
||||
|
||||
if (mix_callback) {
|
||||
if (pcm_write_idx >= 0) {
|
||||
// Previous remains
|
||||
int mixed = mix_callback(mix_udata, pcm, samples_decoded);
|
||||
|
@ -165,6 +166,7 @@ void VideoStreamPlaybackGDNative::update(float p_delta) {
|
|||
samples_decoded -= pcm_write_idx;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
while (interface->get_playback_position(data_struct) < time && playing) {
|
||||
|
||||
|
|
Loading…
Reference in New Issue