Updated Ukrainian translation.
[LameXP.git] / src / Encoder_Abstract.cpp
blob25b3b139acf69e4fcc57006c312727904cddc488
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2012 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
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.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License along
16 // with this program; if not, write to the Free Software Foundation, Inc.,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 // http://www.gnu.org/licenses/gpl-2.0.txt
20 ///////////////////////////////////////////////////////////////////////////////
22 #include "Encoder_Abstract.h"
24 #include "Global.h"
26 AbstractEncoder::AbstractEncoder(void)
28 m_configBitrate = 0;
29 m_configRCMode = 0;
30 m_configCustomParams.clear();
33 AbstractEncoder::~AbstractEncoder(void)
38 * Setters
41 void AbstractEncoder::setBitrate(int bitrate) { m_configBitrate = qMax(0, bitrate); }
42 void AbstractEncoder::setRCMode(int mode) { m_configRCMode = qMax(0, mode); }
43 void AbstractEncoder::setCustomParams(const QString &customParams) { m_configCustomParams = customParams; }
46 * Default implementation
49 // Does encoder require the input to be downmixed to stereo?
50 const unsigned int *AbstractEncoder::supportedChannelCount(void)
52 return NULL;
55 // Does encoder require the input to be downsampled? (NULL-terminated array of supported sampling rates)
56 const unsigned int *AbstractEncoder::supportedSamplerates(void)
58 return NULL;
61 // What bitdepths does the encoder support as input? (NULL-terminated array of supported bits per sample)
62 const unsigned int *AbstractEncoder::supportedBitdepths(void)
64 return NULL;
67 //Does the encoder need the exact duration of the source?
68 const bool AbstractEncoder::needsTimingInfo(void)
70 return false;
74 * Helper functions
77 //Does this text contain Non-ASCII characters?
78 bool AbstractEncoder::isUnicode(const QString &original)
80 QString asLatin1 = QString::fromLatin1(original.toLatin1().constData());
81 return (wcscmp(QWCHAR(original), QWCHAR(asLatin1)) != 0);
84 //Remove "problematic" characters from tag
85 QString AbstractEncoder::cleanTag(const QString &text)
87 QString result(text);
88 result.replace(QChar('"'), "'");
89 result.replace(QChar('\\'), "/");
90 return result;