summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-02-21 14:31:51 +0100
committerwm4 <wm4@nowhere>2017-02-21 15:39:44 +0100
commiteae12bf9637df1d2b9077a9d3666cd55e7b09459 (patch)
tree7b90965a73150cf6b2eb374891930d02812846b6
parent3cd29ca0318cfab04d155ea8323e7b4c84010b79 (diff)
downloadmpv-eae12bf9637df1d2b9077a9d3666cd55e7b09459.tar.bz2
mpv-eae12bf9637df1d2b9077a9d3666cd55e7b09459.tar.xz
vo: fix subtleties in the redrawing logic
This fixes a race condition created by the previous commit, and possibly others. Sometimes interpolated frames weren't redrawn as uninterpolated ones. The problem is that redrawing/drawing a frame can't reset the VO want_redraw flags, because logically these have to happen after the core acknowledged and explicitly reissued a redraw. The core needs to be involved because the OSD text and drawings could depend on the playback or window state. Change it such that it always goes through the core. Also, VOs inconsistently called vo_wakeup() when setting want_redraw, which is also taken care of by this commit.
-rw-r--r--video/out/vo.c17
-rw-r--r--video/out/vo_opengl.c4
-rw-r--r--video/out/vo_opengl_cb.c1
3 files changed, 12 insertions, 10 deletions
diff --git a/video/out/vo.c b/video/out/vo.c
index 3eb338d2d7..1b71212f25 100644
--- a/video/out/vo.c
+++ b/video/out/vo.c
@@ -839,8 +839,6 @@ static bool render_frame(struct vo *vo)
if (in->dropped_frame) {
MP_STATS(vo, "drop-vo");
} else {
- vo->want_redraw = false;
- in->want_redraw = false;
in->request_redraw = false;
}
@@ -859,14 +857,11 @@ static void do_redraw(struct vo *vo)
{
struct vo_internal *in = vo->in;
- vo->want_redraw = false;
-
if (!vo->config_ok)
return;
pthread_mutex_lock(&in->lock);
in->request_redraw = false;
- in->want_redraw = false;
bool full_redraw = in->dropped_frame;
struct vo_frame *frame = NULL;
if (!vo->driver->untimed)
@@ -901,6 +896,7 @@ static void *vo_thread(void *ptr)
{
struct vo *vo = ptr;
struct vo_internal *in = vo->in;
+ bool vo_paused = false;
mpthread_set_name("vo");
@@ -920,6 +916,7 @@ static void *vo_thread(void *ptr)
bool working = render_frame(vo);
int64_t now = mp_time_us();
int64_t wait_until = now + (working ? 0 : (int64_t)1e9);
+
pthread_mutex_lock(&in->lock);
if (in->wakeup_pts) {
if (in->wakeup_pts > now) {
@@ -930,6 +927,7 @@ static void *vo_thread(void *ptr)
}
}
if (vo->want_redraw && !in->want_redraw) {
+ vo->want_redraw = false;
in->want_redraw = true;
wakeup_core(vo);
}
@@ -939,6 +937,7 @@ static void *vo_thread(void *ptr)
bool send_pause = in->paused != vo_paused;
vo_paused = in->paused;
pthread_mutex_unlock(&in->lock);
+
if (send_reset)
vo->driver->control(vo, VOCTRL_RESET, NULL);
if (send_pause)
@@ -947,6 +946,9 @@ static void *vo_thread(void *ptr)
do_redraw(vo); // now is a good time
continue;
}
+ if (vo->want_redraw) // might have been set by VOCTRLs
+ wait_until = 0;
+
wait_vo(vo, wait_until);
}
forget_frames(vo); // implicitly synchronized
@@ -962,8 +964,10 @@ void vo_set_paused(struct vo *vo, bool paused)
pthread_mutex_lock(&in->lock);
if (in->paused != paused) {
in->paused = paused;
- if (in->paused && in->dropped_frame)
+ if (in->paused && in->dropped_frame) {
in->request_redraw = true;
+ wakeup_core(vo);
+ }
reset_vsync_timings(vo);
wakeup_locked(vo);
}
@@ -992,6 +996,7 @@ void vo_redraw(struct vo *vo)
pthread_mutex_lock(&in->lock);
if (!in->request_redraw) {
in->request_redraw = true;
+ in->want_redraw = false;
wakeup_locked(vo);
}
pthread_mutex_unlock(&in->lock);
diff --git a/video/out/vo_opengl.c b/video/out/vo_opengl.c
index 4917a251c6..419631a0df 100644
--- a/video/out/vo_opengl.c
+++ b/video/out/vo_opengl.c
@@ -295,10 +295,8 @@ static int control(struct vo *vo, uint32_t request, void *data)
gl_video_reset(p->renderer);
return true;
case VOCTRL_PAUSE:
- if (gl_video_showing_interpolated_frame(p->renderer)) {
+ if (gl_video_showing_interpolated_frame(p->renderer))
vo->want_redraw = true;
- vo_wakeup(vo);
- }
return true;
case VOCTRL_PERFORMANCE_DATA:
*(struct voctrl_performance_data *)data = gl_video_perfdata(p->renderer);
diff --git a/video/out/vo_opengl_cb.c b/video/out/vo_opengl_cb.c
index 9ecdf5eaed..3dd8a03101 100644
--- a/video/out/vo_opengl_cb.c
+++ b/video/out/vo_opengl_cb.c
@@ -441,7 +441,6 @@ static int control(struct vo *vo, uint32_t request, void *data)
return VO_TRUE;
case VOCTRL_PAUSE:
vo->want_redraw = true;
- vo_wakeup(vo);
return VO_TRUE;
case VOCTRL_GET_EQUALIZER: {
struct voctrl_get_equalizer_args *args = data;