From 290341c77765ecbd44beedbd50f18f45638b78db Mon Sep 17 00:00:00 2001 From: wm4 Date: Tue, 13 Mar 2018 12:54:48 +0100 Subject: vo: pass through framedrop flag differently There is some sort-of awkwardness here, because option access needs to happen in a synchronized manner, and the framedrop flag is not in the VO option struct. Remove the mp_read_option_raw() call and the awkward change notification via VO_EVENT_WIN_STATE from command.c, and pass it through as new vo_frame flag. --- video/out/vo.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'video/out/vo.h') diff --git a/video/out/vo.h b/video/out/vo.h index 4e21221c74..4a54914962 100644 --- a/video/out/vo.h +++ b/video/out/vo.h @@ -236,6 +236,8 @@ struct vo_frame { bool still; // Frames are output as fast as possible, with implied vsync blocking. bool display_synced; + // Dropping the frame is allowed if the VO is behind. + bool can_drop; // The current frame to be drawn. // Warning: When OSD should be redrawn in --force-window --idle mode, this // can be NULL. The VO should draw a black background, OSD on top. -- cgit v1.2.3