diff options
| author | 2020-08-17 01:23:55 +1000 | |
|---|---|---|
| committer | 2020-08-17 01:23:55 +1000 | |
| commit | 80ac1331b545d993aa7c205dc24f8b20a4d6d44e (patch) | |
| tree | f0b1138935e239ff7c5766fc26bc259b375ae712 /src/audio_core/common.h | |
| parent | Disable biquad filter (diff) | |
| download | yuzu-80ac1331b545d993aa7c205dc24f8b20a4d6d44e.tar.gz yuzu-80ac1331b545d993aa7c205dc24f8b20a4d6d44e.tar.xz yuzu-80ac1331b545d993aa7c205dc24f8b20a4d6d44e.zip | |
Preliminary effects
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 0731d3eb3..72ebce221 100644 --- a/src/audio_core/common.h +++ b/src/audio_core/common.h | |||
| @@ -26,6 +26,7 @@ constexpr s32 NO_SPLITTER = -1; | |||
| 26 | constexpr s32 NO_MIX = 0x7fffffff; | 26 | constexpr s32 NO_MIX = 0x7fffffff; |
| 27 | constexpr s32 NO_FINAL_MIX = std::numeric_limits<s32>::min(); | 27 | constexpr s32 NO_FINAL_MIX = std::numeric_limits<s32>::min(); |
| 28 | constexpr s32 FINAL_MIX = 0; | 28 | constexpr s32 FINAL_MIX = 0; |
| 29 | constexpr s32 NO_EFFECT_ORDER = -1; | ||
| 29 | constexpr std::size_t TEMP_MIX_BASE_SIZE = 0x3f00; // TODO(ogniK): Work out this constant | 30 | constexpr std::size_t TEMP_MIX_BASE_SIZE = 0x3f00; // TODO(ogniK): Work out this constant |
| 30 | // Any size checks seem to take the sample history into account | 31 | // Any size checks seem to take the sample history into account |
| 31 | // and our const ends up being 0x3f04, the 4 bytes are most | 32 | // and our const ends up being 0x3f04, the 4 bytes are most |