diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-04-29 01:09:23 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-04-29 01:09:23 +0000 |
commit | 0b7fa608cc50ab566ff9c87da5bc445ac3a6f278 (patch) | |
tree | 47b3b281c5f533a768ff131e47db747983011755 /src/xine-engine/load_plugins.c | |
parent | f38fa74e306ea2bbd9b8f34521f6d441e1026e8b (diff) | |
download | xine-lib-0b7fa608cc50ab566ff9c87da5bc445ac3a6f278.tar.gz xine-lib-0b7fa608cc50ab566ff9c87da5bc445ac3a6f278.tar.bz2 |
decoder plugins get loaded now
CVS patchset: 43
CVS date: 2001/04/29 01:09:23
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 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); |