mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 10:41:04 +00:00
vaapisink: post message for application for unhandled keyboard/mouse events
Makes (most) keyboard shortcuts work in gst-play-1.0 when the video window has focus.
This commit is contained in:
parent
26abec3e26
commit
38fbe58999
1 changed files with 7 additions and 1 deletions
|
@ -865,7 +865,13 @@ gst_vaapisink_navigation_send_event (GstNavigation * navigation,
|
|||
(gdouble) y * yscale, NULL);
|
||||
}
|
||||
|
||||
gst_pad_send_event (peer, event);
|
||||
if (!gst_pad_send_event (peer, gst_event_ref (event))) {
|
||||
/* If upstream didn't handle the event we'll post a message with it
|
||||
* for the application in case it wants to do something with it */
|
||||
gst_element_post_message (GST_ELEMENT_CAST (sink),
|
||||
gst_navigation_message_new_event (GST_OBJECT_CAST (sink), event));
|
||||
}
|
||||
gst_event_unref (event);
|
||||
gst_object_unref (peer);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue