[FFmpeg-cvslog] avfilter/vf_libplacebo: suppress cast warning
Niklas Haas
git at videolan.org
Mon Jan 30 21:37:16 EET 2023
ffmpeg | branch: master | Niklas Haas <git at haasn.dev> | Mon Jan 30 20:34:55 2023 +0100| [9bfdd8524e4d3657be4057798bd4f015322827b2] | committer: Niklas Haas
avfilter/vf_libplacebo: suppress cast warning
This warning was introduced when ee65039 removed the cast.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9bfdd8524e4d3657be4057798bd4f015322827b2
---
libavfilter/vf_libplacebo.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
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));
More information about the ffmpeg-cvslog
mailing list