summaryrefslogtreecommitdiffstats
path: root/Gui/wm
diff options
context:
space:
mode:
authorpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-07-02 13:35:04 +0000
committerpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-07-02 13:35:04 +0000
commit90dabd0261ce580efb8bfe078eb3717673cea8ea (patch)
treebac8807b73f59c8a5ab12c7efffc9d018f58b96b /Gui/wm
parent2677cc6ae2f2d5dda311a1ed5afd17f3f195cd4b (diff)
downloadmpv-90dabd0261ce580efb8bfe078eb3717673cea8ea.tar.bz2
mpv-90dabd0261ce580efb8bfe078eb3717673cea8ea.tar.xz
fix volume handling ( step 2 ) -- add balance support and some code cleanup and fix
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6620 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Gui/wm')
-rw-r--r--Gui/wm/ws.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/Gui/wm/ws.c b/Gui/wm/ws.c
index 6bcb468565..d3fabf00e3 100644
--- a/Gui/wm/ws.c
+++ b/Gui/wm/ws.c
@@ -699,8 +699,6 @@ void wsHandleEvents( void ){
}
}
-extern void mplTimerHandler( void );
-
void wsMainLoop( void )
{
int delay=20;
@@ -718,7 +716,6 @@ while(wsTrue){
wsEvents( wsDisplay,&wsEvent,NULL );
delay=0;
}
- mplTimerHandler(); // handle timer event
usleep(delay*1000); // FIXME!
if(delay<10*20) delay+=20; // pump up delay up to 0.2 sec (low activity)
}