OSDN Git Service

Bump release year.
[lamexp/LameXP.git] / src / Decoder_ALAC.cpp
index 6767eae..90d6355 100644 (file)
@@ -1,6 +1,6 @@
 ///////////////////////////////////////////////////////////////////////////////
 // LameXP - Audio Encoder Front-End
-// Copyright (C) 2004-2014 LoRd_MuldeR <MuldeR2@GMX.de>
+// Copyright (C) 2004-2017 LoRd_MuldeR <MuldeR2@GMX.de>
 //
 // 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
 
 #include "Decoder_ALAC.h"
 
+//Internal
 #include "Global.h"
 
+//MUtils
+#include <MUtils/Exception.h>
+
+//Qt
 #include <QDir>
 #include <QProcess>
 #include <QRegExp>
 
 ALACDecoder::ALACDecoder(void)
 :
-       m_binary(lamexp_lookup_tool("refalac.exe"))
+       m_binary(lamexp_tools_lookup("refalac.exe"))
 {
        if(m_binary.isEmpty())
        {
-               THROW("Error initializing ALAC decoder. Tool 'refalac.exe' is not registred!");
+               MUTILS_THROW("Error initializing ALAC decoder. Tool 'refalac.exe' is not registred!");
        }
 }
 
@@ -141,7 +146,18 @@ bool ALACDecoder::isFormatSupported(const QString &containerType, const QString
        return false;
 }
 
-QStringList ALACDecoder::supportedTypes(void)
+const AbstractDecoder::supportedType_t *ALACDecoder::supportedTypes(void)
 {
-       return QStringList() << "Apple Lossless (*.mp4 *.m4a)";
+       static const char *exts[] =
+       {
+               "mp4", "m4a", NULL
+       };
+
+       static const supportedType_t s_supportedTypes[] =
+       {
+               { "Apple Lossless", exts },
+               { NULL, NULL }
+       };
+
+       return s_supportedTypes;
 }