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

Do not implicitly encourage raw TS over UDP-Lite, DCCP and friends

parent 05bf902c
...@@ -242,9 +242,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -242,9 +242,7 @@ static int Open( vlc_object_t *p_this )
psz_mux = strdup("asfh"); psz_mux = strdup("asfh");
} }
else if (!strcmp (psz_access, "udp") else if (!strcmp (psz_access, "udp")
|| !strcmp (psz_access, "rtp") || !strcmp (psz_access, "udplite") || !strcmp (psz_access, "rtp"))
|| !strcmp (psz_access, "tcp") || !strcmp (psz_access, "sctp")
|| !strcmp (psz_access, "dccp"))
{ {
psz_mux = strdup("ts"); psz_mux = strdup("ts");
} }
......
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