summaryrefslogtreecommitdiff
path: root/Source/Core/AudioCommon/NullSoundStream.cpp
diff options
context:
space:
mode:
authorPierre Bourdon <delroth@gmail.com>2016-06-24 10:43:46 +0200
committerPierre Bourdon <delroth@gmail.com>2016-06-24 10:43:46 +0200
commit3570c7f03a2aa90aa634f96c0af1969af610f14d (patch)
tree4252e03c0e853ba7cffe022937698c854ad0eaa9 /Source/Core/AudioCommon/NullSoundStream.cpp
parent2115e8a4a6814e32107b5205ff5c95bbd3c6e99c (diff)
Reformat all the things. Have fun with merge conflicts.
Diffstat (limited to 'Source/Core/AudioCommon/NullSoundStream.cpp')
-rw-r--r--Source/Core/AudioCommon/NullSoundStream.cpp23
1 files changed, 13 insertions, 10 deletions
diff --git a/Source/Core/AudioCommon/NullSoundStream.cpp b/Source/Core/AudioCommon/NullSoundStream.cpp
index 049ce2b269..d55c61bbc3 100644
--- a/Source/Core/AudioCommon/NullSoundStream.cpp
+++ b/Source/Core/AudioCommon/NullSoundStream.cpp
@@ -13,7 +13,7 @@ void NullSound::SoundLoop()
bool NullSound::Start()
{
- return true;
+ return true;
}
void NullSound::SetVolume(int volume)
@@ -22,19 +22,22 @@ void NullSound::SetVolume(int volume)
void NullSound::Update()
{
- // num_samples_to_render in this update - depends on SystemTimers::AUDIO_DMA_PERIOD.
- constexpr u32 stereo_16_bit_size = 4;
- constexpr u32 dma_length = 32;
- const u64 audio_dma_period = SystemTimers::GetTicksPerSecond() / (AudioInterface::GetAIDSampleRate() * stereo_16_bit_size / dma_length);
- const u64 ais_samples_per_second = 48000 * stereo_16_bit_size;
- const u64 num_samples_to_render = (audio_dma_period * ais_samples_per_second) / SystemTimers::GetTicksPerSecond();
-
- m_mixer->Mix(m_realtime_buffer.data(), (unsigned int)num_samples_to_render);
+ // num_samples_to_render in this update - depends on SystemTimers::AUDIO_DMA_PERIOD.
+ constexpr u32 stereo_16_bit_size = 4;
+ constexpr u32 dma_length = 32;
+ const u64 audio_dma_period =
+ SystemTimers::GetTicksPerSecond() /
+ (AudioInterface::GetAIDSampleRate() * stereo_16_bit_size / dma_length);
+ const u64 ais_samples_per_second = 48000 * stereo_16_bit_size;
+ const u64 num_samples_to_render =
+ (audio_dma_period * ais_samples_per_second) / SystemTimers::GetTicksPerSecond();
+
+ m_mixer->Mix(m_realtime_buffer.data(), (unsigned int)num_samples_to_render);
}
void NullSound::Clear(bool mute)
{
- m_muted = mute;
+ m_muted = mute;
}
void NullSound::Stop()