1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-13 21:28:01 +02:00

avcodec/vlc: use logctx instead of NULL

This commit is contained in:
Paul B Mahol 2023-09-26 12:39:24 +02:00
parent 768704b640
commit 56085e057f

View File

@ -421,7 +421,7 @@ static int vlc_multi_gen(VLC_MULTI_ELEM *table, const VLC *single,
add_level(table, nb_elems, nb_codes, numbits, buf,
0, 0, FFMIN(maxbits, numbits), 0, minbits, max, count, &info);
av_log(NULL, AV_LOG_DEBUG, "Joint: %d/%d/%d/%d/%d codes min=%ubits max=%u\n",
av_log(logctx, AV_LOG_DEBUG, "Joint: %d/%d/%d/%d/%d codes min=%ubits max=%u\n",
count[0], count[1], count[2], count[3], count[4], minbits, max);
return 0;