aboutsummaryrefslogtreecommitdiffhomepage
path: root/video/out/vo.c
diff options
context:
space:
mode:
authorGravatar Aman Gupta <aman@tmm1.net>2018-02-15 19:56:52 -0800
committerGravatar Kevin Mitchell <kevmitch@gmail.com>2018-02-17 23:01:47 -0800
commit288ed66a355ed9a0e9a5730f87c2fb60e8e546cc (patch)
tree42ba414b0478becfb1eda37abfe6aa0196e09eee /video/out/vo.c
parent0dbad9503fd4fd2d9bc3ed443ad761eaf020fdef (diff)
video: rename VO_CAP_NOREDRAW to VO_CAP_NORETAIN
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);