fixed timecodes showing negative numbers between tokens

This commit is contained in:
itsmattkc
2019-12-14 23:13:37 +11:00
parent 2f04a53054
commit 72f2d06ab3
+1 -1
View File
@@ -73,7 +73,7 @@ QString olive::timestamp_to_timecode(const int64_t &timestamp,
double frame_rate = timebase.flipped().toDouble();
int rounded_frame_rate = qRound(frame_rate);
int64_t frames, secs, mins, hours;
int64_t f = timestamp;
int64_t f = qAbs(timestamp);
if (display == kTimecodeDropFrame && timebase.numerator() == 1001) {
frame_token = ";";