Fixed HLS input in Windows

This commit is contained in:
Thulinma 2017-08-02 16:36:11 +02:00
parent d2d80c7360
commit c64b5c9934

View file

@ -362,12 +362,9 @@ namespace Mist{
if (Util::Config::printDebugLevel >= DLVL_HIGH){ if (Util::Config::printDebugLevel >= DLVL_HIGH){
for (std::vector<Playlist>::iterator pListIt = playlists.begin(); pListIt != playlists.end(); for (std::vector<Playlist>::iterator pListIt = playlists.begin(); pListIt != playlists.end();
pListIt++){ pListIt++){
std::cout << pListIt->id << ": " << pListIt->uri << std::endl;
int j = 0; int j = 0;
for (std::deque<playListEntries>::iterator entryIt = pListIt->entries.begin(); for (std::deque<playListEntries>::iterator entryIt = pListIt->entries.begin();
entryIt != pListIt->entries.end(); entryIt++){ entryIt != pListIt->entries.end(); entryIt++){
std::cout << " " << j++ << ": " << entryIt->filename
<< " bytePos: " << entryIt->bytePos << std::endl;
} }
} }
} }