diff options
| author | Matthew Parlane <parlane@gmail.com> | 2015-05-24 19:54:21 +1000 |
|---|---|---|
| committer | Matthew Parlane <parlane@gmail.com> | 2015-05-24 19:54:21 +1000 |
| commit | 5213d85118ea11f447f17528e523e2860a602c45 (patch) | |
| tree | a5b86f7b0312d1bc9306a6299503df75c91de0fa /Source/Core/AudioCommon/PulseAudioStream.cpp | |
| parent | a6e5fd1e27385bb68844584927d45ec32b99eb55 (diff) | |
| parent | 4695233c985143124000c45a50974bddf690c1d0 (diff) | |
Merge pull request #2445 from lioncash/mixer
AudioCommon: Construct the mixer inside the SoundStream base class.
Diffstat (limited to 'Source/Core/AudioCommon/PulseAudioStream.cpp')
| -rw-r--r-- | Source/Core/AudioCommon/PulseAudioStream.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/Core/AudioCommon/PulseAudioStream.cpp b/Source/Core/AudioCommon/PulseAudioStream.cpp index 8f36286403..aae3f68aae 100644 --- a/Source/Core/AudioCommon/PulseAudioStream.cpp +++ b/Source/Core/AudioCommon/PulseAudioStream.cpp @@ -13,9 +13,8 @@ namespace const size_t BUFFER_SAMPLES = 512; // ~10 ms - needs to be at least 240 for surround } -PulseAudio::PulseAudio(CMixer *mixer) - : SoundStream(mixer) - , m_thread() +PulseAudio::PulseAudio() + : m_thread() , m_run_thread() { } |
