diff options
author | 2025-04-28 22:08:35 +0200 | |
---|---|---|
committer | 2025-04-28 22:08:41 +0200 | |
commit | 05d52f91b825bcd17fff434a5daff64651045d86 (patch) | |
tree | daabcc5be347fde99b0fe3800b957ef4982db52a /src | |
parent | 7778796cebd19ce4fa84f24d3cefc23f1ffa3f0c (diff) |
Make avi able to do more than stereo
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/util/aviio.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/aviio.cpp b/src/lib/util/aviio.cpp index 40ce6ebe689..7b5e8d00d87 100644 --- a/src/lib/util/aviio.cpp +++ b/src/lib/util/aviio.cpp @@ -48,7 +48,7 @@ static constexpr std::uint64_t FOUR_GB = std::uint64_t(1) << 32; * @brief A constant that defines maximum sound channels. */ -static constexpr unsigned MAX_SOUND_CHANNELS = 2; +static constexpr unsigned MAX_SOUND_CHANNELS = 16; /** * @def SOUND_BUFFER_MSEC |