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/wavpack_plugin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/inputPlugins/wavpack_plugin.c') diff --git a/src/inputPlugins/wavpack_plugin.c b/src/inputPlugins/wavpack_plugin.c index 76cb03d30..9085ff88a 100644 --- a/src/inputPlugins/wavpack_plugin.c +++ b/src/inputPlugins/wavpack_plugin.c @@ -577,7 +577,7 @@ static int wavpack_filedecode(struct decoder * decoder, char *fname) static char const *wavpackSuffixes[] = { "wv", NULL }; static char const *wavpackMimeTypes[] = { "audio/x-wavpack", NULL }; -InputPlugin wavpackPlugin = { +struct decoder_plugin wavpackPlugin = { "wavpack", NULL, NULL, @@ -592,6 +592,6 @@ InputPlugin wavpackPlugin = { #else /* !HAVE_WAVPACK */ -InputPlugin wavpackPlugin; +struct decoder_plugin wavpackPlugin; #endif /* !HAVE_WAVPACK */ -- cgit v1.2.3