From 7e87feaf15d5ab99473d13856bb247a0ed10e521 Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 1 Dec 2017 05:09:05 +0100 Subject: vo_gpu: hwdec: remove redundant fields The testing_only field is not referenced anymore with vaglx removed and the previous commit dropping all uses. The ra_hwdec_driver.api field became unused with the previous commit, but all hwdec interop drivers still initialized it. Since this touches highly OS-specific code, build regressions are possible (plus the previous commit might break hw decoding at runtime). At least hwdec_cuda.c still used the .api field, other than initializing it. --- video/out/opengl/hwdec_cuda.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'video/out/opengl/hwdec_cuda.c') diff --git a/video/out/opengl/hwdec_cuda.c b/video/out/opengl/hwdec_cuda.c index 321826eb49..b74f02f707 100644 --- a/video/out/opengl/hwdec_cuda.c +++ b/video/out/opengl/hwdec_cuda.c @@ -160,7 +160,7 @@ static int cuda_init(struct ra_hwdec *hw) goto error; p->hwctx = (struct mp_hwdec_ctx) { - .type = hw->driver->api, + .type = HWDEC_CUDA, .ctx = p->decode_ctx, .av_device_ref = hw_device_ctx, }; @@ -327,7 +327,6 @@ static int mapper_map(struct ra_hwdec_mapper *mapper) const struct ra_hwdec_driver ra_hwdec_cuda = { .name = "cuda-nvdec", - .api = HWDEC_CUDA, .imgfmts = {IMGFMT_CUDA, 0}, .priv_size = sizeof(struct priv_owner), .init = cuda_init, -- cgit v1.2.3