1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-04-08 16:54:03 +02:00

vulkan_decode: add \n to error message

This commit is contained in:
Lynne 2024-08-10 18:20:58 +02:00
parent 5f0f1f7b7a
commit 1c05661ec4
No known key found for this signature in database
GPG Key ID: A2FEA5F03F034464

View File

@ -88,7 +88,7 @@ int ff_vk_update_thread_context(AVCodecContext *dst, const AVCodecContext *src)
const VkVideoProfileInfoKHR *profile = get_video_profile(ctx, dst->codec_id);
if (!profile) {
av_log(dst, AV_LOG_ERROR, "Video profile missing from frames context!");
av_log(dst, AV_LOG_ERROR, "Video profile missing from frames context!\n");
return AVERROR(EINVAL);
}