ffmpegdecoder: remove debug messages
This commit is contained in:
@@ -65,14 +65,14 @@ void FFmpegFrameCache::Client::accessed(int i)
|
||||
|
||||
void FFmpegFrameCache::Client::remove_old_frames(qint64 older_than)
|
||||
{
|
||||
int counter = 0;
|
||||
//int counter = 0;
|
||||
|
||||
while (!frames_.isEmpty() && frames_.first().accessed < older_than) {
|
||||
FFmpegFrameCache::Release(frames_.takeFirst().frame);
|
||||
counter++;
|
||||
//counter++;
|
||||
}
|
||||
|
||||
qDebug() << " * Removed" << counter << "frames";
|
||||
//qDebug() << " * Removed" << counter << "frames";
|
||||
}
|
||||
|
||||
Frame* FFmpegFrameCache::Get(const VideoRenderingParams ¶ms)
|
||||
|
||||
Reference in New Issue
Block a user