[vlc-commits] codec: spu: set priority higher than ts (fix #21280)
    Francois Cartegnie 
    git at videolan.org
       
    Tue Oct 30 19:08:28 CET 2018
    
    
  
vlc/vlc-3.0 | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Mon Oct 29 17:08:58 2018 +0100| [dbdcd7e43f702cf17e5e96f260d63bcb1c067a56] | committer: Francois Cartegnie
codec: spu: set priority higher than ts (fix #21280)
(cherry picked from commit 4f6920b1b673a3997a79460f76ad32faa88fcc9b)
> http://git.videolan.org/gitweb.cgi/vlc/vlc-3.0.git/?a=commit;h=dbdcd7e43f702cf17e5e96f260d63bcb1c067a56
---
 modules/codec/ttml/ttml.c     | 2 +-
 modules/codec/webvtt/webvtt.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/codec/ttml/ttml.c b/modules/codec/ttml/ttml.c
index fa8bf307ae..2989e62027 100644
--- a/modules/codec/ttml/ttml.c
+++ b/modules/codec/ttml/ttml.c
@@ -52,7 +52,7 @@ vlc_module_begin ()
     add_submodule()
         set_shortname( N_("TTML") )
         set_description( N_("TTML demuxer") )
-        set_capability( "demux", 3 )
+        set_capability( "demux", 11 )
         set_category( CAT_INPUT )
         set_subcategory( SUBCAT_INPUT_DEMUX )
         set_callbacks( tt_OpenDemux, tt_CloseDemux )
diff --git a/modules/codec/webvtt/webvtt.c b/modules/codec/webvtt/webvtt.c
index 5649e1b31e..ac78d1968b 100644
--- a/modules/codec/webvtt/webvtt.c
+++ b/modules/codec/webvtt/webvtt.c
@@ -45,7 +45,7 @@ vlc_module_begin ()
     add_submodule()
         set_shortname( "WEBVTT" )
         set_description( N_("WEBVTT subtitles parser") )
-        set_capability( "demux", 3 )
+        set_capability( "demux", 11 )
         set_category( CAT_INPUT )
         set_subcategory( SUBCAT_INPUT_DEMUX )
         set_callbacks( webvtt_OpenDemux, webvtt_CloseDemux )
    
    
More information about the vlc-commits
mailing list