From 9bfdd8524e4d3657be4057798bd4f015322827b2 Mon Sep 17 00:00:00 2001 From: Niklas Haas Date: Mon, 30 Jan 2023 20:34:55 +0100 Subject: avfilter/vf_libplacebo: suppress cast warning This warning was introduced when ee65039 removed the cast. --- libavfilter/vf_libplacebo.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'libavfilter/vf_libplacebo.c') diff --git a/libavfilter/vf_libplacebo.c b/libavfilter/vf_libplacebo.c index d3c62d12a4..12abca4cc7 100644 --- a/libavfilter/vf_libplacebo.c +++ b/libavfilter/vf_libplacebo.c @@ -262,8 +262,7 @@ static int init_vulkan(AVFilterContext *avctx) return AVERROR(EINVAL); } - avhwctx = avctx->hw_device_ctx->data; - + avhwctx = (AVHWDeviceContext *) avctx->hw_device_ctx->data; if (avhwctx->type != AV_HWDEVICE_TYPE_VULKAN) { av_log(s, AV_LOG_ERROR, "Expected vulkan hwdevice for vf_libplacebo, got %s.\n", av_hwdevice_get_type_name(avhwctx->type)); -- cgit v1.2.1