mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-01 12:22:09 +00:00
j2kdec: av_log formatting use %tx instead of %x
Signed-off-by: Jean First <jeanfirst@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
157f29f9a6
commit
b103156235
@ -921,7 +921,7 @@ static int decode_codestream(J2kDecoderContext *s)
|
|||||||
|
|
||||||
marker = bytestream_get_be16(&s->buf);
|
marker = bytestream_get_be16(&s->buf);
|
||||||
if(s->avctx->debug & FF_DEBUG_STARTCODE)
|
if(s->avctx->debug & FF_DEBUG_STARTCODE)
|
||||||
av_log(s->avctx, AV_LOG_DEBUG, "marker 0x%.4X at pos 0x%x\n", marker, s->buf - s->buf_start - 4);
|
av_log(s->avctx, AV_LOG_DEBUG, "marker 0x%.4X at pos 0x%tx\n", marker, s->buf - s->buf_start - 4);
|
||||||
oldbuf = s->buf;
|
oldbuf = s->buf;
|
||||||
|
|
||||||
if (marker == J2K_SOD){
|
if (marker == J2K_SOD){
|
||||||
|
Loading…
Reference in New Issue
Block a user