OSDN Git Service

Bump release year.
[lamexp/LameXP.git] / src / Decoder_ALAC.cpp
index ecdc438..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
@@ -36,7 +36,7 @@
 
 ALACDecoder::ALACDecoder(void)
 :
-       m_binary(lamexp_tool_lookup("refalac.exe"))
+       m_binary(lamexp_tools_lookup("refalac.exe"))
 {
        if(m_binary.isEmpty())
        {
@@ -146,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;
 }