diff options
author | Max Kellermann <max@duempel.org> | 2008-09-08 11:43:13 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-08 11:43:13 +0200 |
commit | be046b25a4e2583f63d6b3da680e6451957750e4 (patch) | |
tree | f295ed51a8e2ab4f7eb504ee2d2ea2e471ad7e2c /src/main.c | |
parent | a0103dd05ce4f42f3be2ff951ea44d6e76dadc2f (diff) | |
download | mpd-be046b25a4e2583f63d6b3da680e6451957750e4.tar.gz mpd-be046b25a4e2583f63d6b3da680e6451957750e4.tar.xz mpd-be046b25a4e2583f63d6b3da680e6451957750e4.zip |
output: static audio_output_plugin list as array
Instead of having to register each output plugin, store them
statically in an array. This eliminates the need for the List library
here, and saves some small allocations during startup.
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c index d484a4406..2ca5a56d9 100644 --- a/src/main.c +++ b/src/main.c @@ -136,7 +136,6 @@ static void version(void) LOG("\n"); LOG("Supported outputs:\n"); - loadAudioDrivers(); printAllOutputPluginTypes(stdout); } |