From ec3632aa4581d8b85c078771b7893f2b182ec969 Mon Sep 17 00:00:00 2001 From: LoRd_MuldeR Date: Sat, 2 Dec 2017 14:55:40 +0100 Subject: [PATCH] Fixed detection of MPEG Audio files. --- src/Config.h | 4 ++-- src/Decoder_MP3.cpp | 11 +++++++---- src/Encoder_MP3.cpp | 26 +++++++++++++++++++++----- src/Encoder_MP3.h | 3 +++ 4 files changed, 33 insertions(+), 11 deletions(-) diff --git a/src/Config.h b/src/Config.h index 52ae7390..8cba58e9 100644 --- a/src/Config.h +++ b/src/Config.h @@ -34,8 +34,8 @@ #define VER_LAMEXP_MINOR_HI 1 #define VER_LAMEXP_MINOR_LO 6 #define VER_LAMEXP_TYPE Alpha -#define VER_LAMEXP_PATCH 9 -#define VER_LAMEXP_BUILD 2056 +#define VER_LAMEXP_PATCH 10 +#define VER_LAMEXP_BUILD 2058 #define VER_LAMEXP_CONFG 2002 /////////////////////////////////////////////////////////////////////////////// diff --git a/src/Decoder_MP3.cpp b/src/Decoder_MP3.cpp index d293f0f2..216a622e 100644 --- a/src/Decoder_MP3.cpp +++ b/src/Decoder_MP3.cpp @@ -139,19 +139,22 @@ bool MP3Decoder::decode(const QString &sourceFile, const QString &outputFile, QA bool MP3Decoder::isFormatSupported(const QString &containerType, const QString &containerProfile, const QString &formatType, const QString &formatProfile, const QString &formatVersion) { - const QLatin1String mpegAudio("MPEG Audio"), waveAudio("Wave"); + static const QLatin1String mpegAudio("MPEG Audio"), waveAudio("Wave"); if((containerType.compare(mpegAudio, Qt::CaseInsensitive) == 0) || (containerType.compare(waveAudio, Qt::CaseInsensitive) == 0)) { if(formatType.compare(mpegAudio, Qt::CaseInsensitive) == 0) { QMutexLocker lock(&m_regexMutex); - if (m_regxLayer.isNull() || m_regxVersion.isNull()) + if (m_regxLayer.isNull()) { - m_regxLayer.reset(new QRegExp("\\bLayer\\s+(1|2|3)\\b", Qt::CaseInsensitive)); - m_regxVersion.reset(new QRegExp("\\bVersion\\s+(1|2|2\\.5)\\b", Qt::CaseInsensitive)); + m_regxLayer.reset(new QRegExp(L1S("\\bLayer\\s+(1|2|3)\\b"), Qt::CaseInsensitive)); } if (m_regxLayer->indexIn(formatProfile) >= 0) { + if (m_regxVersion.isNull()) + { + m_regxVersion.reset(new QRegExp(L1S("\\b(Version\\s+)?(1|2|2\\.5)\\b"), Qt::CaseInsensitive)); + } return (m_regxVersion->indexIn(formatVersion) >= 0); } } diff --git a/src/Encoder_MP3.cpp b/src/Encoder_MP3.cpp index 5884a037..165ce071 100644 --- a/src/Encoder_MP3.cpp +++ b/src/Encoder_MP3.cpp @@ -33,6 +33,10 @@ static const int g_lameAgorithmQualityLUT[5] = {7, 5, 2, 0, INT_MAX}; static const int g_mp3BitrateLUT[15] = {32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320, -1}; static const int g_lameVBRQualityLUT[11] = {9, 8, 7, 6, 5, 4, 3, 2, 1, 0, INT_MAX}; +//Static +QScopedPointer MP3Encoder::m_regxLayer, MP3Encoder::m_regxVersion; +QMutex MP3Encoder::m_regexMutex; + /////////////////////////////////////////////////////////////////////////////// // Encoder Info /////////////////////////////////////////////////////////////////////////////// @@ -305,16 +309,28 @@ bool MP3Encoder::isFormatSupported(const QString &containerType, const QString & return true; } } - else if(containerType.compare(L1S("MPEG Audio"), Qt::CaseInsensitive) == 0) + + static const QLatin1String mpegAudio("MPEG Audio"), waveAudio("Wave"), pcmFormat("PCM"); + if ((containerType.compare(mpegAudio, Qt::CaseInsensitive) == 0) || (containerType.compare(waveAudio, Qt::CaseInsensitive) == 0)) { - if(formatType.compare(L1S("MPEG Audio"), Qt::CaseInsensitive) == 0) + if (formatType.compare(pcmFormat, Qt::CaseInsensitive) == 0) { - if(formatProfile.compare(L1S("Layer 3"), Qt::CaseInsensitive) == 0 || formatProfile.compare(L1S("Layer 2"), Qt::CaseInsensitive) == 0) + return true; + } + else if (formatType.compare(mpegAudio, Qt::CaseInsensitive) == 0) + { + QMutexLocker lock(&m_regexMutex); + if (m_regxLayer.isNull()) + { + m_regxLayer.reset(new QRegExp(L1S("\\bLayer\\s+(1|2|3)\\b"), Qt::CaseInsensitive)); + } + if (m_regxLayer->indexIn(formatProfile) >= 0) { - if(formatVersion.compare(L1S("Version 1"), Qt::CaseInsensitive) == 0 || formatVersion.compare(L1S("Version 2"), Qt::CaseInsensitive) == 0) + if (m_regxVersion.isNull()) { - return true; + m_regxVersion.reset(new QRegExp(L1S("\\b(Version\\s+)?(1|2|2\\.5)\\b"), Qt::CaseInsensitive)); } + return (m_regxVersion->indexIn(formatVersion) >= 0); } } } diff --git a/src/Encoder_MP3.h b/src/Encoder_MP3.h index 461fe20a..5281cb67 100644 --- a/src/Encoder_MP3.h +++ b/src/Encoder_MP3.h @@ -54,5 +54,8 @@ private: int m_configBitrateMinimum; int m_configChannelMode; + static QMutex m_regexMutex; + static QScopedPointer m_regxLayer, m_regxVersion; + int clipBitrate(int bitrate); }; -- 2.11.4.GIT