]> git.sesse.net Git - vlc/commitdiff
Increase its priority.
authorLaurent Aimar <fenrir@videolan.org>
Sun, 14 Dec 2008 11:57:03 +0000 (12:57 +0100)
committerLaurent Aimar <fenrir@videolan.org>
Sun, 14 Dec 2008 15:39:07 +0000 (16:39 +0100)
It should be safe(?).
It actually works better than ffmpeg except that seeking without
index does not work.
It was used anyway for .rm file.

modules/demux/real.c

index e92a1c83a17d0803c82b536f67cbad1f0eda656a..190c3c2dec71d5edd7685c3f192db5d2b8a5cb62 100644 (file)
@@ -66,7 +66,7 @@ static void Close  ( vlc_object_t * );
 
 vlc_module_begin ()
     set_description( N_("Real demuxer" ) )
-    set_capability( "demux", 0 )
+    set_capability( "demux", 50 )
     set_category( CAT_INPUT )
     set_subcategory( SUBCAT_INPUT_DEMUX )
     set_callbacks( Open, Close )
@@ -861,7 +861,6 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
 /*****************************************************************************
  * ReadRealIndex:
  *****************************************************************************/
-
 static void ReadRealIndex( demux_t *p_demux )
 {
     demux_sys_t *p_sys = p_demux->p_sys;