aboutsummaryrefslogtreecommitdiff
path: root/src/SPU.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/SPU.h')
-rw-r--r--src/SPU.h24
1 files changed, 20 insertions, 4 deletions
diff --git a/src/SPU.h b/src/SPU.h
index 03d476e..1541c68 100644
--- a/src/SPU.h
+++ b/src/SPU.h
@@ -27,10 +27,25 @@ namespace melonDS
class NDS;
class SPU;
+enum class AudioBitDepth
+{
+ Auto,
+ _10Bit,
+ _16Bit,
+};
+
+enum class AudioInterpolation
+{
+ None,
+ Linear,
+ Cosine,
+ Cubic,
+};
+
class SPUChannel
{
public:
- SPUChannel(u32 num, melonDS::NDS& nds);
+ SPUChannel(u32 num, melonDS::NDS& nds, AudioInterpolation interpolation);
void Reset();
void DoSavestate(Savestate* file);
@@ -40,7 +55,7 @@ public:
// audio interpolation is an improvement upon the original hardware
// (which performs no interpolation)
- int InterpType = 0;
+ AudioInterpolation InterpType = AudioInterpolation::None;
const u32 Num;
@@ -200,7 +215,7 @@ private:
class SPU
{
public:
- explicit SPU(melonDS::NDS& nds);
+ explicit SPU(melonDS::NDS& nds, AudioBitDepth bitdepth, AudioInterpolation interpolation);
~SPU();
void Reset();
void DoSavestate(Savestate* file);
@@ -210,10 +225,11 @@ public:
void SetPowerCnt(u32 val);
// 0=none 1=linear 2=cosine 3=cubic
- void SetInterpolation(int type);
+ void SetInterpolation(AudioInterpolation type);
void SetBias(u16 bias);
void SetDegrade10Bit(bool enable);
+ void SetDegrade10Bit(AudioBitDepth depth);
void SetApplyBias(bool enable);
void Mix(u32 dummy);