Make QAAC use "--cvbr" instead of "--abr" when ABR mode has been selected.

This commit is contained in:
LoRd_MuldeR 2015-10-18 14:59:17 +02:00
parent ceb86346e0
commit e2613988ea
4 changed files with 7 additions and 3 deletions

View File

@ -104,6 +104,8 @@ document.write('<a h'+'ref'+'="ma'+'ilto'+':'+e+'">'+e+'<\/'+'a'+'>');
<li>Updated GnuPG to v1.4.19 (2015-02-27), compiled with GCC 4.9.2<br /></li>
<li>Fixed potential deadlock in Cue Sheet import dialog when &quot;Browse...&quot; button is clicked<br /></li>
<li>Fixed function to restore the default Temp folder, if custom Temp folder doesn't exist anymore<br /></li>
<li>Fixed parsing of command-line parameters, regression in MUtilities library (LameXP v4.12 RC-1)<br /></li>
<li>QAAC encoder is now using <code>--cvbr</code> instead of <code>--abr</code> when &quot;ABR&quot; mode is selected<br /></li>
<li>Enable the embedding of cover artwork for Opus encoder (opusenc), using the <code>--picture</code> option<br /></li>
<li>Some installer improvements have been implemented (especially in &quot;update&quot; mode)<br /></li>
<li>Full support for Windows 10 RTM (Build #10240)</li>

View File

@ -21,6 +21,8 @@
* Updated GnuPG to v1.4.19 (2015-02-27), compiled with GCC 4.9.2
* Fixed potential deadlock in Cue Sheet import dialog when "Browse..." button is clicked
* Fixed function to restore the default Temp folder, if custom Temp folder doesn't exist anymore
* Fixed parsing of command-line parameters, regression in MUtilities library (LameXP v4.12 RC-1)
* QAAC encoder is now using `--cvbr` instead of `--abr` when "ABR" mode is selected
* Enable the embedding of cover artwork for Opus encoder (opusenc), using the ``--picture`` option
* Some installer improvements have been implemented (especially in "update" mode)
* Full support for Windows 10 RTM (Build #10240)

View File

@ -34,8 +34,8 @@
#define VER_LAMEXP_MINOR_HI 1
#define VER_LAMEXP_MINOR_LO 2
#define VER_LAMEXP_TYPE RC
#define VER_LAMEXP_PATCH 3
#define VER_LAMEXP_BUILD 1810
#define VER_LAMEXP_PATCH 4
#define VER_LAMEXP_BUILD 1812
#define VER_LAMEXP_CONFG 1700
///////////////////////////////////////////////////////////////////////////////

View File

@ -179,7 +179,7 @@ bool QAACEncoder::encode(const QString &sourceFile, const AudioFileModel_MetaInf
args << "--cbr" << QString::number(qBound(8, index2bitrate(m_configBitrate), 576));
break;
case SettingsModel::ABRMode:
args << "--abr" << QString::number(qBound(8, index2bitrate(m_configBitrate), 576));
args << "--cvbr" << QString::number(qBound(8, index2bitrate(m_configBitrate), 576));
break;
case SettingsModel::VBRMode:
args << "--tvbr" << QString::number(g_qaacVBRQualityLUT[qBound(0, m_configBitrate , 14)]);