diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-01-05 21:54:16 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-01-05 21:54:16 +0000 |
commit | 3517e658ee37cb82ba28a4e05fc708bba9e82af6 (patch) | |
tree | 87b06c4615628418db6f829a663d8bca06173b1f /src/xine-engine/load_plugins.c | |
parent | bb5d65d9f49e148de4f3b402d7a87956b05f5a4a (diff) | |
download | xine-lib-3517e658ee37cb82ba28a4e05fc708bba9e82af6.tar.gz xine-lib-3517e658ee37cb82ba28a4e05fc708bba9e82af6.tar.bz2 |
updates for closed caption decoder
CVS patchset: 1344
CVS date: 2002/01/05 21:54:16
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 00bc05b43..cde800de7 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.64 2002/01/02 18:16:07 jkeil Exp $ + * $Id: load_plugins.c,v 1.65 2002/01/05 21:54:17 miguelfreitas Exp $ * * * Load input/demux/audio_out/video_out/codec plugins @@ -571,7 +571,7 @@ void load_decoder_plugins (xine_t *this, video_decoder_t *vdp; int streamtype; - vdp = (video_decoder_t *) initplug(iface_version, config); + vdp = (video_decoder_t *) initplug(iface_version, this); if (vdp) { vdp->metronom = this->metronom; @@ -596,7 +596,7 @@ void load_decoder_plugins (xine_t *this, audio_decoder_t *adp; int streamtype; - adp = (audio_decoder_t *) initplug(iface_version, config); + adp = (audio_decoder_t *) initplug(iface_version, this); if (adp) { for (streamtype = 0; streamtype<DECODER_PLUGIN_MAX; streamtype++) |