1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +00:00

Don't crash when video is stopped and played again

This commit is contained in:
Błażej Szczygieł
2016-09-28 13:39:06 +02:00
parent 73a7b91459
commit 5585bc1c38

View File

@@ -248,7 +248,7 @@ void VideoPlayer::stop() {
playback->stop(); playback->stop();
AudioServer::get_singleton()->stream_set_active(stream_rid,false); AudioServer::get_singleton()->stream_set_active(stream_rid,false);
resampler.clear(); resampler.flush();
set_process(false); set_process(false);
last_audio_time=0; last_audio_time=0;
}; };
@@ -426,5 +426,6 @@ VideoPlayer::~VideoPlayer() {
if (stream_rid.is_valid()) if (stream_rid.is_valid())
AudioServer::get_singleton()->free(stream_rid); AudioServer::get_singleton()->free(stream_rid);
resampler.clear(); //Not necessary here, but make in consistent with other "stream_player" classes
}; };