pureikyubu/SRC/DSP/DspAdpcm.h
2020-08-01 16:01:21 +03:00

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)
};
}