summaryrefslogtreecommitdiffstats
path: root/mplayer.c
diff options
context:
space:
mode:
Diffstat (limited to 'mplayer.c')
-rw-r--r--mplayer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mplayer.c b/mplayer.c
index c28933608a..6cb451b7c9 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -2100,7 +2100,7 @@ if(!sh_video) {
float d=delay-sh_audio->delay;
// we should avoid dropping to many frames in sequence unless we
// are too late. and we allow 100ms A-V delay here:
- if(d<-dropped_frames*frame_time-0.100){
+ if(d<-dropped_frames*frame_time-0.100 && osd_function != OSD_PAUSE){
drop_frame=frame_dropping;
++drop_frame_cnt;
++dropped_frames;