avfilter/vf_libplacebo: suppress cast warning

This warning was introduced when ee65039 removed the cast.
This commit is contained in:
Niklas Haas 2023-01-30 20:34:55 +01:00
parent 5508e04c7b
commit 9bfdd8524e
1 changed files with 1 additions and 2 deletions

View File

@ -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));