diff options
| author | 2023-11-04 11:28:47 -0400 | |
|---|---|---|
| committer | 2023-11-04 11:28:47 -0400 | |
| commit | 940618a64dc048790291e240dca6a085a4f1c27c (patch) | |
| tree | 6d41f305300d241769ff693d9e417ffb9b5b8edc /src/audio_core/opus | |
| parent | Merge pull request #11960 from german77/silence (diff) | |
| parent | Allow 0 stereo count (diff) | |
| download | yuzu-940618a64dc048790291e240dca6a085a4f1c27c.tar.gz yuzu-940618a64dc048790291e240dca6a085a4f1c27c.tar.xz yuzu-940618a64dc048790291e240dca6a085a4f1c27c.zip | |
Merge pull request #11952 from liamwhite/opus_stereo_count
opus: Allow 0 stereo count
Diffstat (limited to 'src/audio_core/opus')
| -rw-r--r-- | src/audio_core/opus/decoder_manager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio_core/opus/decoder_manager.cpp b/src/audio_core/opus/decoder_manager.cpp index 4a5382973..fdeccdf50 100644 --- a/src/audio_core/opus/decoder_manager.cpp +++ b/src/audio_core/opus/decoder_manager.cpp | |||
| @@ -24,7 +24,7 @@ bool IsValidSampleRate(u32 sample_rate) { | |||
| 24 | } | 24 | } |
| 25 | 25 | ||
| 26 | bool IsValidStreamCount(u32 channel_count, u32 total_stream_count, u32 stereo_stream_count) { | 26 | bool IsValidStreamCount(u32 channel_count, u32 total_stream_count, u32 stereo_stream_count) { |
| 27 | return total_stream_count > 0 && stereo_stream_count > 0 && | 27 | return total_stream_count > 0 && static_cast<s32>(stereo_stream_count) >= 0 && |
| 28 | stereo_stream_count <= total_stream_count && | 28 | stereo_stream_count <= total_stream_count && |
| 29 | total_stream_count + stereo_stream_count <= channel_count; | 29 | total_stream_count + stereo_stream_count <= channel_count; |
| 30 | } | 30 | } |