[vlc-devel] commit: mkv: lower priority of mkv module to 0 (Derk-Jan Hartman )

git version control git at videolan.org
Tue Sep 16 00:19:55 CEST 2008


vlc | branch: master | Derk-Jan Hartman <hartman at videolan.org> | Tue Sep 16 00:18:31 2008 +0200| [157fcfc756195b4c7d0b9c65afeb2240f7d54cef] | committer: Derk-Jan Hartman 

mkv: lower priority of mkv module to 0

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.

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

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

diff --git a/modules/demux/mkv.cpp b/modules/demux/mkv.cpp
index 1596cc1..f5e5b35 100644
--- a/modules/demux/mkv.cpp
+++ b/modules/demux/mkv.cpp
@@ -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 );




More information about the vlc-devel mailing list