diff options
author | Max Kellermann <max@duempel.org> | 2008-08-26 08:27:09 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-08-26 08:27:09 +0200 |
commit | e754ed01a77a0dfb5039148cd4990a669ea9024c (patch) | |
tree | e759b3b1aae66fa75bbe36aee62476d3cb87d876 /src/main.c | |
parent | 772d3da98a31b5cefa9d4de0dd5056fb19eae00f (diff) | |
download | mpd-e754ed01a77a0dfb5039148cd4990a669ea9024c.tar.gz mpd-e754ed01a77a0dfb5039148cd4990a669ea9024c.tar.xz mpd-e754ed01a77a0dfb5039148cd4990a669ea9024c.zip |
renamed functions in decoder_list.h
InputPlugin to decoder_plugin, and no camelCase.
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.c b/src/main.c index baa0ba3a3..7f66fd6bd 100644 --- a/src/main.c +++ b/src/main.c @@ -128,8 +128,8 @@ static void version(void) LOG("\n"); LOG("Supported formats:\n"); - initInputPlugins(); - printAllInputPluginSuffixes(stdout); + decoder_plugin_init_all(); + decoder_plugin_print_all_suffixes(stdout); LOG("\n"); LOG("Supported outputs:\n"); @@ -407,7 +407,7 @@ int main(int argc, char *argv[]) initPaths(); initPermissions(); initPlaylist(); - initInputPlugins(); + decoder_plugin_init_all(); openDB(&options, argv[0]); @@ -461,7 +461,7 @@ int main(int argc, char *argv[]) finishPaths(); finishPermissions(); finishCommands(); - finishInputPlugins(); + decoder_plugin_deinit_all(); cleanUpPidFile(); finishConf(); |