dfbvideosink: Rework escape handling
Detected by a fallthrough. * Just use if/else for clarity * Remove 2002 fart joke Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8229>
This commit is contained in:
parent
45df33196f
commit
3d62f5b57b
@ -594,20 +594,17 @@ gst_dfbvideosink_event_thread (GstDfbVideoSink * dfbvideosink)
|
||||
"event buffer");
|
||||
} else { /* Handle event */
|
||||
if (event.input.type == DIET_KEYPRESS) {
|
||||
switch (event.input.key_symbol) {
|
||||
case DIKS_ESCAPE:
|
||||
{
|
||||
if (event.input.key_symbol == DIKS_ESCAPE) {
|
||||
GST_ELEMENT_ERROR (dfbvideosink, RESOURCE, OPEN_WRITE,
|
||||
("Video output device is gone."),
|
||||
("We were running fullscreen and user "
|
||||
"pressed the ESC key, stopping playback."));
|
||||
}
|
||||
default:
|
||||
} else {
|
||||
GST_DEBUG_OBJECT (dfbvideosink, "key press event %c !",
|
||||
event.input.key_symbol);
|
||||
gst_dfbvideosink_navigation_send_event
|
||||
(GST_NAVIGATION (dfbvideosink),
|
||||
gst_navigation_event_new_key_press ("prout",
|
||||
gst_navigation_event_new_key_press ("dfb",
|
||||
GST_NAVIGATION_MODIFIER_NONE));
|
||||
}
|
||||
} else if (event.input.type == DIET_BUTTONPRESS) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user