This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 16ef68f90091f5195efe435aa9037c0a0c0f38c4 Author: Kacper Michajłow <[email protected]> AuthorDate: Tue Aug 11 16:09:00 2026 +0200 Commit: Kacper Michajłow <[email protected]> CommitDate: Wed Aug 12 17:21:06 2026 +0200 avutil/hwcontext_d3d12va: fix unused label warning with UWP Signed-off-by: Kacper Michajłow <[email protected]> --- libavutil/hwcontext_d3d12va.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavutil/hwcontext_d3d12va.c b/libavutil/hwcontext_d3d12va.c index 4f2a7393a0..f9d1721cd6 100644 --- a/libavutil/hwcontext_d3d12va.c +++ b/libavutil/hwcontext_d3d12va.c @@ -648,9 +648,11 @@ static int d3d12va_load_functions(AVHWDeviceContext *hwdev) #endif return 0; +#if !HAVE_UWP fail: av_log(hwdev, AV_LOG_ERROR, "Failed to load D3D12 library or its functions\n"); return AVERROR_UNKNOWN; +#endif } static void d3d12va_device_free(AVHWDeviceContext *hwdev) _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
