2007-12-14 20:09:44 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 by Dominik Wenger
|
|
|
|
*
|
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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2012-01-06 19:19:32 +00:00
|
|
|
|
2007-12-14 20:09:44 +00:00
|
|
|
#ifndef ENCODERS_H
|
|
|
|
#define ENCODERS_H
|
2012-01-06 19:19:32 +00:00
|
|
|
|
2008-02-10 18:25:49 +00:00
|
|
|
#include <QtCore>
|
2012-01-06 19:19:32 +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
|
|
|
|
|
|
|
|
2012-01-06 19:19:32 +00:00
|
|
|
class EncoderBase : public EncTtsSettingInterface
|
2007-12-14 20:09:44 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
2008-02-13 18:11:09 +00:00
|
|
|
public:
|
2012-01-06 19:19:32 +00:00
|
|
|
EncoderBase(QObject *parent );
|
2008-02-13 18:11:09 +00:00
|
|
|
|
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;
|
2012-01-06 19:19:32 +00:00
|
|
|
|
2009-04-29 21:27:01 +00:00
|
|
|
// settings
|
|
|
|
//! Child class should return true when configuration is ok
|
|
|
|
virtual bool configOk()=0;
|
2012-01-06 19:19:32 +00:00
|
|
|
//! Child class should fill in the setttingsList
|
2009-04-29 21:27:01 +00:00
|
|
|
virtual void generateSettings() = 0;
|
|
|
|
//! Chlid class should commit the from SettingsList to permanent storage
|
|
|
|
virtual void saveSettings() = 0;
|
2012-01-06 19:19:32 +00:00
|
|
|
|
2009-04-29 21:27:01 +00:00
|
|
|
// static functions
|
|
|
|
static QString getEncoderName(QString name);
|
2012-01-06 19:19:32 +00:00
|
|
|
static EncoderBase* 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
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
2012-01-06 19:19:32 +00:00
|
|
|
|