aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/plugins/Input/cue/decodercuefactory.cpp4
-rw-r--r--src/qmmp/decoderfactory.h4
2 files changed, 2 insertions, 6 deletions
diff --git a/src/plugins/Input/cue/decodercuefactory.cpp b/src/plugins/Input/cue/decodercuefactory.cpp
index de766d622..fe2fd0c41 100644
--- a/src/plugins/Input/cue/decodercuefactory.cpp
+++ b/src/plugins/Input/cue/decodercuefactory.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2008-2016 by Ilya Kotov *
+ * Copyright (C) 2008-2017 by Ilya Kotov *
* forkotov02@hotmail.ru *
* *
* This program is free software; you can redistribute it and/or modify *
@@ -42,12 +42,10 @@ const DecoderProperties DecoderCUEFactory::properties() const
properties.shortName = "cue";
properties.filters << "*.cue";
properties.description = tr("CUE Files");
- //properties.contentType = "application/ogg;audio/x-vorbis+ogg";
properties.protocols << "cue";
properties.hasAbout = true;
properties.hasSettings = true;
properties.noInput = true;
- properties.noOutput = true;
return properties;
}
diff --git a/src/qmmp/decoderfactory.h b/src/qmmp/decoderfactory.h
index eef76219c..5205b524c 100644
--- a/src/qmmp/decoderfactory.h
+++ b/src/qmmp/decoderfactory.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2006-2016 by Ilya Kotov *
+ * Copyright (C) 2006-2017 by Ilya Kotov *
* forkotov02@hotmail.ru *
* *
* This program is free software; you can redistribute it and/or modify *
@@ -47,7 +47,6 @@ public:
hasAbout = false;
hasSettings = false;
noInput = false;
- noOutput = false;
priority = 0;
}
QString name; /*!< Input plugin full name */
@@ -60,7 +59,6 @@ public:
bool hasAbout; /*!< Should be \b true if plugin has about dialog, otherwise \b false */
bool hasSettings; /*!< Should be \b true if plugin has settings dialog, otherwise \b false */
bool noInput; /*!< Should be \b true if plugin has own input, otherwise \b false */
- bool noOutput; /*!< Should be \b true if plugin has own output, otherwise \b false */
int priority; /*!< Decoder priority. Decoders with lowest value will be used first */
};
/*! @brief Input plugin interface (decoder factory).