diff options
Diffstat (limited to '')
-rw-r--r-- | src/DecoderList.cxx | 22 | ||||
-rw-r--r-- | src/DecoderList.hxx | 3 |
2 files changed, 0 insertions, 25 deletions
diff --git a/src/DecoderList.cxx b/src/DecoderList.cxx index 834178260..dbad3dd57 100644 --- a/src/DecoderList.cxx +++ b/src/DecoderList.cxx @@ -156,28 +156,6 @@ decoder_plugin_from_suffix(const char *suffix, } const struct DecoderPlugin * -decoder_plugin_from_mime_type(const char *mimeType, unsigned int next) -{ - static unsigned i = num_decoder_plugins; - - if (mimeType == nullptr) - return nullptr; - - if (!next) - i = 0; - for (; decoder_plugins[i] != nullptr; ++i) { - const struct DecoderPlugin *plugin = decoder_plugins[i]; - if (decoder_plugins_enabled[i] && - plugin->SupportsMimeType(mimeType)) { - ++i; - return plugin; - } - } - - return nullptr; -} - -const struct DecoderPlugin * decoder_plugin_from_name(const char *name) { return decoder_plugins_find([=](const DecoderPlugin &plugin){ diff --git a/src/DecoderList.hxx b/src/DecoderList.hxx index fd4b22c63..3cfaaae7b 100644 --- a/src/DecoderList.hxx +++ b/src/DecoderList.hxx @@ -39,9 +39,6 @@ decoder_plugin_from_suffix(const char *suffix, const struct DecoderPlugin *plugin); const struct DecoderPlugin * -decoder_plugin_from_mime_type(const char *mimeType, unsigned int next); - -const struct DecoderPlugin * decoder_plugin_from_name(const char *name); /* this is where we "load" all the "plugins" ;-) */ |