TAV fix: odd number base quantiser causing luminance flicker on every first GOP frames

This commit is contained in:
minjaesong
2025-11-03 03:11:12 +09:00
parent e871264ae5
commit 76c42f20b3
3 changed files with 27 additions and 287 deletions

View File

@@ -1411,7 +1411,7 @@ try {
if (interactive) {
if (key === "CDAT") {
// Creation date - convert to human readable
let seconds = Math.floor(value / 1000000000)
let seconds = Math.floor(value / 1000000)
let date = new Date(seconds * 1000)
serial.println(` ${key}: ${date.toISOString()}`)
} else {