0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

Limit Gui redraw rate.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13673 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2004-10-18 18:26:44 +00:00
parent b9e2410e04
commit 4107fec833

View File

@ -26,6 +26,7 @@
#include "../../libmpdemux/stheader.h"
#include "../../codec-cfg.h"
#define GUI_REDRAW_WAIT 375
#include "play.h"
#include "widgets.h"
@ -76,6 +77,7 @@ void mplMainDraw( void )
extern void exit_player(char* how);
extern int vcd_track;
extern int osd_visible;
static unsigned last_redraw_time = 0;
void mplEventHandling( int msg,float param )
{
@ -329,6 +331,15 @@ set_volume:
// --- timer events
case evRedraw:
{
unsigned now = GetTimerMS();
extern int mplPBFade;
if ((now > last_redraw_time) &&
(now < last_redraw_time + GUI_REDRAW_WAIT) &&
!mplPBFade)
break;
last_redraw_time = now;
}
mplMainRender=1;
wsPostRedisplay( &appMPlayer.mainWindow );
wsPostRedisplay( &appMPlayer.barWindow );