Commit e5ab6347 authored by Laurent Aimar's avatar Laurent Aimar

* ts.c : renamed to ts.

 * mpeg/ts.c: lowered it's priority below demux2, and renamed it ts_old(_dvbpsi).
parent 74444e99
......@@ -39,14 +39,14 @@ static void Demux2Close ( vlc_object_t * );
vlc_module_begin();
set_description( _("Demux2 adaptation layer" ) );
set_capability( "demux", 2 );
set_capability( "demux", 10 );
set_callbacks( Demux2Open, Demux2Close );
add_shortcut( "demux2" );
/* Hack */
add_shortcut( "nsv" );
add_shortcut( "live" );
add_shortcut( "ts2" );
add_shortcut( "ts" );
add_shortcut( "ps2" );
add_shortcut( "dvdnav" );
add_shortcut( "dvdnavsimple" );
......
......@@ -131,12 +131,12 @@ static void TS_DVBPSI_HandlePMT ( input_thread_t *, dvbpsi_pmt_t * );
vlc_module_begin();
#if defined MODULE_NAME_IS_ts
set_description( _("ISO 13818-1 MPEG Transport Stream input") );
set_capability( "demux", 160 );
add_shortcut( "ts" );
set_capability( "demux", 6 );
add_shortcut( "ts_old" );
#elif defined MODULE_NAME_IS_ts_dvbpsi
set_description( _("ISO 13818-1 MPEG Transport Stream input (libdvbpsi)") );
set_capability( "demux", 170 );
add_shortcut( "ts_dvbpsi" );
set_capability( "demux", 5 );
add_shortcut( "ts_old_dvbpsi" );
#endif
add_bool( "vls-backwards-compat", 0, NULL,
......
......@@ -73,7 +73,7 @@ vlc_module_begin();
add_bool( "ts-silent", 0, NULL, "Silent mode", "do not complain on encrypted PES", VLC_TRUE );
set_capability( "demux2", 10 );
set_callbacks( Open, Close );
add_shortcut( "ts2" );
add_shortcut( "ts" );
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