]> git.sesse.net Git - vlc/commitdiff
mkv: lower priority of mkv module to 0
authorDerk-Jan Hartman <hartman@videolan.org>
Mon, 15 Sep 2008 22:18:31 +0000 (00:18 +0200)
committerDerk-Jan Hartman <hartman@videolan.org>
Mon, 15 Sep 2008 22:23:18 +0000 (00:23 +0200)
I've had it with this module. There is no support, let alone development, from the matroska folks anymore. I prefer to use ffmpeg which seems to be at least less crash prone and having more of a future. I'm not sure which features we are loosing due to this atm. Likely some meta info, probably ordered chapters and definetly the DVD menu capabilities.

modules/demux/mkv.cpp

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