diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-04-24 17:42:26 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-04-24 17:42:26 +0000 |
commit | 8f4426252dba8db47beaea9b9956c03668c1a640 (patch) | |
tree | 242ba9845819a00adb9178d22e80d2389851e53e /src/xine-engine/load_plugins.c | |
parent | 1cc52e26e9d712583e2c1ea23ee5bfbb87e25255 (diff) | |
download | xine-lib-8f4426252dba8db47beaea9b9956c03668c1a640.tar.gz xine-lib-8f4426252dba8db47beaea9b9956c03668c1a640.tar.bz2 |
fixed input and demux plugins to reflect new buffer api
CVS patchset: 20
CVS date: 2001/04/24 17:42:26
Diffstat (limited to 'src/xine-engine/load_plugins.c')
-rw-r--r-- | src/xine-engine/load_plugins.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c index 3321fb4c4..b80f1e929 100644 --- a/src/xine-engine/load_plugins.c +++ b/src/xine-engine/load_plugins.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: load_plugins.c,v 1.5 2001/04/24 15:47:32 guenter Exp $ + * $Id: load_plugins.c,v 1.6 2001/04/24 17:42:27 guenter Exp $ * * * Load input/demux/audio_out/video_out/codec plugins @@ -156,7 +156,7 @@ void load_input_plugins (xine_t *this, else { void *(*initplug) (int, config_values_t *); - if((initplug = dlsym(plugin, "init_demuxer_plugin")) != NULL) { + if((initplug = dlsym(plugin, "init_input_plugin")) != NULL) { input_plugin_t *ip; ip = (input_plugin_t *) initplug(iface_version, config); @@ -164,7 +164,7 @@ void load_input_plugins (xine_t *this, printf("input plugin found : %s(ID: %s, iface: %d)\n", str, - this->input_plugins[this->num_input_plugins]->get_identifier(), + this->input_plugins[this->num_input_plugins]->get_identifier(this->input_plugins[this->num_input_plugins]), this->input_plugins[this->num_input_plugins]->interface_version); this->num_input_plugins++; |