summaryrefslogtreecommitdiffstats
path: root/mplayer.c
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-06-27 10:16:14 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-06-27 10:16:14 +0000
commite45485d7f70f6fd59f16360258c0f0d3f14a32f4 (patch)
tree97968a0aac2c46d75cec012f1017592eb82bd022 /mplayer.c
parentf16fa9d31a9cb015173768fca4ca290f1a6909f7 (diff)
downloadmpv-e45485d7f70f6fd59f16360258c0f0d3f14a32f4.tar.bz2
mpv-e45485d7f70f6fd59f16360258c0f0d3f14a32f4.tar.xz
moved the system too slow message to MSGL_WARN, so gui users will not be annoyed.. (and imho it fits better into that category, warning vs error)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10342 b3059339-0415-0410-9bf9-f77b7e298cf2
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 611682028d..676acb4043 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -2256,7 +2256,7 @@ if(time_frame>0.001 && !(vo_flags&256)){
AV_delay=(a_pts-delay-audio_delay)-v_pts;
if(AV_delay>0.5 && drop_frame_cnt>50+drop_message*250){
++drop_message;
- mp_msg(MSGT_AVSYNC,MSGL_ERR,MSGTR_SystemTooSlow);
+ mp_msg(MSGT_AVSYNC,MSGL_WARN,MSGTR_SystemTooSlow);
}
x=AV_delay*0.1f;
if(x<-max_pts_correction) x=-max_pts_correction; else