diff options
author | Max Kellermann <max@duempel.org> | 2008-11-01 14:53:30 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-11-01 14:53:30 +0100 |
commit | 1a4a3e1f1f09ade38095757952bbf732ec275fe8 (patch) | |
tree | 465860e3457d06639aea949175ba8776f585dec7 /src/decoder_list.h | |
parent | 5036368f540af93372b750fe80e1c191b409a7a9 (diff) | |
download | mpd-1a4a3e1f1f09ade38095757952bbf732ec275fe8.tar.gz mpd-1a4a3e1f1f09ade38095757952bbf732ec275fe8.tar.xz mpd-1a4a3e1f1f09ade38095757952bbf732ec275fe8.zip |
decoder: manage decoder list in a static array
Currently, there is no way to dynamically load decoder plugins, thus
we don't need a dynamic list to manage them.
Diffstat (limited to '')
-rw-r--r-- | src/decoder_list.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/decoder_list.h b/src/decoder_list.h index 2e18438fb..80ade3312 100644 --- a/src/decoder_list.h +++ b/src/decoder_list.h @@ -23,10 +23,6 @@ struct decoder_plugin; -/* individual functions to load/unload plugins */ -void decoder_plugin_load(struct decoder_plugin *inputPlugin); -void decoder_plugin_unload(struct decoder_plugin *inputPlugin); - /* interface for using plugins */ const struct decoder_plugin * |