summaryrefslogtreecommitdiff
path: root/src/lib/upmixer_a.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-07-15 13:15:02 +0100
committerCarl Hetherington <cth@carlh.net>2014-07-15 13:15:02 +0100
commit7f38d676e69639a7825e506618613051651968cf (patch)
treefcbdaf6d1536c58bfffe739d26c7c9bf676f8695 /src/lib/upmixer_a.h
parente5f79c57e1123754b1325f964123fcb56a2572b3 (diff)
Add simple stereo-5.1 upmixer.
Diffstat (limited to 'src/lib/upmixer_a.h')
-rw-r--r--src/lib/upmixer_a.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/lib/upmixer_a.h b/src/lib/upmixer_a.h
new file mode 100644
index 000000000..32e3f5fb6
--- /dev/null
+++ b/src/lib/upmixer_a.h
@@ -0,0 +1,43 @@
+/*
+ Copyright (C) 2014 Carl Hetherington <cth@carlh.net>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
+#include "audio_processor.h"
+#include "audio_filter.h"
+
+class UpmixerA : public AudioProcessor
+{
+public:
+ UpmixerA (int sampling_rate);
+
+ std::string name () const;
+ std::string id () const;
+ ChannelCount in_channels () const;
+ int out_channels (int) const;
+ boost::shared_ptr<AudioProcessor> clone (int) const;
+ boost::shared_ptr<AudioBuffers> run (boost::shared_ptr<const AudioBuffers>);
+ void flush ();
+
+private:
+ BandPassAudioFilter _left;
+ BandPassAudioFilter _right;
+ BandPassAudioFilter _centre;
+ BandPassAudioFilter _lfe;
+ BandPassAudioFilter _ls;
+ BandPassAudioFilter _rs;
+};