Revert: Avoid applying the Downmix filter on Mono/Stereo sources. Otherwise we need to decode (i.e. copy) Wave files, even when the Downmix filter does nothing.
This commit is contained in:
parent
037287ddb9
commit
bcbd8defce
@ -30,7 +30,7 @@
|
||||
#define VER_LAMEXP_MINOR_LO 3
|
||||
#define VER_LAMEXP_TYPE Beta
|
||||
#define VER_LAMEXP_PATCH 1
|
||||
#define VER_LAMEXP_BUILD 676
|
||||
#define VER_LAMEXP_BUILD 678
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// Tools versions
|
||||
|
@ -481,7 +481,6 @@ void ProcessingDialog::logViewDoubleClicked(const QModelIndex &index)
|
||||
|
||||
void ProcessingDialog::logViewSectionSizeChanged(int logicalIndex, int oldSize, int newSize)
|
||||
{
|
||||
qDebug("sectionResized");
|
||||
if(logicalIndex == 1)
|
||||
{
|
||||
if(QHeaderView *hdr = view_log->horizontalHeader())
|
||||
|
@ -406,7 +406,11 @@ void ProcessThread::insertDownmixFilter(void)
|
||||
//Now add the downmixing filter, if needed
|
||||
if(applyDownmixing)
|
||||
{
|
||||
m_filters.prepend(new DownmixFilter());
|
||||
unsigned int channels = m_audioFile.formatAudioChannels();
|
||||
if((channels == 0) || (channels > 2))
|
||||
{
|
||||
m_filters.prepend(new DownmixFilter());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user