From 86db163a96e0471c6f49da7c1250cc9bde48fdfb Mon Sep 17 00:00:00 2001 From: dec05eba Date: Tue, 15 Dec 2020 00:59:47 +0100 Subject: Matrix: keep image/video open. Need to manually close. Fixes auto close of images --- include/VideoPlayer.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include/VideoPlayer.hpp') diff --git a/include/VideoPlayer.hpp b/include/VideoPlayer.hpp index abd715a..51985e6 100644 --- a/include/VideoPlayer.hpp +++ b/include/VideoPlayer.hpp @@ -36,7 +36,7 @@ namespace QuickMedia { }; // @event_callback is called from another thread - VideoPlayer(bool use_tor, bool no_video, bool use_system_mpv_config, bool resume_playback, EventCallbackFunc event_callback, VideoPlayerWindowCreateCallback window_create_callback, const std::string &resource_root); + VideoPlayer(bool use_tor, bool no_video, bool use_system_mpv_config, bool resume_playback, bool keep_open, EventCallbackFunc event_callback, VideoPlayerWindowCreateCallback window_create_callback, const std::string &resource_root); ~VideoPlayer(); VideoPlayer(const VideoPlayer&) = delete; VideoPlayer& operator=(const VideoPlayer&) = delete; @@ -77,6 +77,7 @@ namespace QuickMedia { bool no_video; bool use_system_mpv_config; bool resume_playback; + bool keep_open; pid_t video_process_id; int ipc_socket; bool connected_to_ipc; -- cgit v1.2.3