diff options
| author | bunnei <bunneidev@gmail.com> | 2020-05-13 22:46:41 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-13 22:46:41 -0400 |
| commit | 0e2ded049d6d5a39d18cf904e54c053355482e31 (patch) | |
| tree | 0cc136ecc5d107308fb47907feb235af51394f68 /src/audio_core/common.h | |
| parent | 670a7f51e8f3134fb246a471f0c9833904a6234e (diff) | |
| parent | 16c0373adc5bd76db97d5d2231e80463dda242dd (diff) | |
Merge pull request #3757 from ogniK5377/better-voice-mixing
audio_renderer: Better voice mixing and 6 channel downmixing
Diffstat (limited to 'src/audio_core/common.h')
| -rw-r--r-- | src/audio_core/common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/audio_core/common.h b/src/audio_core/common.h index 98478b66b..7bb145c53 100644 --- a/src/audio_core/common.h +++ b/src/audio_core/common.h @@ -14,6 +14,7 @@ constexpr ResultCode ERR_INVALID_PARAMETERS{ErrorModule::Audio, 41}; } constexpr u32_le CURRENT_PROCESS_REVISION = Common::MakeMagic('R', 'E', 'V', '8'); +constexpr std::size_t MAX_MIX_BUFFERS = 24; static constexpr u32 VersionFromRevision(u32_le rev) { // "REV7" -> 7 |
