diff options
| author | 2020-04-22 13:03:58 +1000 | |
|---|---|---|
| committer | 2020-05-11 12:56:15 -0400 | |
| commit | 9de860a419853bbaf913c07b1aae239c91c56d9e (patch) | |
| tree | 4de5b795d79a751d258e1b07c5c054cae7bc1f3d /src/audio_core/common.h | |
| parent | Merge pull request #3896 from jroweboy/remove-clang-format-check-from-patreon (diff) | |
| download | yuzu-9de860a419853bbaf913c07b1aae239c91c56d9e.tar.gz yuzu-9de860a419853bbaf913c07b1aae239c91c56d9e.tar.xz yuzu-9de860a419853bbaf913c07b1aae239c91c56d9e.zip | |
audio_renderer: Better voice mixing and 6 channel downmixing
Supersedes #3738 and #3321
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}; | |||
| 14 | } | 14 | } |
| 15 | 15 | ||
| 16 | constexpr u32_le CURRENT_PROCESS_REVISION = Common::MakeMagic('R', 'E', 'V', '8'); | 16 | constexpr u32_le CURRENT_PROCESS_REVISION = Common::MakeMagic('R', 'E', 'V', '8'); |
| 17 | constexpr std::size_t MAX_MIX_BUFFERS = 24; | ||
| 17 | 18 | ||
| 18 | static constexpr u32 VersionFromRevision(u32_le rev) { | 19 | static constexpr u32 VersionFromRevision(u32_le rev) { |
| 19 | // "REV7" -> 7 | 20 | // "REV7" -> 7 |