2007-12-14 20:09:44 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 by Dominik Wenger
|
2008-06-30 22:09:45 +00:00
|
|
|
* $Id$
|
2007-12-14 20:09:44 +00:00
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2007-12-14 20:09:44 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef ENCODERS_H
|
|
|
|
#define ENCODERS_H
|
|
|
|
|
2008-02-10 18:25:49 +00:00
|
|
|
#include <QtCore>
|
2008-01-25 00:12:25 +00:00
|
|
|
|
2009-04-29 21:27:01 +00:00
|
|
|
#include "encttssettings.h"
|
2008-05-22 17:51:35 +00:00
|
|
|
#include "rbspeex.h"
|
2007-12-14 20:09:44 +00:00
|
|
|
|
|
|
|
|
2009-04-29 21:27:01 +00:00
|
|
|
class EncBase : public EncTtsSettingInterface
|
2007-12-14 20:09:44 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
2008-02-13 18:11:09 +00:00
|
|
|
public:
|
|
|
|
EncBase(QObject *parent );
|
|
|
|
|
2009-04-29 21:27:01 +00:00
|
|
|
//! Child class should encode a wav file
|
|
|
|
virtual bool encode(QString input,QString output) =0;
|
|
|
|
//! Child class should do startup
|
|
|
|
virtual bool start()=0;
|
|
|
|
//! Child class should stop
|
|
|
|
virtual bool stop()=0;
|
|
|
|
|
|
|
|
// settings
|
|
|
|
//! Child class should return true when configuration is ok
|
|
|
|
virtual bool configOk()=0;
|
|
|
|
//! Child class should fill in the setttingsList
|
|
|
|
virtual void generateSettings() = 0;
|
|
|
|
//! Chlid class should commit the from SettingsList to permanent storage
|
|
|
|
virtual void saveSettings() = 0;
|
|
|
|
|
|
|
|
// static functions
|
|
|
|
static QString getEncoderName(QString name);
|
|
|
|
static EncBase* getEncoder(QObject* parent,QString name);
|
2008-02-13 18:11:09 +00:00
|
|
|
static QStringList getEncoderList(void);
|
2009-05-09 16:59:14 +00:00
|
|
|
|
2008-02-13 18:11:09 +00:00
|
|
|
private:
|
|
|
|
static void initEncodernamesList(void);
|
2007-12-14 20:09:44 +00:00
|
|
|
|
2008-02-13 18:11:09 +00:00
|
|
|
protected:
|
|
|
|
static QMap<QString,QString> encoderList;
|
2007-12-14 20:09:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class EncExes : public EncBase
|
|
|
|
{
|
2009-04-29 21:27:01 +00:00
|
|
|
enum ESettings
|
|
|
|
{
|
|
|
|
eEXEPATH,
|
|
|
|
eEXEOPTIONS
|
|
|
|
};
|
|
|
|
|
2007-12-14 20:09:44 +00:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2008-02-09 18:58:14 +00:00
|
|
|
EncExes(QString name,QObject *parent = NULL);
|
2009-04-29 21:27:01 +00:00
|
|
|
bool encode(QString input,QString output);
|
|
|
|
bool start();
|
|
|
|
bool stop() {return true;}
|
2007-12-14 20:09:44 +00:00
|
|
|
|
2009-04-29 21:27:01 +00:00
|
|
|
// setting
|
|
|
|
bool configOk();
|
|
|
|
void generateSettings();
|
|
|
|
void saveSettings();
|
|
|
|
|
2007-12-14 20:09:44 +00:00
|
|
|
private:
|
|
|
|
QString m_name;
|
|
|
|
QString m_EncExec;
|
|
|
|
QString m_EncOpts;
|
|
|
|
QMap<QString,QString> m_TemplateMap;
|
|
|
|
QString m_EncTemplate;
|
|
|
|
};
|
|
|
|
|
|
|
|
class EncRbSpeex : public EncBase
|
|
|
|
{
|
2009-04-29 21:27:01 +00:00
|
|
|
enum ESettings
|
|
|
|
{
|
|
|
|
eVOLUME,
|
|
|
|
eQUALITY,
|
|
|
|
eCOMPLEXITY,
|
|
|
|
eNARROWBAND
|
|
|
|
};
|
|
|
|
|
2007-12-14 20:09:44 +00:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2008-02-09 18:58:14 +00:00
|
|
|
EncRbSpeex(QObject *parent = NULL);
|
2009-04-29 21:27:01 +00:00
|
|
|
bool encode(QString input,QString output);
|
|
|
|
bool start();
|
|
|
|
bool stop() {return true;}
|
|
|
|
|
|
|
|
// for settings view
|
|
|
|
bool configOk();
|
|
|
|
void generateSettings();
|
|
|
|
void saveSettings();
|
|
|
|
|
2007-12-14 20:09:44 +00:00
|
|
|
private:
|
|
|
|
float quality;
|
|
|
|
float volume;
|
|
|
|
int complexity;
|
|
|
|
bool narrowband;
|
|
|
|
|
|
|
|
float defaultQuality;
|
|
|
|
float defaultVolume;
|
|
|
|
int defaultComplexity;
|
|
|
|
bool defaultBand;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|