summaryrefslogtreecommitdiff
path: root/src/libxinevdec/msrle.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libxinevdec/msrle.c')
-rw-r--r--src/libxinevdec/msrle.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/libxinevdec/msrle.c b/src/libxinevdec/msrle.c
index 531cf0f1f..776157297 100644
--- a/src/libxinevdec/msrle.c
+++ b/src/libxinevdec/msrle.c
@@ -21,7 +21,7 @@
* For more information on the MS RLE format, visit:
* http://www.pcisys.net/~melanson/codecs/
*
- * $Id: msrle.c,v 1.6 2002/09/05 20:44:41 mroi Exp $
+ * $Id: msrle.c,v 1.7 2002/09/05 22:19:03 mroi Exp $
*/
#include <stdio.h>
@@ -335,10 +335,7 @@ static void msrle_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) {
@@ -354,7 +351,6 @@ static void *init_video_decoder_plugin (xine_t *xine, void *data) {
this->video_decoder.close = msrle_close;
this->video_decoder.get_identifier = msrle_get_id;
this->video_decoder.dispose = msrle_dispose;
- this->video_decoder.priority = 1;
return this;
}