OSDN Git Service

Updated Web Updater binary. Now takes an additional "Checksum" argument.
[lamexp/LameXP.git] / src / Decoder_TTA.cpp
index 4b7e22c..f4e1f47 100644 (file)
@@ -1,6 +1,6 @@
 ///////////////////////////////////////////////////////////////////////////////
 // LameXP - Audio Encoder Front-End
-// Copyright (C) 2004-2014 LoRd_MuldeR <MuldeR2@GMX.de>
+// Copyright (C) 2004-2015 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 @@
 
 TTADecoder::TTADecoder(void)
 :
-       m_binary(lamexp_tool_lookup("tta.exe"))
+       m_binary(lamexp_tools_lookup("tta.exe"))
 {
        if(m_binary.isEmpty())
        {
@@ -133,7 +133,18 @@ bool TTADecoder::isFormatSupported(const QString &containerType, const QString &
        return false;
 }
 
-QStringList TTADecoder::supportedTypes(void)
+const AbstractDecoder::supportedType_t *TTADecoder::supportedTypes(void)
 {
-       return QStringList() << "The True Audio (*.tta)";
+       static const char *exts[] =
+       {
+               "tta", NULL
+       };
+
+       static const supportedType_t s_supportedTypes[] =
+       {
+               { "The True Audio", exts },
+               { NULL, NULL }
+       };
+
+       return s_supportedTypes;
 }