From c0178b0e481332c8aa9ab2b1226d64426eeed9fd Mon Sep 17 00:00:00 2001 From: Michael Roitzsch Date: Thu, 5 Sep 2002 22:18:50 +0000 Subject: remove plugin's private priority and interface members adapt some more decoders CVS patchset: 2618 CVS date: 2002/09/05 22:18:50 --- src/libxinevdec/fli.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'src/libxinevdec/fli.c') diff --git a/src/libxinevdec/fli.c b/src/libxinevdec/fli.c index 662aa4b35..238bc09ef 100644 --- a/src/libxinevdec/fli.c +++ b/src/libxinevdec/fli.c @@ -23,7 +23,7 @@ * avoid when implementing a FLI decoder, visit: * http://www.pcisys.net/~melanson/codecs/ * - * $Id: fli.c,v 1.5 2002/09/05 20:44:41 mroi Exp $ + * $Id: fli.c,v 1.6 2002/09/05 22:19:02 mroi Exp $ */ #include @@ -559,10 +559,7 @@ static void fli_dispose (video_decoder_t *this_gen) { /* * This function should be the plugin's only advertised function to the * outside world. It allows xine to query the plugin module for the addresses - * to the necessary functions in the video decoder object. The video - * decoder object also has a priority field which allows different decoder - * plugins for the same buffer types to coexist peacefully. The higher the - * priority number, the more precedence a decoder has. E.g., 9 beats 1. + * to the necessary functions in the video decoder object. */ static void *init_video_decoder_plugin (xine_t *xine, void *data) { @@ -578,7 +575,6 @@ static void *init_video_decoder_plugin (xine_t *xine, void *data) { this->video_decoder.close = fli_close; this->video_decoder.get_identifier = fli_get_id; this->video_decoder.dispose = fli_dispose; - this->video_decoder.priority = 1; return this; } -- cgit v1.2.3