Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
IPTV: autonet - add rtsp(s) and udp/rtp schemes to m3u parser
  • Loading branch information
perexg committed Oct 14, 2015
1 parent ccc13bb commit cec50b2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/input/mpegts/iptv/iptv_auto.c
Expand Up @@ -82,7 +82,11 @@ iptv_auto_network_process_m3u_item(iptv_network_t *in,
if (url == NULL ||
(strncmp(url, "file://", 7) &&
strncmp(url, "http://", 7) &&
strncmp(url, "https://", 8)))
strncmp(url, "https://", 8) &&
strncmp(url, "rtsp://", 7) &&
strncmp(url, "rtsps://", 8) &&
strncmp(url, "udp://", 6) &&
strncmp(url, "rtp://", 6)))
return;

if (chnum) {
Expand Down

0 comments on commit cec50b2

Please sign in to comment.