mirror of
https://github.com/emu-russia/pureikyubu.git
synced 2025-04-02 10:42:15 -04:00
18 lines
315 B
C++
18 lines
315 B
C++
|
|
#pragma once
|
|
|
|
namespace DSP
|
|
{
|
|
|
|
// Accelerator sample format
|
|
|
|
enum class AccelFormat
|
|
{
|
|
RawByte = 0x0005, // Seen in IROM
|
|
RawUInt16 = 0x0006, //
|
|
Pcm16 = 0x000A, // Signed 16 bit PCM mono
|
|
Pcm8 = 0x0019, // Signed 8 bit PCM mono
|
|
Adpcm = 0x0000, // ADPCM encoded (both standard & extended)
|
|
};
|
|
|
|
}
|