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

avcodec/vulkan_{av1, h264, hevc}: demote per frame logs to AV_LOG_DEBUG

Matches vaapi and software decoding behavior

Signed-off-by: llyyr <llyyr.public@gmail.com>
This commit is contained in:
llyyr
2025-04-20 10:04:15 +05:30
committed by Lynne
parent 7cd1edeaa4
commit db0e4eb845
3 changed files with 3 additions and 3 deletions

View File

@ -626,7 +626,7 @@ static int vk_av1_end_frame(AVCodecContext *avctx)
rav[i] = ap->ref_src[i]->f; rav[i] = ap->ref_src[i]->f;
} }
av_log(avctx, AV_LOG_VERBOSE, "Decoding frame, %"SIZE_SPECIFIER" bytes, %i tiles\n", av_log(avctx, AV_LOG_DEBUG, "Decoding frame, %"SIZE_SPECIFIER" bytes, %i tiles\n",
vp->slices_size, ap->av1_pic_info.tileCount); vp->slices_size, ap->av1_pic_info.tileCount);
return ff_vk_decode_frame(avctx, pic->f, vp, rav, rvp); return ff_vk_decode_frame(avctx, pic->f, vp, rav, rvp);

View File

@ -556,7 +556,7 @@ static int vk_h264_end_frame(AVCodecContext *avctx)
rav[i] = hp->ref_src[i]->f; rav[i] = hp->ref_src[i]->f;
} }
av_log(avctx, AV_LOG_VERBOSE, "Decoding frame, %"SIZE_SPECIFIER" bytes, %i slices\n", av_log(avctx, AV_LOG_DEBUG, "Decoding frame, %"SIZE_SPECIFIER" bytes, %i slices\n",
vp->slices_size, hp->h264_pic_info.sliceCount); vp->slices_size, hp->h264_pic_info.sliceCount);
return ff_vk_decode_frame(avctx, pic->f, vp, rav, rvp); return ff_vk_decode_frame(avctx, pic->f, vp, rav, rvp);

View File

@ -921,7 +921,7 @@ static int vk_hevc_end_frame(AVCodecContext *avctx)
rvp[i] = &rfhp->vp; rvp[i] = &rfhp->vp;
} }
av_log(avctx, AV_LOG_VERBOSE, "Decoding frame, %"SIZE_SPECIFIER" bytes, %i slices\n", av_log(avctx, AV_LOG_DEBUG, "Decoding frame, %"SIZE_SPECIFIER" bytes, %i slices\n",
vp->slices_size, hp->h265_pic_info.sliceSegmentCount); vp->slices_size, hp->h265_pic_info.sliceSegmentCount);
return ff_vk_decode_frame(avctx, pic->f, vp, rav, rvp); return ff_vk_decode_frame(avctx, pic->f, vp, rav, rvp);