From 65959be4474a542aaa20583ec5513c4fe9019254 Mon Sep 17 00:00:00 2001 From: Jacek Jendrzej Date: Thu, 22 Jan 2015 17:28:52 +0100 Subject: [PATCH] /movieplayer.cpp: add mmsh protocol to file parse Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/b320bafc3cbc2d8745fdcbb18f5f3852c291429b Author: Jacek Jendrzej Date: 2015-01-22 (Thu, 22 Jan 2015) ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/gui/movieplayer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/movieplayer.cpp b/src/gui/movieplayer.cpp index 208a71383..d4f8c3271 100644 --- a/src/gui/movieplayer.cpp +++ b/src/gui/movieplayer.cpp @@ -1959,7 +1959,7 @@ void CMoviePlayerGui::parsePlaylist(CFile *file) if (strlen(cLine) > 0 && cLine[0]!='#') { char *url = NULL; - if ((url = strstr(cLine, "http://")) || (url = strstr(cLine, "rtmp://")) || (url = strstr(cLine, "rtsp://")) ) { + if ((url = strstr(cLine, "http://")) || (url = strstr(cLine, "rtmp://")) || (url = strstr(cLine, "rtsp://")) || (url = strstr(cLine, "mmsh://")) ) { if (url != NULL) { printf("name %s [%d] url: %s\n", name, dur, url); file_name = url;