aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Audio/AudioFormat.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2018-03-15 21:06:24 -0300
committerGitHub <noreply@github.com>2018-03-15 21:06:24 -0300
commit79a59397349b40758fc75cd2e19c67726a77e975 (patch)
tree4597fcdf8d8d6886df88c00650b7d924c7fc16fe /Ryujinx.Audio/AudioFormat.cs
parent92f47d535e7c3b350c25499dec5e91d8be5544bc (diff)
Improvements to audout (#58)
* Some audout refactoring and improvements * More audio improvements * Change ReadAsciiString to use long for the Size, avoids some casting
Diffstat (limited to 'Ryujinx.Audio/AudioFormat.cs')
-rw-r--r--Ryujinx.Audio/AudioFormat.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/Ryujinx.Audio/AudioFormat.cs b/Ryujinx.Audio/AudioFormat.cs
new file mode 100644
index 00000000..8250d136
--- /dev/null
+++ b/Ryujinx.Audio/AudioFormat.cs
@@ -0,0 +1,13 @@
+namespace Ryujinx.Audio
+{
+ public enum AudioFormat
+ {
+ Invalid = 0,
+ PcmInt8 = 1,
+ PcmInt16 = 2,
+ PcmImt24 = 3,
+ PcmImt32 = 4,
+ PcmFloat = 5,
+ Adpcm = 6
+ }
+} \ No newline at end of file