Commit 8709c047 authored by Christopher Mueller's avatar Christopher Mueller Committed by Hugo Beauzée-Luyssen

dash: remove some disturbing couts from isoffmainmanager

Signed-off-by: default avatarHugo Beauzée-Luyssen <beauze.h@gmail.com>
parent d12d9650
...@@ -106,11 +106,11 @@ Representation* IsoffMainManager::getRepresentation (Period *per ...@@ -106,11 +106,11 @@ Representation* IsoffMainManager::getRepresentation (Period *per
if(best == NULL || (currentBitrate > best->getBandwidth() && currentBitrate < bitrate)) if(best == NULL || (currentBitrate > best->getBandwidth() && currentBitrate < bitrate))
{ {
std::cout << "Found a better Representation bandwidth=" << reps.at(j)->getBandwidth() << " in adaptationSet #" << i << std::endl;
best = reps.at( j ); best = reps.at( j );
} }
} }
} }
std::cout << "Found Representation bandwidth=" << best->getBandwidth() << std::endl;
return best; return best;
} }
Period* IsoffMainManager::getNextPeriod (Period *period) Period* IsoffMainManager::getNextPeriod (Period *period)
...@@ -169,11 +169,10 @@ Representation* IsoffMainManager::getRepresentation (Period *per ...@@ -169,11 +169,10 @@ Representation* IsoffMainManager::getRepresentation (Period *per
if(best == NULL || (currentBitrate > best->getBandwidth() && currentBitrate < bitrate)) if(best == NULL || (currentBitrate > best->getBandwidth() && currentBitrate < bitrate))
{ {
std::cout << "Found a better Representation bandwidth=" << resMatchReps.at(j)->getBandwidth()
<< " and resolution: " << resMatchReps.at(j)->getWidth() << "x" << resMatchReps.at(j)->getHeight() << std::endl;
best = resMatchReps.at(j); best = resMatchReps.at(j);
} }
} }
std::cout << "Found a better Representation bandwidth=" << best->getBandwidth()
<< " and resolution: " << best->getWidth() << "x" << best->getHeight() << std::endl;
return best; return best;
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment