From 0b7fa608cc50ab566ff9c87da5bc445ac3a6f278 Mon Sep 17 00:00:00 2001 From: Guenter Bartsch Date: Sun, 29 Apr 2001 01:09:23 +0000 Subject: decoder plugins get loaded now CVS patchset: 43 CVS date: 2001/04/29 01:09:23 --- src/xine-engine/load_plugins.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/xine-engine/load_plugins.c') diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c index 1a6f5201c..d0c40cda7 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.15 2001/04/28 22:29:36 guenter Exp $ + * $Id: load_plugins.c,v 1.16 2001/04/29 01:09:23 guenter Exp $ * * * Load input/demux/audio_out/video_out/codec plugins @@ -281,7 +281,7 @@ void load_decoder_plugins (xine_t *this, this->num_video_decoder_plugins++; } - if(this->num_video_decoder_plugins > VIDEO_DECODER_PLUGIN_MAX) { + if(this->num_video_decoder_plugins > DECODER_PLUGIN_MAX) { fprintf(stderr, "%s(%d): too many video decoder plugins installed," " exiting.\n", __FILE__, __LINE__); exit(1); @@ -305,7 +305,7 @@ void load_decoder_plugins (xine_t *this, this->num_audio_decoder_plugins++; } - if(this->num_audio_decoder_plugins > AUDIO_DECODER_PLUGIN_MAX) { + if(this->num_audio_decoder_plugins > DECODER_PLUGIN_MAX) { fprintf(stderr, "%s(%d): too many audio decoder plugins installed," " exiting.\n", __FILE__, __LINE__); exit(1); -- cgit v1.2.3