Make QAAC use "--cvbr" instead of "--abr" when ABR mode has been selected.
This commit is contained in:
parent
ceb86346e0
commit
e2613988ea
@ -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 "Browse..." 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 "ABR" 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 "update" mode)<br /></li>
|
||||
<li>Full support for Windows 10 RTM (Build #10240)</li>
|
||||
|
@ -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)
|
||||
|
@ -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
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -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)]);
|
||||
|
Loading…
Reference in New Issue
Block a user