summaryrefslogtreecommitdiffstats
path: root/video/out/vo.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/vo.c')
-rw-r--r--video/out/vo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/video/out/vo.c b/video/out/vo.c
index b2aba3af7a..6586ebc63e 100644
--- a/video/out/vo.c
+++ b/video/out/vo.c
@@ -891,7 +891,7 @@ bool vo_render_frame_external(struct vo *vo)
update_vsync_timing_after_swap(vo);
}
- if (vo->driver->caps & VO_CAP_NOREDRAW) {
+ if (vo->driver->caps & VO_CAP_NORETAIN) {
talloc_free(in->current_frame);
in->current_frame = NULL;
}
@@ -919,7 +919,7 @@ static void do_redraw(struct vo *vo)
{
struct vo_internal *in = vo->in;
- if (!vo->config_ok || (vo->driver->caps & VO_CAP_NOREDRAW))
+ if (!vo->config_ok || (vo->driver->caps & VO_CAP_NORETAIN))
return;
pthread_mutex_lock(&in->lock);