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
Signed by: Lynne
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);
}