Fix the comparison

pull/3703/head
Isaac Connor 2023-05-08 10:26:29 -04:00
parent 5b903d8f20
commit ecb541bd04
1 changed files with 1 additions and 1 deletions

View File

@ -2224,7 +2224,7 @@ bool Monitor::Analyse() {
&&
(event->Duration() >= section_length)
) {
if (event->Frames() < min_section_length) {
if (event->Frames() < Seconds(min_section_length).count()) {
/* This is a detection for the case where huge keyframe
* intervals cause a huge time gap between the first
* frame and second frame */