diff options
| author | Thomas Guillemard <me@thog.eu> | 2019-10-11 17:22:24 +0200 |
|---|---|---|
| committer | Ac_K <Acoustik666@gmail.com> | 2019-10-11 17:22:24 +0200 |
| commit | 9142aca48ff09ed32954eceb3456a255d61945b7 (patch) | |
| tree | d1b41c6d70d81d1964c5ef76a2399d7eb8784965 /Ryujinx.HLE/HOS/Services/Sockets | |
| parent | 1aba033ba7868d29f5f840c99ee11dd29d689972 (diff) | |
Fix hwopus DecodeInterleaved implementation (#786)
* Fix hwopus DecodeInterleaved implementation
Also implement new variants of this api.
This should fix #763
* Sample rate shouldn't be hardcoded
This fix issues while opening Pokémon Let's Go pause menu.
* Apply Ac_K's suggestion about EndianSwap
* Address gdkchan's comment
* Address Ac_k's comment
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Sockets')
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Sockets/Bsd/IClient.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/IClient.cs b/Ryujinx.HLE/HOS/Services/Sockets/Bsd/IClient.cs index 3a02e06c..7db8066a 100644 --- a/Ryujinx.HLE/HOS/Services/Sockets/Bsd/IClient.cs +++ b/Ryujinx.HLE/HOS/Services/Sockets/Bsd/IClient.cs @@ -1,4 +1,5 @@ -using Ryujinx.Common.Logging; +using Ryujinx.Common; +using Ryujinx.Common.Logging; using Ryujinx.HLE.Utilities; using System.Collections.Generic; using System.Net; |
