Skip to content

Commit

Permalink
Merge pull request mipops#863 from MediaArea/fix-output-speed
Browse files Browse the repository at this point in the history
Fix frame speed detection
  • Loading branch information
dericed authored Jun 3, 2024
2 parents 7aabf39 + 6f9024d commit 74bec6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Common/Merge.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1496,7 +1496,7 @@ bool dv_merge_private::Process(float Speed)
}

bool Frame_Speed = false;
if (!((Speed && Speed != 1.0) || GetDvSpeedIsNormalPlayback(DvSpeed)))
if (!((Speed && Speed == 1.0) || GetDvSpeedIsNormalPlayback(DvSpeed)))
{
Frame_Speed = true;
if (OutputFrames_Speeds.empty() || !OutputFrames_Speeds[0])
Expand Down

0 comments on commit 74bec6c

Please sign in to comment.