Commit a87c0c15 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

RTP: priority zero - do not load the module needlessly

There is no point in loading the RTP access_demux if the MRL scheme
is not explicitly supported - it would fail in Open anyway.
parent 6aa9a2b1
......@@ -83,7 +83,7 @@ vlc_module_begin ();
set_description (_("(Experimental) Real-Time Protocol demuxer"));
set_category (CAT_INPUT);
set_subcategory (SUBCAT_INPUT_DEMUX);
set_capability ("access_demux", 10);
set_capability ("access_demux", 0);
set_callbacks (Open, Close);
add_integer ("rtp-caching", 1000, NULL, RTP_CACHING_TEXT,
......
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