Merge pull request #7814 from fr500/master

allow playing video from http/https sources
This commit is contained in:
Twinaphex 2018-12-24 12:39:30 +01:00 committed by GitHub
commit 3ad6ca75cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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://")