From 6956e159e6db2f2ad31fd8396a3540855dfc219e Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Sun, 23 Feb 2020 22:18:59 +1100 Subject: [PATCH] ffmpegdecoder: remove debug messages --- app/codec/ffmpeg/ffmpegframecache.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/codec/ffmpeg/ffmpegframecache.cpp b/app/codec/ffmpeg/ffmpegframecache.cpp index fb59fb1ce..b9739c667 100644 --- a/app/codec/ffmpeg/ffmpegframecache.cpp +++ b/app/codec/ffmpeg/ffmpegframecache.cpp @@ -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)