summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libhb/sync.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/sync.c b/libhb/sync.c
index 2f6616fde..6d4467de7 100644
--- a/libhb/sync.c
+++ b/libhb/sync.c
@@ -426,7 +426,7 @@ static void dejitterVideo( sync_stream_t * stream )
// Only dejitter video that aligns periodically
// with the frame durations.
- if (ABS(duration - ii * frame_duration) < 0.1)
+ if (ABS(duration - ii * frame_duration) < frame_duration / 3)
{
jitter_stop = ii;
}