diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-09-05 22:18:50 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-09-05 22:18:50 +0000 |
commit | c0178b0e481332c8aa9ab2b1226d64426eeed9fd (patch) | |
tree | 62183313777b7b3b1b504dc7ca74ea99f7ed59c8 /src/libmpeg2/xine_decoder.c | |
parent | 08eb3436712ed19ac471cd0ddcc6d8ab1c30e4e7 (diff) | |
download | xine-lib-c0178b0e481332c8aa9ab2b1226d64426eeed9fd.tar.gz xine-lib-c0178b0e481332c8aa9ab2b1226d64426eeed9fd.tar.bz2 |
remove plugin's private priority and interface members
adapt some more decoders
CVS patchset: 2618
CVS date: 2002/09/05 22:18:50
Diffstat (limited to 'src/libmpeg2/xine_decoder.c')
-rw-r--r-- | src/libmpeg2/xine_decoder.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/libmpeg2/xine_decoder.c b/src/libmpeg2/xine_decoder.c index b7e1e8092..f3a548c1e 100644 --- a/src/libmpeg2/xine_decoder.c +++ b/src/libmpeg2/xine_decoder.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: xine_decoder.c,v 1.39 2002/09/05 20:44:40 mroi Exp $ + * $Id: xine_decoder.c,v 1.40 2002/09/05 22:18:57 mroi Exp $ * * stuff needed to turn libmpeg2 into a xine decoder plugin */ @@ -171,7 +171,6 @@ static void *init_video_decoder_plugin (xine_t *xine, void *data) { this->video_decoder.close = mpeg2dec_close; this->video_decoder.get_identifier = mpeg2dec_get_id; this->video_decoder.dispose = mpeg2dec_dispose; - this->video_decoder.priority = 6; /* higher than ffmpeg */ this->mpeg2.xine = xine; pthread_mutex_init (&this->lock, NULL); @@ -187,7 +186,7 @@ static uint32_t supported_types[] = { BUF_VIDEO_MPEG, 0 }; static decoder_info_t dec_info_mpeg2 = { supported_types, /* supported types */ - 5 /* priority */ + 6 /* priority */ }; plugin_info_t xine_plugin_info[] = { |