summaryrefslogtreecommitdiffstats
path: root/video/decode/hw_d3d11va.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-12-01 06:47:37 +0100
committerwm4 <wm4@nowhere>2017-12-01 08:01:41 +0100
commitc5fac0c2b048b695bf217ae77530269605eebfb9 (patch)
treee2ce5d58346a93173b1e1ee4d1fda152261a54b8 /video/decode/hw_d3d11va.c
parent643a1fc7de84b234d5a4723fa0ec31f9351e770b (diff)
downloadmpv-c5fac0c2b048b695bf217ae77530269605eebfb9.tar.bz2
mpv-c5fac0c2b048b695bf217ae77530269605eebfb9.tar.xz
vd_lavc: move entrypoint for hwframes_refine
The idea is to get rid of vd_lavc_hwdec, so special functionality like this has to go somewhere else. At this point, hwframes_refine is only needed for d3d11, and it doesn't do much, so for now the new callback has no context. In can be made more fancy if really needed.
Diffstat (limited to 'video/decode/hw_d3d11va.c')
-rw-r--r--video/decode/hw_d3d11va.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/video/decode/hw_d3d11va.c b/video/decode/hw_d3d11va.c
index eabb984dec..cc1d122f59 100644
--- a/video/decode/hw_d3d11va.c
+++ b/video/decode/hw_d3d11va.c
@@ -83,7 +83,6 @@ const struct vd_lavc_hwdec mp_vd_lavc_d3d11va = {
.image_format = IMGFMT_D3D11VA,
.generic_hwaccel = true,
.set_hwframes = true,
- .hwframes_refine = d3d_hwframes_refine,
};
const struct vd_lavc_hwdec mp_vd_lavc_d3d11va_copy = {
@@ -93,6 +92,5 @@ const struct vd_lavc_hwdec mp_vd_lavc_d3d11va_copy = {
.generic_hwaccel = true,
.create_dev = d3d11_create_dev,
.set_hwframes = true,
- .hwframes_refine = d3d_hwframes_refine,
.delay_queue = HWDEC_DELAY_QUEUE_COUNT,
};