[vlc-devel] commit: mkv: Restore the priority of the mkv module (Derk-Jan Hartman )

git version control git at videolan.org
Mon Jun 1 12:37:17 CEST 2009


vlc | branch: master | Derk-Jan Hartman <hartman at videolan.org> | Mon Jun  1 12:26:57 2009 +0200| [eafaeb2c918487ace54e14589b1b55a44bbfdaa3] | committer: Derk-Jan Hartman 

mkv: Restore the priority of the mkv module

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

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=eafaeb2c918487ace54e14589b1b55a44bbfdaa3
---

 modules/demux/mkv/mkv.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/modules/demux/mkv/mkv.cpp b/modules/demux/mkv/mkv.cpp
index c56fe0b..fa25d28 100644
--- a/modules/demux/mkv/mkv.cpp
+++ b/modules/demux/mkv/mkv.cpp
@@ -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 )




More information about the vlc-devel mailing list