mirror of
https://github.com/curioustorvald/tsvm.git
synced 2026-03-07 11:51:49 +09:00
TAV fix: odd number base quantiser causing luminance flicker on every first GOP frames
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user