Reset audio input during render device change to keep synchronisation.

This commit is contained in:
Saracen 2018-07-27 05:43:22 +01:00
parent aca6e291d6
commit 0a877b58b8

View file

@ -320,6 +320,9 @@ Error AudioDriverWASAPI::init_render_device(bool reinit) {
// Sample rate is independent of channels (ref: https://stackoverflow.com/questions/11048825/audio-sample-frequency-rely-on-channels)
samples_in.resize(buffer_frames * channels);
audio_input_position = 0;
audio_input_size = 0;
if (OS::get_singleton()->is_stdout_verbose()) {
print_line("WASAPI: detected " + itos(channels) + " channels");
print_line("WASAPI: audio buffer frames: " + itos(buffer_frames) + " calculated latency: " + itos(buffer_frames * 1000 / mix_rate) + "ms");