allow playing video from http/https sources

This commit is contained in:
radius 2018-12-24 00:49:19 -05:00
parent d2a2878b2c
commit abc31fa092

View File

@ -724,6 +724,8 @@ enum rarch_content_type path_is_media_type(const char *path)
/* hack, to detect livestreams so the ffmpeg core can be started */
if (
strstr(path, "udp://") ||
strstr(path, "http://") ||
strstr(path, "https://")||
strstr(path, "tcp://") ||
strstr(path, "rtmp://") ||
strstr(path, "rtp://")