From 8ad83136ce366d05117b8857549573226cdb7e86 Mon Sep 17 00:00:00 2001 From: TangoCash Date: Sun, 15 Oct 2017 12:25:20 +0200 Subject: [PATCH] fix last commit --- libarmbox/playback_gst.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libarmbox/playback_gst.cpp b/libarmbox/playback_gst.cpp index 079074e..4108a39 100644 --- a/libarmbox/playback_gst.cpp +++ b/libarmbox/playback_gst.cpp @@ -401,6 +401,10 @@ bool cPlayback::Start(char *filename, int /*vpid*/, int /*vtype*/, int /*apid*/, { isHTTP = true; } + else if(!strncmp("https://", filename, 8)) + { + isHTTP = true; + } else if(!strncmp("file://", filename, 7)) { isHTTP = false;