summaryrefslogtreecommitdiffstats
path: root/video/out/x11_common.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-07-02 14:04:36 +0200
committerwm4 <wm4@nowhere>2013-07-02 14:11:31 +0200
commitd603e73c24d6d7ad08a54c10d16c83d93b01a007 (patch)
tree1ff7c913e0c198961f23ddcbc2e271ce9ed2fe16 /video/out/x11_common.c
parent70a8079c8e0109eb89db3f3278be2a75a710c95e (diff)
downloadmpv-d603e73c24d6d7ad08a54c10d16c83d93b01a007.tar.bz2
mpv-d603e73c24d6d7ad08a54c10d16c83d93b01a007.tar.xz
core: cleanup more mp_fifo leftovers
Now only the OSX and Wayland parts are using this.
Diffstat (limited to 'video/out/x11_common.c')
-rw-r--r--video/out/x11_common.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/video/out/x11_common.c b/video/out/x11_common.c
index 648f1d57eb..05d6af41cb 100644
--- a/video/out/x11_common.c
+++ b/video/out/x11_common.c
@@ -26,7 +26,7 @@
#include "core/bstr.h"
#include "core/options.h"
#include "core/mp_msg.h"
-#include "core/mp_fifo.h"
+#include "core/input/input.h"
#include "libavutil/common.h"
#include "x11_common.h"
#include "talloc.h"
@@ -639,7 +639,7 @@ void vo_x11_uninit(struct vo *vo)
struct vo_x11_state *x11 = vo->x11;
assert(x11);
- mplayer_put_key(vo->key_fifo, MP_INPUT_RELEASE_ALL);
+ mp_input_put_key(vo->input_ctx, MP_INPUT_RELEASE_ALL);
saver_on(x11);
if (x11->window != None)
@@ -730,17 +730,17 @@ int vo_x11_check_events(struct vo *vo)
sizeof(buf), &keySym, &status);
int mpkey = vo_x11_lookupkey(keySym);
if (mpkey) {
- mplayer_put_key(vo->key_fifo, mpkey | modifiers);
+ mp_input_put_key(vo->input_ctx, mpkey | modifiers);
} else if (status == XLookupChars || status == XLookupBoth) {
struct bstr t = { buf, len };
- mplayer_put_key_utf8(vo->key_fifo, modifiers, t);
+ mp_input_put_key_utf8(vo->input_ctx, modifiers, t);
}
} else {
XLookupString(&Event.xkey, buf, sizeof(buf), &keySym,
&x11->compose_status);
int mpkey = vo_x11_lookupkey(keySym);
if (mpkey)
- mplayer_put_key(vo->key_fifo, mpkey | modifiers);
+ mp_input_put_key(vo->input_ctx, mpkey | modifiers);
}
break;
}
@@ -750,24 +750,24 @@ int vo_x11_check_events(struct vo *vo)
case KeyRelease:
{
if (x11->no_autorepeat)
- mplayer_put_key(vo->key_fifo, MP_INPUT_RELEASE_ALL);
+ mp_input_put_key(vo->input_ctx, MP_INPUT_RELEASE_ALL);
break;
}
case MotionNotify:
vo_mouse_movement(vo, Event.xmotion.x, Event.xmotion.y);
break;
case LeaveNotify:
- mplayer_put_key(vo->key_fifo, MP_KEY_MOUSE_LEAVE);
+ mp_input_put_key(vo->input_ctx, MP_KEY_MOUSE_LEAVE);
break;
case ButtonPress:
- mplayer_put_key(vo->key_fifo,
- (MP_MOUSE_BTN0 + Event.xbutton.button - 1)
- | MP_KEY_STATE_DOWN);
+ mp_input_put_key(vo->input_ctx,
+ (MP_MOUSE_BTN0 + Event.xbutton.button - 1)
+ | MP_KEY_STATE_DOWN);
break;
case ButtonRelease:
- mplayer_put_key(vo->key_fifo,
- (MP_MOUSE_BTN0 + Event.xbutton.button - 1)
- | MP_KEY_STATE_UP);
+ mp_input_put_key(vo->input_ctx,
+ (MP_MOUSE_BTN0 + Event.xbutton.button - 1)
+ | MP_KEY_STATE_UP);
break;
case PropertyNotify: {
char *name = XGetAtomName(display, Event.xproperty.atom);
@@ -783,12 +783,12 @@ int vo_x11_check_events(struct vo *vo)
break;
case DestroyNotify:
mp_msg(MSGT_VO, MSGL_WARN, "Our window was destroyed, exiting\n");
- mplayer_put_key(vo->key_fifo, MP_KEY_CLOSE_WIN);
+ mp_input_put_key(vo->input_ctx, MP_KEY_CLOSE_WIN);
break;
case ClientMessage:
if (Event.xclient.message_type == x11->XAWM_PROTOCOLS &&
Event.xclient.data.l[0] == x11->XAWM_DELETE_WINDOW)
- mplayer_put_key(vo->key_fifo, MP_KEY_CLOSE_WIN);
+ mp_input_put_key(vo->input_ctx, MP_KEY_CLOSE_WIN);
break;
default:
if (Event.type == x11->ShmCompletionEvent) {