fix can't set AudioStreamPlayer stream to null
(cherry picked from commit 2bdac0a5d9
)
This commit is contained in:
parent
11cbf850a4
commit
4897227d04
|
@ -241,7 +241,6 @@ void AudioStreamPlayer2D::_notification(int p_what) {
|
|||
|
||||
void AudioStreamPlayer2D::set_stream(Ref<AudioStream> p_stream) {
|
||||
|
||||
ERR_FAIL_COND(!p_stream.is_valid());
|
||||
AudioServer::get_singleton()->lock();
|
||||
|
||||
mix_buffer.resize(AudioServer::get_singleton()->thread_get_mix_buffer_size());
|
||||
|
@ -253,14 +252,15 @@ void AudioStreamPlayer2D::set_stream(Ref<AudioStream> p_stream) {
|
|||
setseek = -1;
|
||||
}
|
||||
|
||||
stream = p_stream;
|
||||
stream_playback = p_stream->instance_playback();
|
||||
if (p_stream.is_valid()) {
|
||||
stream = p_stream;
|
||||
stream_playback = p_stream->instance_playback();
|
||||
}
|
||||
|
||||
AudioServer::get_singleton()->unlock();
|
||||
|
||||
if (stream_playback.is_null()) {
|
||||
if (p_stream.is_valid() && stream_playback.is_null()) {
|
||||
stream.unref();
|
||||
ERR_FAIL_COND(stream_playback.is_null());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -551,7 +551,6 @@ void AudioStreamPlayer3D::_notification(int p_what) {
|
|||
|
||||
void AudioStreamPlayer3D::set_stream(Ref<AudioStream> p_stream) {
|
||||
|
||||
ERR_FAIL_COND(!p_stream.is_valid());
|
||||
AudioServer::get_singleton()->lock();
|
||||
|
||||
mix_buffer.resize(AudioServer::get_singleton()->thread_get_mix_buffer_size());
|
||||
|
@ -563,14 +562,15 @@ void AudioStreamPlayer3D::set_stream(Ref<AudioStream> p_stream) {
|
|||
setseek = -1;
|
||||
}
|
||||
|
||||
stream = p_stream;
|
||||
stream_playback = p_stream->instance_playback();
|
||||
if (p_stream.is_valid()) {
|
||||
stream = p_stream;
|
||||
stream_playback = p_stream->instance_playback();
|
||||
}
|
||||
|
||||
AudioServer::get_singleton()->unlock();
|
||||
|
||||
if (stream_playback.is_null()) {
|
||||
if (p_stream.is_valid() && stream_playback.is_null()) {
|
||||
stream.unref();
|
||||
ERR_FAIL_COND(stream_playback.is_null());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -160,7 +160,6 @@ void AudioStreamPlayer::set_stream(Ref<AudioStream> p_stream) {
|
|||
|
||||
if (p_stream.is_valid() && stream_playback.is_null()) {
|
||||
stream.unref();
|
||||
ERR_FAIL_COND(stream_playback.is_null());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue