mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 01:45:33 +00:00
tools: gst-play: quit on Q or Esc key
This commit is contained in:
parent
1d40b1d2bb
commit
9011bc1b54
1 changed files with 10 additions and 0 deletions
|
@ -550,6 +550,10 @@ keyboard_cb (const gchar * key_input, gpointer user_data)
|
||||||
case ' ':
|
case ' ':
|
||||||
toggle_paused (play);
|
toggle_paused (play);
|
||||||
break;
|
break;
|
||||||
|
case 'q':
|
||||||
|
case 'Q':
|
||||||
|
g_main_loop_quit (play->loop);
|
||||||
|
break;
|
||||||
case '>':
|
case '>':
|
||||||
if (!play_next (play)) {
|
if (!play_next (play)) {
|
||||||
g_print ("\nReached end of play list.\n");
|
g_print ("\nReached end of play list.\n");
|
||||||
|
@ -560,6 +564,11 @@ keyboard_cb (const gchar * key_input, gpointer user_data)
|
||||||
play_prev (play);
|
play_prev (play);
|
||||||
break;
|
break;
|
||||||
case 27: /* ESC */
|
case 27: /* ESC */
|
||||||
|
if (key_input[1] == '\0') {
|
||||||
|
g_main_loop_quit (play->loop);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
/* fall through */
|
||||||
default:
|
default:
|
||||||
if (strcmp (key_input, GST_PLAY_KB_ARROW_RIGHT) == 0) {
|
if (strcmp (key_input, GST_PLAY_KB_ARROW_RIGHT) == 0) {
|
||||||
relative_seek (play, +0.08);
|
relative_seek (play, +0.08);
|
||||||
|
@ -681,5 +690,6 @@ main (int argc, char **argv)
|
||||||
/* clean up */
|
/* clean up */
|
||||||
play_free (play);
|
play_free (play);
|
||||||
|
|
||||||
|
g_print ("\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue