avfilter/vf_libplacebo: suppress cast warning

This warning was introduced when ee65039 removed the cast.
release/6.0
Niklas Haas 2 years ago
parent 5508e04c7b
commit 9bfdd8524e
  1. 3
      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));

Loading…
Cancel
Save