summaryrefslogtreecommitdiff
path: root/utils/rbutilqt/base/encoderbase.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'utils/rbutilqt/base/encoderbase.cpp')
-rw-r--r--utils/rbutilqt/base/encoderbase.cpp86
1 files changed, 86 insertions, 0 deletions
diff --git a/utils/rbutilqt/base/encoderbase.cpp b/utils/rbutilqt/base/encoderbase.cpp
new file mode 100644
index 0000000000..fe45eee49b
--- /dev/null
+++ b/utils/rbutilqt/base/encoderbase.cpp
@@ -0,0 +1,86 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 *
9 * Copyright (C) 2007 by Dominik Wenger
10 *
11 * All files in this archive are subject to the GNU General Public License.
12 * See the file COPYING in the source tree root for full license agreement.
13 *
14 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
15 * KIND, either express or implied.
16 *
17 ****************************************************************************/
18
19#include "encoderbase.h"
20#include "utils.h"
21#include "rbsettings.h"
22#include "encoderrbspeex.h"
23#include "encoderlame.h"
24#include "encoderexe.h"
25
26#include "Logger.h"
27
28/*********************************************************************
29* Encoder Base
30**********************************************************************/
31QMap<QString,QString> EncoderBase::encoderList;
32
33EncoderBase::EncoderBase(QObject *parent): EncTtsSettingInterface(parent)
34{
35
36}
37
38// initialize list of encoders
39void EncoderBase::initEncodernamesList()
40{
41 encoderList["rbspeex"] = "Rockbox Speex Encoder";
42 encoderList["lame"] = "Lame Mp3 Encoder";
43}
44
45
46// get nice name for a specific encoder
47QString EncoderBase::getEncoderName(QString encoder)
48{
49 if(encoderList.isEmpty())
50 initEncodernamesList();
51 return encoderList.value(encoder);
52}
53
54
55// get a specific encoder object
56EncoderBase* EncoderBase::getEncoder(QObject* parent,QString encoder)
57{
58 EncoderBase* enc;
59 if(encoder == "lame")
60 {
61 enc = new EncoderLame(parent);
62 if (!enc->configOk())
63 {
64 LOG_WARNING() << "Could not load lame dll, falling back to command "
65 "line lame. This is notably slower.";
66 delete enc;
67 enc = new EncoderExe(encoder, parent);
68
69 }
70 return enc;
71 }
72 else // rbspeex is default
73 {
74 enc = new EncoderRbSpeex(parent);
75 return enc;
76 }
77}
78
79
80QStringList EncoderBase::getEncoderList()
81{
82 if(encoderList.isEmpty())
83 initEncodernamesList();
84 return encoderList.keys();
85}
86