diff options
author | Vittorio Gambaletta (VittGam) <ffmpeg-dev@vittgam.net> | 2016-01-19 00:57:38 +0100 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2016-01-19 23:15:30 +0100 |
commit | acd37069aec2058821c73b85ccac2d879949f0ff (patch) | |
tree | 0cd42a5d02a7192913b7d52c869ca4c569cf50fa /ffplay.c | |
parent | cde4b99f476875f53aa1596e937691de952ab457 (diff) | |
download | ffmpeg-acd37069aec2058821c73b85ccac2d879949f0ff.tar.gz |
ffplay: toggle full screen when double-clicking the video window with the left mouse button
Now that the seek only happens with the right mouse button, it makes
sense to toggle full screen when double-clicking with the left mouse
button, like other video players do.
Signed-off-by: Vittorio Gambaletta <ffmpeg-dev@vittgam.net>
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'ffplay.c')
-rw-r--r-- | ffplay.c | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -3473,6 +3473,16 @@ static void event_loop(VideoState *cur_stream) do_exit(cur_stream); break; } + if (event.button.button == SDL_BUTTON_LEFT) { + static int64_t last_mouse_left_click = 0; + if (av_gettime_relative() - last_mouse_left_click <= 500000) { + toggle_full_screen(cur_stream); + cur_stream->force_refresh = 1; + last_mouse_left_click = 0; + } else { + last_mouse_left_click = av_gettime_relative(); + } + } case SDL_MOUSEMOTION: if (cursor_hidden) { SDL_ShowCursor(1); |