From b443363aa6081749883a92f9955a95c4301df00a Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sun, 14 Jan 2007 03:07:53 +0000 Subject: Don't initialize globals to zero (or NULL) Some compilers and linkers aren't smart enough to optimize this, as global variables are implictly initialized to zero. As a result, binaries are a bit smaller as more goes in the .bss and less in the text section. git-svn-id: https://svn.musicpd.org/mpd/trunk@5254 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/inputPlugins/aac_plugin.c | 13 +------------ src/inputPlugins/audiofile_plugin.c | 13 +------------ src/inputPlugins/flac_plugin.c | 13 +------------ src/inputPlugins/mod_plugin.c | 17 +++-------------- src/inputPlugins/mp3_plugin.c | 13 +------------ src/inputPlugins/mp4_plugin.c | 13 +------------ src/inputPlugins/mpc_plugin.c | 13 +------------ src/inputPlugins/oggflac_plugin.c | 13 +------------ src/inputPlugins/oggvorbis_plugin.c | 13 +------------ 9 files changed, 11 insertions(+), 110 deletions(-) (limited to 'src/inputPlugins') diff --git a/src/inputPlugins/aac_plugin.c b/src/inputPlugins/aac_plugin.c index 04000e746..d68a8c6b7 100644 --- a/src/inputPlugins/aac_plugin.c +++ b/src/inputPlugins/aac_plugin.c @@ -470,17 +470,6 @@ InputPlugin aacPlugin = { #else -InputPlugin aacPlugin = { - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - 0, - NULL, - NULL, -}; +InputPlugin aacPlugin; #endif /* HAVE_FAAD */ diff --git a/src/inputPlugins/audiofile_plugin.c b/src/inputPlugins/audiofile_plugin.c index 91dc9ea07..979d7b863 100644 --- a/src/inputPlugins/audiofile_plugin.c +++ b/src/inputPlugins/audiofile_plugin.c @@ -183,17 +183,6 @@ InputPlugin audiofilePlugin = { #else -InputPlugin audiofilePlugin = { - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - 0, - NULL, - NULL -}; +InputPlugin audiofilePlugin; #endif /* HAVE_AUDIOFILE */ diff --git a/src/inputPlugins/flac_plugin.c b/src/inputPlugins/flac_plugin.c index 0b5ad5752..627bca6f6 100644 --- a/src/inputPlugins/flac_plugin.c +++ b/src/inputPlugins/flac_plugin.c @@ -525,17 +525,6 @@ InputPlugin flacPlugin = { #else /* !HAVE_FLAC */ -InputPlugin flacPlugin = { - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - 0, - NULL, - NULL, -}; +InputPlugin flacPlugin; #endif /* HAVE_FLAC */ diff --git a/src/inputPlugins/mod_plugin.c b/src/inputPlugins/mod_plugin.c index a73c267be..475937ad0 100644 --- a/src/inputPlugins/mod_plugin.c +++ b/src/inputPlugins/mod_plugin.c @@ -92,8 +92,8 @@ static MDRIVER drv_mpd = { VC_VoiceRealVolume }; -static int mod_mikModInitiated = 0; -static int mod_mikModInitError = 0; +static int mod_mikModInitiated; +static int mod_mikModInitError; static int mod_initMikMod(void) { @@ -285,17 +285,6 @@ InputPlugin modPlugin = { #else -InputPlugin modPlugin = { - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - 0, - NULL, - NULL -}; +InputPlugin modPlugin; #endif /* HAVE_AUDIOFILE */ diff --git a/src/inputPlugins/mp3_plugin.c b/src/inputPlugins/mp3_plugin.c index 224b0ed06..a93d136fa 100644 --- a/src/inputPlugins/mp3_plugin.c +++ b/src/inputPlugins/mp3_plugin.c @@ -1087,17 +1087,6 @@ InputPlugin mp3Plugin = { }; #else -InputPlugin mp3Plugin = { - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - 0, - NULL, - NULL -}; +InputPlugin mp3Plugin; #endif diff --git a/src/inputPlugins/mp4_plugin.c b/src/inputPlugins/mp4_plugin.c index b3439056d..654125121 100644 --- a/src/inputPlugins/mp4_plugin.c +++ b/src/inputPlugins/mp4_plugin.c @@ -450,17 +450,6 @@ InputPlugin mp4Plugin = { #else -InputPlugin mp4Plugin = { - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - 0, - NULL, - NULL -}; +InputPlugin mp4Plugin; #endif /* HAVE_FAAD */ diff --git a/src/inputPlugins/mpc_plugin.c b/src/inputPlugins/mpc_plugin.c index e8671b7fa..441af29a5 100644 --- a/src/inputPlugins/mpc_plugin.c +++ b/src/inputPlugins/mpc_plugin.c @@ -355,17 +355,6 @@ InputPlugin mpcPlugin = { #else -InputPlugin mpcPlugin = { - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - 0, - NULL, - NULL -}; +InputPlugin mpcPlugin; #endif diff --git a/src/inputPlugins/oggflac_plugin.c b/src/inputPlugins/oggflac_plugin.c index 4b03d5c7b..f66a9b7d4 100644 --- a/src/inputPlugins/oggflac_plugin.c +++ b/src/inputPlugins/oggflac_plugin.c @@ -418,17 +418,6 @@ InputPlugin oggflacPlugin = { #else /* !HAVE_FLAC */ -InputPlugin oggflacPlugin = { - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - 0, - NULL, - NULL, -}; +InputPlugin oggflacPlugin; #endif /* HAVE_OGGFLAC */ diff --git a/src/inputPlugins/oggvorbis_plugin.c b/src/inputPlugins/oggvorbis_plugin.c index f032824b2..b54a7d9ad 100644 --- a/src/inputPlugins/oggvorbis_plugin.c +++ b/src/inputPlugins/oggvorbis_plugin.c @@ -429,17 +429,6 @@ InputPlugin oggvorbisPlugin = { #else /* !HAVE_OGGVORBIS */ -InputPlugin oggvorbisPlugin = { - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - 0, - NULL, - NULL, -}; +InputPlugin oggvorbisPlugin; #endif /* HAVE_OGGVORBIS */ -- cgit v1.2.3