avfilter_graph_parse frees inputs and outputs passed in, so we should not.
[dcpomatic.git] / src / lib / audio_processor.cc
index 27146806b540e7a75049b0f68426fa8161b0cbb5..f350cc2aa0404553ce8f11ff8a8dbe10e99c143e 100644 (file)
@@ -19,6 +19,7 @@
 
 #include "audio_processor.h"
 #include "mid_side_decoder.h"
+#include "upmixer_a.h"
 
 using std::string;
 using std::list;
@@ -29,6 +30,7 @@ void
 AudioProcessor::setup_audio_processors ()
 {
        _all.push_back (new MidSideDecoder ());
+       _all.push_back (new UpmixerA (48000));
 }
 
 AudioProcessor const *