summaryrefslogtreecommitdiffstats
path: root/wscript_build.py
diff options
context:
space:
mode:
authorPhilip Langdale <philipl@overt.org>2022-07-31 11:50:57 -0700
committerPhilip Langdale <github.philipl@overt.org>2022-08-03 16:56:17 -0700
commit06900eef63c112fc9404f649daf31de334711bbc (patch)
treec0ac337a38b5667c064bf597096cd53808acb298 /wscript_build.py
parent490e263529a5e49e8a7b6d9c6c21a1312f3ac1a4 (diff)
downloadmpv-06900eef63c112fc9404f649daf31de334711bbc.tar.bz2
mpv-06900eef63c112fc9404f649daf31de334711bbc.tar.xz
hwdec/vaapi: rename interops to reflect more general use
This is the first in a series of changes that will introduce a drmprime hwdec. As our vaapi hwdec is based around exporting surfaces as drmprime dmabufs, we've actually got a lot of useful code already in place in the GL/PL interops. I'm going to reorganise and adjust this code to make the interops usable with the new hwdec as well. The first step is to rename the files and functions. There are no functional or other changes here. They will come next.
Diffstat (limited to 'wscript_build.py')
-rw-r--r--wscript_build.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/wscript_build.py b/wscript_build.py
index 86c1f93866..93d4ddd992 100644
--- a/wscript_build.py
+++ b/wscript_build.py
@@ -471,8 +471,8 @@ def build(ctx):
( "video/out/hwdec/hwdec_cuda_gl.c", "cuda-interop && gl" ),
( "video/out/hwdec/hwdec_cuda_vk.c", "cuda-interop && vulkan" ),
( "video/out/hwdec/hwdec_vaapi.c", "vaapi-egl || vaapi-libplacebo" ),
- ( "video/out/hwdec/hwdec_vaapi_gl.c", "vaapi-egl" ),
- ( "video/out/hwdec/hwdec_vaapi_pl.c", "vaapi-libplacebo" ),
+ ( "video/out/hwdec/dmabuf_interop_gl.c", "vaapi-egl" ),
+ ( "video/out/hwdec/dmabuf_interop_pl.c", "vaapi-libplacebo" ),
( "video/out/libmpv_sw.c" ),
( "video/out/placebo/ra_pl.c", "libplacebo" ),
( "video/out/placebo/utils.c", "libplacebo" ),