summaryrefslogtreecommitdiffstats
path: root/mplayer.c
diff options
context:
space:
mode:
authorpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-02-21 22:48:47 +0000
committerpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-02-21 22:48:47 +0000
commitfe8edf976759aef5328f2f52556277e7bad15031 (patch)
tree05b89440b45ca6346e760587ae7a9c6b96d89ac2 /mplayer.c
parent9be78192bba31c64dcc9c4e17dee38cfbd92ab34 (diff)
downloadmpv-fe8edf976759aef5328f2f52556277e7bad15031.tar.bz2
mpv-fe8edf976759aef5328f2f52556277e7bad15031.tar.xz
new interface ? :)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4799 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mplayer.c')
-rw-r--r--mplayer.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/mplayer.c b/mplayer.c
index 933fb76600..01fcd2ba97 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -70,7 +70,7 @@ extern void* mDisplay; // Display* mDisplay;
#endif
#ifdef HAVE_NEW_GUI
-#include "Gui/mplayer/play.h"
+#include "Gui/interface.h"
#endif
#ifdef HAVE_NEW_INPUT
@@ -741,7 +741,7 @@ play_next_file:
// mplShMem->Playing= (gui_no_filename) ? 0 : 1;
while(mplShMem->Playing!=1){
usleep(20000);
- EventHandling();
+ guiEventHandling();
}
play_dvd:
@@ -1657,7 +1657,7 @@ if(1)
}
}
#ifdef HAVE_NEW_GUI
- if(use_gui) EventHandling();
+ if(use_gui) guiEventHandling();
#endif
video_out->check_events(); // check events AST
} else {
@@ -1747,7 +1747,7 @@ if(!dapsync){
#ifdef HAVE_NEW_GUI
if(use_gui){
- EventHandling();
+ guiEventHandling();
}
#endif
@@ -2001,7 +2001,7 @@ read_input:
#endif /* HAVE_NEW_INPUT */
#ifdef HAVE_NEW_GUI
if(use_gui){
- EventHandling();
+ guiEventHandling();
if(mplShMem->Playing!=2 || (rel_seek_secs || abs_seek_pos))
{ gui_pause_flag=1; break; } // end of pause or seek
}