Commit 6d98e2db authored by Nicolas George's avatar Nicolas George Committed by Michael Niedermayer

j2kdec: use correct printf format.

Signed-off-by: 's avatarNicolas George <nicolas.george@normalesup.org>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 7393b417
...@@ -948,7 +948,7 @@ static int decode_codestream(J2kDecoderContext *s) ...@@ -948,7 +948,7 @@ static int decode_codestream(J2kDecoderContext *s)
// the comment is ignored // the comment is ignored
s->buf += len - 2; break; s->buf += len - 2; break;
default: default:
av_log(s->avctx, AV_LOG_ERROR, "unsupported marker 0x%.4X at pos 0x%x\n", marker, s->buf - s->buf_start - 4); av_log(s->avctx, AV_LOG_ERROR, "unsupported marker 0x%.4X at pos 0x%tx\n", marker, s->buf - s->buf_start - 4);
s->buf += len - 2; break; s->buf += len - 2; break;
} }
if (s->buf - oldbuf != len || ret){ if (s->buf - oldbuf != len || ret){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment