summaryrefslogtreecommitdiffstats
path: root/video/out
diff options
context:
space:
mode:
Diffstat (limited to 'video/out')
-rw-r--r--video/out/vo_opengl_cb.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/video/out/vo_opengl_cb.c b/video/out/vo_opengl_cb.c
index 7e95e8bd31..e46f4d6ff7 100644
--- a/video/out/vo_opengl_cb.c
+++ b/video/out/vo_opengl_cb.c
@@ -242,8 +242,10 @@ int mpv_opengl_cb_uninit_gl(struct mpv_opengl_cb_context *ctx)
ctx->hwdec = NULL;
hwdec_devices_destroy(ctx->hwdec_devs);
ctx->hwdec_devs = NULL;
- ra_ctx_destroy(&ctx->ra_ctx);
+ ra_gl_ctx_uninit(ctx->ra_ctx);
+ talloc_free(ctx->ra_ctx);
talloc_free(ctx->gl);
+ ctx->ra_ctx = NULL;
ctx->gl = NULL;
return 0;
}