diff options
author | Arne Morten Kvarving <arne.morten.kvarving@sintef.no> | 2018-09-06 07:03:24 +0200 |
---|---|---|
committer | Arne Morten Kvarving <arne.morten.kvarving@sintef.no> | 2018-09-06 07:03:24 +0200 |
commit | afc2b76827a7c11dbe2a40f4a8ff992cfac058fc (patch) | |
tree | 508adbfe980beffb3f378dac6a58cad17bc8dc63 | |
parent | b69ac071809489edfc20f7ab7bff0ae716183919 (diff) |
added: hand rtsps (rtsp over ssl) inputs to ffmpeg
-rw-r--r-- | xbmc/cores/VideoPlayer/DVDInputStreams/DVDFactoryInputStream.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xbmc/cores/VideoPlayer/DVDInputStreams/DVDFactoryInputStream.cpp b/xbmc/cores/VideoPlayer/DVDInputStreams/DVDFactoryInputStream.cpp index 806d395098..7d3656af00 100644 --- a/xbmc/cores/VideoPlayer/DVDInputStreams/DVDFactoryInputStream.cpp +++ b/xbmc/cores/VideoPlayer/DVDInputStreams/DVDFactoryInputStream.cpp @@ -94,6 +94,7 @@ std::shared_ptr<CDVDInputStream> CDVDFactoryInputStream::CreateInputStream(IVide #endif else if(StringUtils::StartsWithNoCase(file, "rtp://") || StringUtils::StartsWithNoCase(file, "rtsp://") || + StringUtils::StartsWithNoCase(file, "rtsps://") || StringUtils::StartsWithNoCase(file, "sdp://") || StringUtils::StartsWithNoCase(file, "udp://") || StringUtils::StartsWithNoCase(file, "tcp://") || |