summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mp_msg.c5
-rw-r--r--mplayer.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/mp_msg.c b/mp_msg.c
index 5ffa3a46ac..361327aa49 100644
--- a/mp_msg.c
+++ b/mp_msg.c
@@ -69,9 +69,14 @@ void mp_msg_c( int x, const char *format, ... ){
case MSGL_ERR:
gtkMessageBox(GTK_MB_ERROR|GTK_MB_SIMPLE, tmp);
break;
+#if 0
+// WARNING! Do NOT enable this! There are too many non-critical messages with
+// MSGL_WARN, for example: broken SPU packets, codec's bit error messages,
+// etc etc, they should not raise up a new window every time.
case MSGL_WARN:
gtkMessageBox(GTK_MB_WARNING|GTK_MB_SIMPLE, tmp);
break;
+#endif
}
}
#endif
diff --git a/mplayer.c b/mplayer.c
index dce3a70b9e..35bdbf7bb4 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -1799,7 +1799,7 @@ if(time_frame>0.001 && !(vo_flags&256)){
AV_delay=(a_pts-delay-audio_delay)-v_pts;
if(drop_frame_cnt>50+drop_message*250 && AV_delay>0.5){
++drop_message;
- mp_msg(MSGT_AVSYNC,MSGL_WARN,MSGTR_SystemTooSlow);
+ mp_msg(MSGT_AVSYNC,MSGL_ERR,MSGTR_SystemTooSlow);
}
x=AV_delay*0.1f;
if(x<-max_pts_correction) x=-max_pts_correction; else