Commit 396d39fe authored by Marian Durkovic's avatar Marian Durkovic

if no mux, add TS also for RTP

parent 744adcaa
...@@ -241,7 +241,8 @@ static int Open( vlc_object_t *p_this ) ...@@ -241,7 +241,8 @@ static int Open( vlc_object_t *p_this )
{ {
psz_mux = strdup("asfh"); psz_mux = strdup("asfh");
} }
else if( !strncmp( psz_access, "udp", 3 ) ) else if( !strncmp( psz_access, "udp", 3 ) ||
!strncmp( psz_access, "rtp", 3 ) )
{ {
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