summaryrefslogtreecommitdiffstats
path: root/video/out/vo_drm.c
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2024-03-11 20:40:24 +0100
committersfan5 <sfan5@live.de>2024-03-16 13:27:34 +0100
commitbc8038cffd2b2181f19fa9b07a99b61eba1fe6a1 (patch)
tree6abe36b4c52134bf5dc4278329e1dae2b13fb517 /video/out/vo_drm.c
parent2893b7d0f51094bfee0cc27f3bebba8de0fd8018 (diff)
downloadmpv-bc8038cffd2b2181f19fa9b07a99b61eba1fe6a1.tar.bz2
mpv-bc8038cffd2b2181f19fa9b07a99b61eba1fe6a1.tar.xz
vo_{drm,wlshm,x11}: add support for video-target-params
Diffstat (limited to 'video/out/vo_drm.c')
-rw-r--r--video/out/vo_drm.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/video/out/vo_drm.c b/video/out/vo_drm.c
index 25ba06b683..db1981eb7a 100644
--- a/video/out/vo_drm.c
+++ b/video/out/vo_drm.c
@@ -215,6 +215,9 @@ static int reconfig(struct vo *vo, struct mp_image_params *params)
if (mp_sws_reinit(p->sws) < 0)
return -1;
+ mp_mutex_lock(&vo->params_mutex);
+ vo->target_params = &p->sws->dst; // essentially constant, so this is okay
+ mp_mutex_unlock(&vo->params_mutex);
vo->want_redraw = true;
return 0;
}