diff options
| author | 2020-11-28 07:58:05 -0500 | |
|---|---|---|
| committer | 2020-11-28 07:58:05 -0500 | |
| commit | e0d30fc920330f3c46d1533e9ca3f28656fa7f12 (patch) | |
| tree | 38f748e3b97b56ccd5196c41f661898f8999f137 /src/audio_core/audio_renderer.cpp | |
| parent | Merge pull request #5015 from comex/xx-sign-compare (diff) | |
| parent | audio_core: Remove temp_mix_buffer (diff) | |
| download | yuzu-e0d30fc920330f3c46d1533e9ca3f28656fa7f12.tar.gz yuzu-e0d30fc920330f3c46d1533e9ca3f28656fa7f12.tar.xz yuzu-e0d30fc920330f3c46d1533e9ca3f28656fa7f12.zip | |
Merge pull request #5031 from ogniK5377/temp_mix_buffer-remove
audio_core: Remove temp_mix_buffer
Diffstat (limited to 'src/audio_core/audio_renderer.cpp')
| -rw-r--r-- | src/audio_core/audio_renderer.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/audio_core/audio_renderer.cpp b/src/audio_core/audio_renderer.cpp index e1ded84e0..5f532ed31 100644 --- a/src/audio_core/audio_renderer.cpp +++ b/src/audio_core/audio_renderer.cpp | |||
| @@ -79,8 +79,7 @@ AudioRenderer::AudioRenderer(Core::Timing::CoreTiming& core_timing, Core::Memory | |||
| 79 | sink_context(params.sink_count), splitter_context(), | 79 | sink_context(params.sink_count), splitter_context(), |
| 80 | voices(params.voice_count), memory{memory_}, | 80 | voices(params.voice_count), memory{memory_}, |
| 81 | command_generator(worker_params, voice_context, mix_context, splitter_context, effect_context, | 81 | command_generator(worker_params, voice_context, mix_context, splitter_context, effect_context, |
| 82 | memory), | 82 | memory) { |
| 83 | temp_mix_buffer(AudioCommon::TOTAL_TEMP_MIX_SIZE) { | ||
| 84 | behavior_info.SetUserRevision(params.revision); | 83 | behavior_info.SetUserRevision(params.revision); |
| 85 | splitter_context.Initialize(behavior_info, params.splitter_count, | 84 | splitter_context.Initialize(behavior_info, params.splitter_count, |
| 86 | params.num_splitter_send_channels); | 85 | params.num_splitter_send_channels); |