mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-28 21:50:48 -07:00
13 lines
245 B
C#
13 lines
245 B
C#
namespace Ryujinx.HLE.HOS.Services.Aud
|
|
{
|
|
internal enum SampleFormat : byte
|
|
{
|
|
Invalid = 0,
|
|
PcmInt8 = 1,
|
|
PcmInt16 = 2,
|
|
PcmInt24 = 3,
|
|
PcmInt32 = 4,
|
|
PcmFloat = 5,
|
|
Adpcm = 6
|
|
}
|
|
} |