1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2019 LoRd_MuldeR <MuldeR2@GMX.de>
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version, but always including the *additional*
9 // restrictions defined in the "License.txt" file.
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with this program; if not, write to the Free Software Foundation, Inc.,
18 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 // http://www.gnu.org/licenses/gpl-2.0.txt
21 ///////////////////////////////////////////////////////////////////////////////
23 #include "Encoder_AC3.h"
26 #include "Model_Settings.h"
31 static const int g_ac3BitratesLUT
[20] = {32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320, 384, 448, 512, 576, 640, -1};
33 ///////////////////////////////////////////////////////////////////////////////
35 ///////////////////////////////////////////////////////////////////////////////
37 class AC3EncoderInfo
: public AbstractEncoderInfo
39 virtual bool isModeSupported(int mode
) const
43 case SettingsModel::VBRMode
:
44 case SettingsModel::CBRMode
:
47 case SettingsModel::ABRMode
:
51 MUTILS_THROW("Bad RC mode specified!");
55 virtual int valueCount(int mode
) const
59 case SettingsModel::VBRMode
:
62 case SettingsModel::ABRMode
:
65 case SettingsModel::CBRMode
:
69 MUTILS_THROW("Bad RC mode specified!");
73 virtual int valueAt(int mode
, int index
) const
77 case SettingsModel::VBRMode
:
78 return qBound(0, index
* 16, 1023);
80 case SettingsModel::ABRMode
:
81 case SettingsModel::CBRMode
:
82 return g_ac3BitratesLUT
[qBound(0, index
, 18)];
85 MUTILS_THROW("Bad RC mode specified!");
89 virtual int valueType(int mode
) const
93 case SettingsModel::VBRMode
:
94 return TYPE_QUALITY_LEVEL_INT
;
96 case SettingsModel::ABRMode
:
97 case SettingsModel::CBRMode
:
101 MUTILS_THROW("Bad RC mode specified!");
105 virtual const char *description(void) const
107 static const char* s_description
= "Aften: A/52 Audio Encoder";
108 return s_description
;
111 virtual const char *extension(void) const
113 static const char* s_extension
= "ac3";
117 virtual bool isResamplingSupported(void) const
122 static const g_aftenEncoderInfo
;
124 ///////////////////////////////////////////////////////////////////////////////
125 // Encoder implementation
126 ///////////////////////////////////////////////////////////////////////////////
128 AC3Encoder::AC3Encoder(void)
130 m_binary(lamexp_tools_lookup(L1S("aften.exe")))
132 if(m_binary
.isEmpty())
134 MUTILS_THROW("Error initializing FLAC encoder. Tool 'aften.exe' is not registred!");
137 m_configAudioCodingMode
= 0;
138 m_configDynamicRangeCompression
= 5;
139 m_configExponentSearchSize
= 8;
140 m_configFastBitAllocation
= false;
143 AC3Encoder::~AC3Encoder(void)
147 bool AC3Encoder::encode(const QString
&sourceFile
, const AudioFileModel_MetaInfo
&metaInfo
, const unsigned int duration
, const unsigned int channels
, const QString
&outputFile
, QAtomicInt
&abortFlag
)
152 switch(m_configRCMode
)
154 case SettingsModel::VBRMode
:
155 args
<< L1S("-q") << QString::number(qBound(0, m_configBitrate
* 16, 1023));
157 case SettingsModel::CBRMode
:
158 args
<< L1S("-b") << QString::number(g_ac3BitratesLUT
[qBound(0, m_configBitrate
, 18)]);
161 MUTILS_THROW("Bad rate-control mode!");
165 if(m_configAudioCodingMode
>= 1)
167 args
<< L1S("-acmod") << QString::number(m_configAudioCodingMode
- 1);
169 if(m_configDynamicRangeCompression
!= 5)
171 args
<< L1S("-dynrng") << QString::number(m_configDynamicRangeCompression
);
173 if(m_configExponentSearchSize
!= 8)
175 args
<< L1S("-exps") << QString::number(m_configExponentSearchSize
);
177 if(m_configFastBitAllocation
)
179 args
<< L1S("-fba") << QString::number(1);
182 if(!m_configCustomParams
.isEmpty()) args
<< m_configCustomParams
.split(" ", QString::SkipEmptyParts
);
184 args
<< QDir::toNativeSeparators(sourceFile
);
185 args
<< QDir::toNativeSeparators(outputFile
);
187 if(!startProcess(process
, m_binary
, args
))
192 int prevProgress
= -1;
193 QRegExp
regExp(L1S("progress:\\s+(\\d+)%"));
195 const result_t result
= awaitProcess(process
, abortFlag
, [this, &prevProgress
, ®Exp
](const QString
&text
)
197 if (regExp
.lastIndexIn(text
) >= 0)
200 if (MUtils::regexp_parse_int32(regExp
, newProgress
))
202 if (newProgress
> prevProgress
)
204 emit
statusUpdated(newProgress
);
205 prevProgress
= NEXT_PROGRESS(newProgress
);
213 return (result
== RESULT_SUCCESS
);
216 void AC3Encoder::setAudioCodingMode(int value
)
218 m_configAudioCodingMode
= qMin(8, qMax(0, value
));
221 void AC3Encoder::setDynamicRangeCompression(int value
)
223 m_configDynamicRangeCompression
= qMin(5, qMax(0, value
));
226 void AC3Encoder::setExponentSearchSize(int value
)
228 m_configExponentSearchSize
= qMin(32, qMax(1, value
));
231 void AC3Encoder::setFastBitAllocation(bool value
)
233 m_configFastBitAllocation
= value
;
236 const unsigned int *AC3Encoder::supportedChannelCount(void)
238 static const unsigned int supportedChannels
[] = {1, 2, 3, 4, 5, 6, NULL
};
239 return supportedChannels
;
242 const unsigned int *AC3Encoder::supportedSamplerates(void)
244 static const unsigned int supportedRates
[] = {48000, 44100, 32000, NULL
};
245 return supportedRates
;
248 bool AC3Encoder::isFormatSupported(const QString
&containerType
, const QString
&containerProfile
, const QString
&formatType
, const QString
&formatProfile
, const QString
&formatVersion
)
250 if(containerType
.compare(L1S("Wave"), Qt::CaseInsensitive
) == 0)
252 if(formatType
.compare(L1S("PCM"), Qt::CaseInsensitive
) == 0)
261 const AbstractEncoderInfo
*AC3Encoder::getEncoderInfo(void)
263 return &g_aftenEncoderInfo
;