2013-09-30 21:39:56 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// LameXP - Audio Encoder Front-End
|
2017-03-12 12:12:49 +01:00
|
|
|
// Copyright (C) 2004-2017 LoRd_MuldeR <MuldeR2@GMX.de>
|
2013-09-30 21:39:56 +02: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
|
2013-10-23 20:56:57 +02:00
|
|
|
// (at your option) any later version, but always including the *additional*
|
|
|
|
// restrictions defined in the "License.txt" file.
|
2013-09-30 21:39:56 +02:00
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License along
|
|
|
|
// with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
//
|
|
|
|
// http://www.gnu.org/licenses/gpl-2.0.txt
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QObject>
|
2015-05-10 16:34:07 +02:00
|
|
|
#include <QStringList>
|
2013-09-30 21:39:56 +02:00
|
|
|
|
|
|
|
class AbstractEncoder;
|
|
|
|
class AbstractEncoderInfo;
|
|
|
|
class SettingsModel;
|
|
|
|
|
|
|
|
class EncoderRegistry : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2016-01-30 17:51:10 +01:00
|
|
|
static AbstractEncoder *createInstance(const int encoderId, const SettingsModel *settings);
|
2013-09-30 21:39:56 +02:00
|
|
|
static const AbstractEncoderInfo *getEncoderInfo(const int encoderId);
|
2013-10-02 16:39:26 +02:00
|
|
|
|
|
|
|
static void saveEncoderMode(SettingsModel *settings, const int encoderId, const int rcMode);
|
2013-10-03 17:01:37 +02:00
|
|
|
static int loadEncoderMode(const SettingsModel *settings, const int encoderId);
|
2013-10-02 16:39:26 +02:00
|
|
|
|
|
|
|
static void saveEncoderValue(SettingsModel *settings, const int encoderId, const int rcMode, const int value);
|
|
|
|
static int loadEncoderValue(const SettingsModel *settings, const int encoderId, const int rcMode);
|
2013-10-02 19:17:33 +02:00
|
|
|
|
2015-04-09 18:40:32 +02:00
|
|
|
static void saveEncoderCustomParams(SettingsModel *settings, const int encoderId, const QString ¶ms);
|
2013-10-03 17:01:37 +02:00
|
|
|
static QString loadEncoderCustomParams(const SettingsModel *settings, const int encoderId);
|
|
|
|
|
2013-10-03 15:56:10 +02:00
|
|
|
static void resetAllEncoders(SettingsModel *settings);
|
2015-05-10 16:34:07 +02:00
|
|
|
static QStringList getOutputFileExtensions(void);
|
2013-10-02 19:17:33 +02:00
|
|
|
static int getAacEncoder(void);
|
2013-09-30 21:39:56 +02:00
|
|
|
};
|