summaryrefslogtreecommitdiff
path: root/ffplay.c
diff options
context:
space:
mode:
Diffstat (limited to 'ffplay.c')
-rw-r--r--ffplay.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ffplay.c b/ffplay.c
index df22b1bd2e..8a7fca8d12 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -1014,8 +1014,9 @@ static double compute_frame_delay(double frame_current_pts, VideoState *is)
if (delay <= 0 || delay >= 10.0) {
/* if incorrect delay, use previous one */
delay = is->frame_last_delay;
- }
+ } else {
is->frame_last_delay = delay;
+ }
is->frame_last_pts = frame_current_pts;
/* update delay to follow master synchronisation source */