From 3f90295c70d1f020499690625a767502ff249885 Mon Sep 17 00:00:00 2001 From: lordmulder Date: Sat, 6 Aug 2011 21:52:56 +0200 Subject: [PATCH] Use "remix" filter instead of "-c" option for downmixing. Hopefully gives better results. Default WAVE channel ordering is assumed. --- src/Config.h | 2 +- src/Filter_Downmix.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Config.h b/src/Config.h index b7f207c9..24fbc6e2 100644 --- a/src/Config.h +++ b/src/Config.h @@ -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 diff --git a/src/Filter_Downmix.cpp b/src/Filter_Downmix.cpp index afdf065e..23e168a1 100644 --- a/src/Filter_Downmix.cpp +++ b/src/Filter_Downmix.cpp @@ -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)) {