]> git.sesse.net Git - vlc/commitdiff
mkv: Restore the priority of the mkv module
authorDerk-Jan Hartman <hartman@videolan.org>
Mon, 1 Jun 2009 10:26:57 +0000 (12:26 +0200)
committerDerk-Jan Hartman <hartman@videolan.org>
Mon, 1 Jun 2009 10:36:53 +0000 (12:36 +0200)
Most of the time the module was still selected due to extension lookup.
It is also reported that avformat still is unstable when seeking mkv's

modules/demux/mkv/mkv.cpp

index c56fe0bcbd8bc14aadab0c28ca43f40cec020898..fa25d28e855f7f9d1e72791821da1fc57fa1f95b 100644 (file)
@@ -42,7 +42,7 @@ static void Close( vlc_object_t * );
 vlc_module_begin ()
     set_shortname( "Matroska" )
     set_description( N_("Matroska stream demuxer" ) )
-    set_capability( "demux", 0 )
+    set_capability( "demux", 50 )
     set_callbacks( Open, Close )
     set_category( CAT_INPUT )
     set_subcategory( SUBCAT_INPUT_DEMUX )