[fea]
[删除刷屏日志]
This commit is contained in:
yangyakun
2024-10-12 18:19:23 +08:00
parent 606f63c3e9
commit 629fffd265

View File

@@ -133,7 +133,6 @@ class BigFrameAnimatorContainer (resId: Int,
decodeImage = OCHThreadPoolManager.getsInstance().submit(object: Runnable{
override fun run() {
while (true) {
val startTime = System.currentTimeMillis()
val (bitmap1, options) = writeQueue.take()
mIndex++
if (mIndex >= mFrames.size){
@@ -159,8 +158,6 @@ class BigFrameAnimatorContainer (resId: Int,
if (bitmap != null) {
readQueue.put(Pair(bitmap, options))
}
val dexTime = System.currentTimeMillis() - startTime
CallerLogger.d(TAG, "decode用时${dexTime}ms index ${index}")
}
}
})