2010-12-01 23:14:47 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// LameXP - Audio Encoder Front-End
|
2015-01-01 18:06:21 +01:00
|
|
|
// Copyright (C) 2004-2015 LoRd_MuldeR <MuldeR2@GMX.de>
|
2010-12-01 23:14:47 +01: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.
|
2010-12-01 23:14:47 +01: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
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "Registry_Decoder.h"
|
|
|
|
|
2010-12-02 23:26:30 +01:00
|
|
|
#include "Decoder_AAC.h"
|
2011-01-18 22:07:30 +01:00
|
|
|
#include "Decoder_AC3.h"
|
2011-01-09 22:36:52 +01:00
|
|
|
#include "Decoder_ADPCM.h"
|
2011-01-21 00:10:51 +01:00
|
|
|
#include "Decoder_ALAC.h"
|
2011-05-19 23:07:46 +02:00
|
|
|
#include "Decoder_Avisynth.h"
|
2011-01-18 22:07:30 +01:00
|
|
|
#include "Decoder_FLAC.h"
|
2011-01-16 22:00:49 +01:00
|
|
|
#include "Decoder_MAC.h"
|
2010-12-01 23:14:47 +01:00
|
|
|
#include "Decoder_MP3.h"
|
2011-01-29 22:50:37 +01:00
|
|
|
#include "Decoder_Musepack.h"
|
2011-01-30 01:45:34 +01:00
|
|
|
#include "Decoder_Shorten.h"
|
2011-02-01 22:15:57 +01:00
|
|
|
#include "Decoder_Speex.h"
|
2011-01-18 22:07:30 +01:00
|
|
|
#include "Decoder_TTA.h"
|
2010-12-01 23:14:47 +01:00
|
|
|
#include "Decoder_Vorbis.h"
|
2010-12-19 00:50:22 +01:00
|
|
|
#include "Decoder_Wave.h"
|
2011-01-17 20:52:54 +01:00
|
|
|
#include "Decoder_WavPack.h"
|
2012-07-20 23:19:08 +02:00
|
|
|
#include "Decoder_Opus.h"
|
2011-01-18 22:07:30 +01:00
|
|
|
#include "Decoder_WMA.h"
|
2011-02-01 22:15:57 +01:00
|
|
|
#include "PlaylistImporter.h"
|
2013-01-18 01:08:58 +01:00
|
|
|
#include "Model_Settings.h"
|
2010-12-01 23:14:47 +01:00
|
|
|
|
|
|
|
#include <QString>
|
2010-12-20 22:13:01 +01:00
|
|
|
#include <QStringList>
|
|
|
|
#include <QRegExp>
|
2010-12-01 23:14:47 +01:00
|
|
|
|
2010-12-12 19:25:06 +01:00
|
|
|
#define PROBE_DECODER(DEC) if(DEC::isDecoderAvailable() && DEC::isFormatSupported(containerType, containerProfile, formatType, formatProfile, formatVersion)) { return new DEC(); }
|
2010-12-20 22:13:01 +01:00
|
|
|
#define GET_FILETYPES(DEC) (DEC::isDecoderAvailable() ? DEC::supportedTypes() : QStringList())
|
2010-12-01 23:14:47 +01:00
|
|
|
|
|
|
|
AbstractDecoder *DecoderRegistry::lookup(const QString &containerType, const QString &containerProfile, const QString &formatType, const QString &formatProfile, const QString &formatVersion)
|
|
|
|
{
|
|
|
|
PROBE_DECODER(MP3Decoder);
|
|
|
|
PROBE_DECODER(VorbisDecoder);
|
2010-12-02 23:26:30 +01:00
|
|
|
PROBE_DECODER(AACDecoder);
|
2010-12-19 23:09:26 +01:00
|
|
|
PROBE_DECODER(AC3Decoder);
|
2010-12-15 19:57:51 +01:00
|
|
|
PROBE_DECODER(FLACDecoder);
|
2011-01-17 20:52:54 +01:00
|
|
|
PROBE_DECODER(WavPackDecoder);
|
2011-01-29 22:50:37 +01:00
|
|
|
PROBE_DECODER(MusepackDecoder);
|
2011-01-30 01:45:34 +01:00
|
|
|
PROBE_DECODER(ShortenDecoder);
|
2011-01-16 22:00:49 +01:00
|
|
|
PROBE_DECODER(MACDecoder);
|
2011-01-18 22:07:30 +01:00
|
|
|
PROBE_DECODER(TTADecoder);
|
2011-02-01 22:15:57 +01:00
|
|
|
PROBE_DECODER(SpeexDecoder);
|
2011-01-21 00:10:51 +01:00
|
|
|
PROBE_DECODER(ALACDecoder);
|
2010-12-12 19:25:06 +01:00
|
|
|
PROBE_DECODER(WMADecoder);
|
2011-01-09 22:36:52 +01:00
|
|
|
PROBE_DECODER(ADPCMDecoder);
|
2010-12-19 00:50:22 +01:00
|
|
|
PROBE_DECODER(WaveDecoder);
|
2012-07-20 23:19:08 +02:00
|
|
|
PROBE_DECODER(OpusDecoder);
|
2011-05-19 23:07:46 +02:00
|
|
|
PROBE_DECODER(AvisynthDecoder);
|
2011-01-17 20:52:54 +01:00
|
|
|
|
2010-12-01 23:14:47 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-12-20 22:13:01 +01:00
|
|
|
QStringList DecoderRegistry::getSupportedTypes(void)
|
|
|
|
{
|
|
|
|
QStringList types;
|
|
|
|
|
|
|
|
types << GET_FILETYPES(WaveDecoder);
|
|
|
|
types << GET_FILETYPES(MP3Decoder);
|
|
|
|
types << GET_FILETYPES(VorbisDecoder);
|
|
|
|
types << GET_FILETYPES(AACDecoder);
|
|
|
|
types << GET_FILETYPES(AC3Decoder);
|
|
|
|
types << GET_FILETYPES(FLACDecoder);
|
2011-01-17 20:52:54 +01:00
|
|
|
types << GET_FILETYPES(WavPackDecoder);
|
2011-01-29 22:50:37 +01:00
|
|
|
types << GET_FILETYPES(MusepackDecoder);
|
2011-01-30 01:45:34 +01:00
|
|
|
types << GET_FILETYPES(ShortenDecoder);
|
2011-01-16 22:00:49 +01:00
|
|
|
types << GET_FILETYPES(MACDecoder);
|
2011-01-18 22:07:30 +01:00
|
|
|
types << GET_FILETYPES(TTADecoder);
|
2011-02-01 22:15:57 +01:00
|
|
|
types << GET_FILETYPES(SpeexDecoder);
|
2011-01-21 00:10:51 +01:00
|
|
|
types << GET_FILETYPES(ALACDecoder);
|
2010-12-20 22:13:01 +01:00
|
|
|
types << GET_FILETYPES(WMADecoder);
|
2011-01-09 22:36:52 +01:00
|
|
|
types << GET_FILETYPES(ADPCMDecoder);
|
2012-07-20 23:19:08 +02:00
|
|
|
types << GET_FILETYPES(OpusDecoder);
|
2011-05-19 23:07:46 +02:00
|
|
|
types << GET_FILETYPES(AvisynthDecoder);
|
2010-12-20 22:13:01 +01:00
|
|
|
|
|
|
|
QStringList extensions;
|
2011-02-01 22:15:57 +01:00
|
|
|
extensions << QString(PlaylistImporter::supportedExtensions).split(" ", QString::SkipEmptyParts);
|
2010-12-20 22:13:01 +01:00
|
|
|
QRegExp regExp("\\((.+)\\)", Qt::CaseInsensitive);
|
|
|
|
|
|
|
|
for(int i = 0; i < types.count(); i++)
|
|
|
|
{
|
|
|
|
if(regExp.lastIndexIn(types.at(i)) >= 0)
|
|
|
|
{
|
|
|
|
extensions << regExp.cap(1).split(" ", QString::SkipEmptyParts);
|
|
|
|
}
|
|
|
|
}
|
2011-01-30 22:19:53 +01:00
|
|
|
|
2010-12-20 22:13:01 +01:00
|
|
|
if(!extensions.empty())
|
|
|
|
{
|
|
|
|
extensions.removeDuplicates();
|
|
|
|
extensions.sort();
|
2011-01-02 01:09:05 +01:00
|
|
|
types.prepend(QString("%1 (%2)").arg(tr("All supported types"), extensions.join(" ")));
|
2010-12-20 22:13:01 +01:00
|
|
|
}
|
|
|
|
|
2011-02-01 22:15:57 +01:00
|
|
|
types << QString("%1 (%2)").arg(tr("Playlists"), PlaylistImporter::supportedExtensions);
|
2011-01-02 01:09:05 +01:00
|
|
|
types << QString("%1 (*.*)").arg(tr("All files"));
|
2011-01-30 22:19:53 +01:00
|
|
|
|
2010-12-20 22:13:01 +01:00
|
|
|
return types;
|
|
|
|
}
|
2013-01-18 01:08:58 +01:00
|
|
|
|
|
|
|
void DecoderRegistry::configureDecoders(const SettingsModel *settings)
|
|
|
|
{
|
|
|
|
OpusDecoder::setDisableResampling(settings->opusDisableResample());
|
|
|
|
}
|