Commit 1b2799e4 authored by Laurent Aimar's avatar Laurent Aimar

Decreased priority of raw mpeg video demuxer.

It has a too permissive detection code to have a high priority.
parent f4827eb2
...@@ -44,7 +44,7 @@ vlc_module_begin () ...@@ -44,7 +44,7 @@ vlc_module_begin ()
set_category( CAT_INPUT ) set_category( CAT_INPUT )
set_subcategory( SUBCAT_INPUT_DEMUX ) set_subcategory( SUBCAT_INPUT_DEMUX )
set_description( N_("MPEG-I/II video demuxer" ) ) set_description( N_("MPEG-I/II video demuxer" ) )
set_capability( "demux", 100 ) set_capability( "demux", 5 )
set_callbacks( Open, Close ) set_callbacks( Open, Close )
add_shortcut( "mpgv" ) add_shortcut( "mpgv" )
vlc_module_end () vlc_module_end ()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment