diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-09-05 20:44:38 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-09-05 20:44:38 +0000 |
commit | ea37f5776a90a7f8153757052a89d589185f5d23 (patch) | |
tree | de101bed2e068b81d2abc03866112342e5858ebe /src/libxineadec | |
parent | c35a3e9d5068667992c1b104195de59721e23786 (diff) | |
download | xine-lib-ea37f5776a90a7f8153757052a89d589185f5d23.tar.gz xine-lib-ea37f5776a90a7f8153757052a89d589185f5d23.tar.bz2 |
make all the plugin init functions static
(geez this was a job)
CVS patchset: 2616
CVS date: 2002/09/05 20:44:38
Diffstat (limited to 'src/libxineadec')
-rw-r--r-- | src/libxineadec/adpcm.c | 4 | ||||
-rw-r--r-- | src/libxineadec/logpcm.c | 4 | ||||
-rw-r--r-- | src/libxineadec/roqaudio.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/libxineadec/adpcm.c b/src/libxineadec/adpcm.c index 24a5d0eaa..b84af1739 100644 --- a/src/libxineadec/adpcm.c +++ b/src/libxineadec/adpcm.c @@ -24,7 +24,7 @@ * formats can be found here: * http://www.pcisys.net/~melanson/codecs/ * - * $Id: adpcm.c,v 1.13 2002/09/04 23:31:10 guenter Exp $ + * $Id: adpcm.c,v 1.14 2002/09/05 20:44:41 mroi Exp $ */ #include <stdio.h> @@ -1134,7 +1134,7 @@ static void adpcm_dispose (audio_decoder_t *this_gen) { free (this_gen); } -void *init_audio_decoder_plugin (xine_t *xine, void *data) { +static void *init_audio_decoder_plugin (xine_t *xine, void *data) { adpcm_decoder_t *this ; diff --git a/src/libxineadec/logpcm.c b/src/libxineadec/logpcm.c index f755681ba..d36b83aee 100644 --- a/src/libxineadec/logpcm.c +++ b/src/libxineadec/logpcm.c @@ -30,7 +30,7 @@ * http://sox.sourceforge.net/ * which listed the code as being lifted from Sun Microsystems. * - * $Id: logpcm.c,v 1.3 2002/09/04 23:31:10 guenter Exp $ + * $Id: logpcm.c,v 1.4 2002/09/05 20:44:41 mroi Exp $ * */ @@ -250,7 +250,7 @@ static void logpcm_dispose (audio_decoder_t *this_gen) { free (this_gen); } -audio_decoder_t *init_audio_decoder_plugin (int iface_version, xine_t *xine) { +static void *init_audio_decoder_plugin (int iface_version, xine_t *xine) { logpcm_decoder_t *this; if (iface_version != 9) { diff --git a/src/libxineadec/roqaudio.c b/src/libxineadec/roqaudio.c index 49f811f30..2f0b83da4 100644 --- a/src/libxineadec/roqaudio.c +++ b/src/libxineadec/roqaudio.c @@ -21,7 +21,7 @@ * For more information regarding the RoQ file format, visit: * http://www.csse.monash.edu.au/~timf/ * - * $Id: roqaudio.c,v 1.5 2002/09/04 23:31:10 guenter Exp $ + * $Id: roqaudio.c,v 1.6 2002/09/05 20:44:41 mroi Exp $ * */ @@ -182,7 +182,7 @@ static void roqaudio_dispose (audio_decoder_t *this_gen) { free (this_gen); } -void *init_audio_decoder_plugin (xine_t *xine, void *data) { +static void *init_audio_decoder_plugin (xine_t *xine, void *data) { roqaudio_decoder_t *this ; |