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_api.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 'src/decoder_api.h')
-rw-r--r-- | src/decoder_api.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/decoder_api.h b/src/decoder_api.h index 1400f52c2..911a4e3eb 100644 --- a/src/decoder_api.h +++ b/src/decoder_api.h @@ -103,10 +103,6 @@ struct decoder_plugin { }; -void decoder_plugin_register(struct decoder_plugin *plugin); - -void decoder_plugin_unregister(struct decoder_plugin *plugin); - /** * Opaque handle which the decoder plugin passes to the functions in * this header. |