summaryrefslogtreecommitdiff
path: root/src/libxineadec
diff options
context:
space:
mode:
Diffstat (limited to 'src/libxineadec')
-rw-r--r--src/libxineadec/adpcm.c4
-rw-r--r--src/libxineadec/logpcm.c4
-rw-r--r--src/libxineadec/roqaudio.c4
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 ;