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/adpcm.c | |
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/adpcm.c')
-rw-r--r-- | src/libxineadec/adpcm.c | 4 |
1 files changed, 2 insertions, 2 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 ; |