From c64b5c9934260a050255edcb355359dc04f65249 Mon Sep 17 00:00:00 2001 From: Thulinma Date: Wed, 2 Aug 2017 16:36:11 +0200 Subject: [PATCH] Fixed HLS input in Windows --- src/input/input_hls.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/input/input_hls.cpp b/src/input/input_hls.cpp index f2de9779..ba83643f 100644 --- a/src/input/input_hls.cpp +++ b/src/input/input_hls.cpp @@ -362,12 +362,9 @@ namespace Mist{ if (Util::Config::printDebugLevel >= DLVL_HIGH){ for (std::vector::iterator pListIt = playlists.begin(); pListIt != playlists.end(); pListIt++){ - std::cout << pListIt->id << ": " << pListIt->uri << std::endl; int j = 0; for (std::deque::iterator entryIt = pListIt->entries.begin(); entryIt != pListIt->entries.end(); entryIt++){ - std::cout << " " << j++ << ": " << entryIt->filename - << " bytePos: " << entryIt->bytePos << std::endl; } } }