From 178fbb6f2f74099b079e716daa5e59be1b741b44 Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Mon, 2 Aug 2021 11:06:21 -0700 Subject: [PATCH] timecode: use different drop-frame detection heuristic --- app/common/timecodefunctions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/common/timecodefunctions.cpp b/app/common/timecodefunctions.cpp index a90b9e023..eedf4d0f4 100644 --- a/app/common/timecodefunctions.cpp +++ b/app/common/timecodefunctions.cpp @@ -259,7 +259,7 @@ QString Timecode::time_to_timecode(const rational &time, const rational &timebas bool Timecode::TimebaseIsDropFrame(const rational &timebase) { - return (timebase.numerator() == 1001); + return (timebase.numerator() != 1); } QString Timecode::TimeToString(int64_t ms)