aboutsummaryrefslogtreecommitdiff
path: root/audio/softsynth/mt32/Analog.h
diff options
context:
space:
mode:
Diffstat (limited to 'audio/softsynth/mt32/Analog.h')
-rw-r--r--audio/softsynth/mt32/Analog.h15
1 files changed, 6 insertions, 9 deletions
diff --git a/audio/softsynth/mt32/Analog.h b/audio/softsynth/mt32/Analog.h
index ee642f280d..a48db72485 100644
--- a/audio/softsynth/mt32/Analog.h
+++ b/audio/softsynth/mt32/Analog.h
@@ -1,5 +1,5 @@
/* Copyright (C) 2003, 2004, 2005, 2006, 2008, 2009 Dean Beeler, Jerome Fisher
- * Copyright (C) 2011-2016 Dean Beeler, Jerome Fisher, Sergey V. Mikayev
+ * Copyright (C) 2011, 2012, 2013, 2014 Dean Beeler, Jerome Fisher, Sergey V. Mikayev
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
@@ -18,10 +18,7 @@
#ifndef MT32EMU_ANALOG_H
#define MT32EMU_ANALOG_H
-#include "globals.h"
-#include "internals.h"
-#include "Types.h"
-#include "Enumerations.h"
+#include "mt32emu.h"
namespace MT32Emu {
@@ -38,9 +35,9 @@ class AbstractLowPassFilter;
*/
class Analog {
public:
- Analog(const AnalogOutputMode mode, const bool oldMT32AnalogLPF);
+ Analog(AnalogOutputMode mode, const ControlROMFeatureSet *controlROMFeatures);
~Analog();
- void process(Sample *outStream, const Sample *nonReverbLeft, const Sample *nonReverbRight, const Sample *reverbDryLeft, const Sample *reverbDryRight, const Sample *reverbWetLeft, const Sample *reverbWetRight, Bit32u outLength);
+ void process(Sample **outStream, const Sample *nonReverbLeft, const Sample *nonReverbRight, const Sample *reverbDryLeft, const Sample *reverbDryRight, const Sample *reverbWetLeft, const Sample *reverbWetRight, const Bit32u outLength);
unsigned int getOutputSampleRate() const;
Bit32u getDACStreamsLength(Bit32u outputLength) const;
void setSynthOutputGain(float synthGain);
@@ -55,6 +52,6 @@ private:
Analog(Analog &);
};
-} // namespace MT32Emu
+}
-#endif // #ifndef MT32EMU_ANALOG_H
+#endif