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.
This commit is contained in:
Max Kellermann
2008-08-26 08:27:08 +02:00
parent cdaa26c81d
commit e41be362a1
18 changed files with 65 additions and 59 deletions

View File

@@ -23,7 +23,7 @@
#include "pcm_utils.h"
struct decoder {
InputPlugin *plugin;
struct decoder_plugin *plugin;
ConvState conv_state;
};