From e41be362a1dc5691721d72b7f915e32d7f5272bb Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 26 Aug 2008 08:27:08 +0200 Subject: renamed InputPlugin to struct decoder_plugin "decoder plugin" is a better name than "input plugin", since the plugin does not actually do the input - InputStream does. Also don't use typedef, so we can forward-declare it if required. --- src/inputPlugins/mod_plugin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/inputPlugins/mod_plugin.c') diff --git a/src/inputPlugins/mod_plugin.c b/src/inputPlugins/mod_plugin.c index 384381ea0..5e700016f 100644 --- a/src/inputPlugins/mod_plugin.c +++ b/src/inputPlugins/mod_plugin.c @@ -262,7 +262,7 @@ static const char *modSuffixes[] = { "amf", NULL }; -InputPlugin modPlugin = { +struct decoder_plugin modPlugin = { "mod", NULL, mod_finishMikMod, @@ -277,6 +277,6 @@ InputPlugin modPlugin = { #else -InputPlugin modPlugin; +struct decoder_plugin modPlugin; #endif /* HAVE_MIKMOD */ -- cgit v1.2.3