OSDN Git Service

Use "remix" filter instead of "-c" option for downmixing. Hopefully gives better...
authorlordmulder <mulder2@gmx.de>
Sat, 6 Aug 2011 19:52:56 +0000 (21:52 +0200)
committerlordmulder <mulder2@gmx.de>
Sat, 6 Aug 2011 19:52:56 +0000 (21:52 +0200)
src/Config.h
src/Filter_Downmix.cpp

index b7f207c..24fbc6e 100644 (file)
@@ -30,7 +30,7 @@
 #define VER_LAMEXP_MINOR_LO                                    3
 #define VER_LAMEXP_TYPE                                                Alpha
 #define VER_LAMEXP_PATCH                                       8
-#define VER_LAMEXP_BUILD                                       624
+#define VER_LAMEXP_BUILD                                       625
 
 ///////////////////////////////////////////////////////////////////////////////
 // Tools versions
index afdf065..23e168a 100644 (file)
@@ -51,8 +51,8 @@ bool DownmixFilter::apply(const QString &sourceFile, const QString &outputFile,
        args << "-V3" << "-S";
        args << "--guard" << "--temp" << ".";
        args << QDir::toNativeSeparators(sourceFile);
-       args << "-c2";
        args << QDir::toNativeSeparators(outputFile);
+       args << "remix" << "1,3,4,5,7,9" << "2,3,4,6,8,9";
 
        if(!startProcess(process, m_binary, args))
        {