2016-09-03 22:25:43 +00:00
|
|
|
/*************************************************************************/
|
2016-10-17 15:40:45 +00:00
|
|
|
/* audio_driver_xaudio2.cpp */
|
2016-09-03 22:25:43 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* http://www.godotengine.org */
|
|
|
|
/*************************************************************************/
|
2017-01-01 21:01:57 +00:00
|
|
|
/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
|
2017-04-07 22:11:42 +00:00
|
|
|
/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
|
2016-09-03 22:25:43 +00:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
2016-10-17 15:40:45 +00:00
|
|
|
#include "audio_driver_xaudio2.h"
|
2016-09-03 22:25:43 +00:00
|
|
|
|
2017-02-21 03:05:15 +00:00
|
|
|
#include "global_config.h"
|
2016-09-03 22:25:43 +00:00
|
|
|
#include "os/os.h"
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
const char *AudioDriverXAudio2::get_name() const {
|
2016-10-17 15:40:45 +00:00
|
|
|
return "XAudio2";
|
2016-09-03 22:25:43 +00:00
|
|
|
}
|
|
|
|
|
2016-10-17 15:40:45 +00:00
|
|
|
Error AudioDriverXAudio2::init() {
|
2016-09-03 22:25:43 +00:00
|
|
|
|
|
|
|
active = false;
|
|
|
|
thread_exited = false;
|
|
|
|
exit_thread = false;
|
|
|
|
pcm_open = false;
|
|
|
|
samples_in = NULL;
|
|
|
|
|
|
|
|
mix_rate = 48000;
|
2017-01-16 18:19:45 +00:00
|
|
|
// FIXME: speaker_mode seems unused in the Xaudio2 driver so far
|
|
|
|
speaker_mode = SPEAKER_MODE_STEREO;
|
2016-09-03 22:25:43 +00:00
|
|
|
channels = 2;
|
|
|
|
|
|
|
|
int latency = GLOBAL_DEF("audio/output_latency", 25);
|
|
|
|
buffer_size = nearest_power_of_2(latency * mix_rate / 1000);
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
samples_in = memnew_arr(int32_t, buffer_size * channels);
|
2016-09-03 22:25:43 +00:00
|
|
|
for (int i = 0; i < AUDIO_BUFFERS; i++) {
|
2017-03-05 15:44:50 +00:00
|
|
|
samples_out[i] = memnew_arr(int16_t, buffer_size * channels);
|
2016-09-03 22:25:43 +00:00
|
|
|
xaudio_buffer[i].AudioBytes = buffer_size * channels * sizeof(int16_t);
|
2017-03-05 15:44:50 +00:00
|
|
|
xaudio_buffer[i].pAudioData = (const BYTE *)(samples_out[i]);
|
2016-09-03 22:25:43 +00:00
|
|
|
xaudio_buffer[i].Flags = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT hr;
|
|
|
|
hr = XAudio2Create(&xaudio, 0, XAUDIO2_DEFAULT_PROCESSOR);
|
|
|
|
if (hr != S_OK) {
|
|
|
|
ERR_EXPLAIN("Error creating XAudio2 engine.");
|
|
|
|
ERR_FAIL_V(ERR_UNAVAILABLE);
|
|
|
|
}
|
|
|
|
hr = xaudio->CreateMasteringVoice(&mastering_voice);
|
|
|
|
if (hr != S_OK) {
|
|
|
|
ERR_EXPLAIN("Error creating XAudio2 mastering voice.");
|
|
|
|
ERR_FAIL_V(ERR_UNAVAILABLE);
|
|
|
|
}
|
|
|
|
|
|
|
|
wave_format.nChannels = channels;
|
|
|
|
wave_format.cbSize = 0;
|
|
|
|
wave_format.nSamplesPerSec = mix_rate;
|
|
|
|
wave_format.wFormatTag = WAVE_FORMAT_PCM;
|
|
|
|
wave_format.wBitsPerSample = 16;
|
|
|
|
wave_format.nBlockAlign = channels * wave_format.wBitsPerSample >> 3;
|
|
|
|
wave_format.nAvgBytesPerSec = mix_rate * wave_format.nBlockAlign;
|
|
|
|
|
2016-10-17 16:42:05 +00:00
|
|
|
hr = xaudio->CreateSourceVoice(&source_voice, &wave_format, 0, XAUDIO2_MAX_FREQ_RATIO, &voice_callback);
|
2016-09-03 22:25:43 +00:00
|
|
|
if (hr != S_OK) {
|
|
|
|
ERR_EXPLAIN("Error creating XAudio2 source voice. " + itos(hr));
|
|
|
|
ERR_FAIL_V(ERR_UNAVAILABLE);
|
|
|
|
}
|
|
|
|
|
|
|
|
mutex = Mutex::create();
|
2016-10-17 15:40:45 +00:00
|
|
|
thread = Thread::create(AudioDriverXAudio2::thread_func, this);
|
2016-09-03 22:25:43 +00:00
|
|
|
|
|
|
|
return OK;
|
|
|
|
};
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void AudioDriverXAudio2::thread_func(void *p_udata) {
|
2016-09-03 22:25:43 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
AudioDriverXAudio2 *ad = (AudioDriverXAudio2 *)p_udata;
|
2016-09-03 22:25:43 +00:00
|
|
|
|
|
|
|
uint64_t usdelay = (ad->buffer_size / float(ad->mix_rate)) * 1000000;
|
|
|
|
|
|
|
|
while (!ad->exit_thread) {
|
|
|
|
|
|
|
|
if (!ad->active) {
|
|
|
|
|
|
|
|
for (int i = 0; i < AUDIO_BUFFERS; i++) {
|
|
|
|
ad->xaudio_buffer[i].Flags = XAUDIO2_END_OF_STREAM;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
ad->lock();
|
|
|
|
|
|
|
|
ad->audio_server_process(ad->buffer_size, ad->samples_in);
|
|
|
|
|
|
|
|
ad->unlock();
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
for (unsigned int i = 0; i < ad->buffer_size * ad->channels; i++) {
|
2016-09-03 22:25:43 +00:00
|
|
|
|
|
|
|
ad->samples_out[ad->current_buffer][i] = ad->samples_in[i] >> 16;
|
|
|
|
}
|
|
|
|
|
|
|
|
ad->xaudio_buffer[ad->current_buffer].Flags = 0;
|
|
|
|
ad->xaudio_buffer[ad->current_buffer].AudioBytes = ad->buffer_size * ad->channels * sizeof(int16_t);
|
2017-03-05 15:44:50 +00:00
|
|
|
ad->xaudio_buffer[ad->current_buffer].pAudioData = (const BYTE *)(ad->samples_out[ad->current_buffer]);
|
2016-09-03 22:25:43 +00:00
|
|
|
ad->xaudio_buffer[ad->current_buffer].PlayBegin = 0;
|
|
|
|
ad->source_voice->SubmitSourceBuffer(&(ad->xaudio_buffer[ad->current_buffer]));
|
|
|
|
|
|
|
|
ad->current_buffer = (ad->current_buffer + 1) % AUDIO_BUFFERS;
|
|
|
|
|
|
|
|
XAUDIO2_VOICE_STATE state;
|
2017-03-05 15:44:50 +00:00
|
|
|
while (ad->source_voice->GetState(&state), state.BuffersQueued > AUDIO_BUFFERS - 1) {
|
2016-10-17 16:42:05 +00:00
|
|
|
WaitForSingleObject(ad->voice_callback.buffer_end_event, INFINITE);
|
2016-09-03 22:25:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
ad->thread_exited = true;
|
|
|
|
};
|
|
|
|
|
2016-10-17 15:40:45 +00:00
|
|
|
void AudioDriverXAudio2::start() {
|
2016-09-03 22:25:43 +00:00
|
|
|
|
|
|
|
active = true;
|
|
|
|
HRESULT hr = source_voice->Start(0);
|
|
|
|
if (hr != S_OK) {
|
|
|
|
ERR_EXPLAIN("XAudio2 start error " + itos(hr));
|
|
|
|
ERR_FAIL();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-10-17 15:40:45 +00:00
|
|
|
int AudioDriverXAudio2::get_mix_rate() const {
|
2016-09-03 22:25:43 +00:00
|
|
|
|
|
|
|
return mix_rate;
|
|
|
|
};
|
|
|
|
|
2017-01-16 18:19:45 +00:00
|
|
|
AudioDriver::SpeakerMode AudioDriverXAudio2::get_speaker_mode() const {
|
2016-09-03 22:25:43 +00:00
|
|
|
|
2017-01-16 18:19:45 +00:00
|
|
|
return speaker_mode;
|
2016-09-03 22:25:43 +00:00
|
|
|
};
|
|
|
|
|
2016-10-17 15:40:45 +00:00
|
|
|
float AudioDriverXAudio2::get_latency() {
|
2016-09-03 22:25:43 +00:00
|
|
|
|
|
|
|
XAUDIO2_PERFORMANCE_DATA perf_data;
|
|
|
|
xaudio->GetPerformanceData(&perf_data);
|
|
|
|
if (perf_data.CurrentLatencyInSamples) {
|
|
|
|
return (float)(perf_data.CurrentLatencyInSamples / ((float)mix_rate));
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-17 15:40:45 +00:00
|
|
|
void AudioDriverXAudio2::lock() {
|
2016-09-03 22:25:43 +00:00
|
|
|
|
|
|
|
if (!thread || !mutex)
|
|
|
|
return;
|
|
|
|
mutex->lock();
|
|
|
|
};
|
2016-10-17 15:40:45 +00:00
|
|
|
void AudioDriverXAudio2::unlock() {
|
2016-09-03 22:25:43 +00:00
|
|
|
|
|
|
|
if (!thread || !mutex)
|
|
|
|
return;
|
|
|
|
mutex->unlock();
|
|
|
|
};
|
|
|
|
|
2016-10-17 15:40:45 +00:00
|
|
|
void AudioDriverXAudio2::finish() {
|
2016-09-03 22:25:43 +00:00
|
|
|
|
|
|
|
if (!thread)
|
|
|
|
return;
|
|
|
|
|
|
|
|
exit_thread = true;
|
|
|
|
Thread::wait_to_finish(thread);
|
|
|
|
|
|
|
|
if (source_voice) {
|
|
|
|
source_voice->Stop(0);
|
2016-10-17 16:42:05 +00:00
|
|
|
source_voice->DestroyVoice();
|
2016-09-03 22:25:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (samples_in) {
|
|
|
|
memdelete_arr(samples_in);
|
|
|
|
};
|
|
|
|
if (samples_out[0]) {
|
|
|
|
for (int i = 0; i < AUDIO_BUFFERS; i++) {
|
|
|
|
memdelete_arr(samples_out[i]);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-10-17 16:42:05 +00:00
|
|
|
mastering_voice->DestroyVoice();
|
2016-09-03 22:25:43 +00:00
|
|
|
|
|
|
|
memdelete(thread);
|
|
|
|
if (mutex)
|
|
|
|
memdelete(mutex);
|
|
|
|
thread = NULL;
|
|
|
|
};
|
|
|
|
|
2016-10-17 15:40:45 +00:00
|
|
|
AudioDriverXAudio2::AudioDriverXAudio2() {
|
2016-09-03 22:25:43 +00:00
|
|
|
|
|
|
|
mutex = NULL;
|
|
|
|
thread = NULL;
|
|
|
|
wave_format = { 0 };
|
|
|
|
for (int i = 0; i < AUDIO_BUFFERS; i++) {
|
|
|
|
xaudio_buffer[i] = { 0 };
|
|
|
|
samples_out[i] = 0;
|
|
|
|
}
|
|
|
|
current_buffer = 0;
|
|
|
|
};
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
AudioDriverXAudio2::~AudioDriverXAudio2(){
|
2016-09-03 22:25:43 +00:00
|
|
|
|
|
|
|
};
|