Mercurial > mplayer.hg
changeset 10341:eee7cab79089
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)
author | alex |
---|---|
date | Fri, 27 Jun 2003 10:16:14 +0000 |
parents | 2eaabacd1429 |
children | d4d695be1836 |
files | mplayer.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mplayer.c Fri Jun 27 09:25:05 2003 +0000 +++ b/mplayer.c Fri Jun 27 10:16:14 2003 +0000 @@ -2256,7 +2256,7 @@ 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