Commit 9e0438c9 authored by Michael Niedermayer's avatar Michael Niedermayer

img2enc: show first 4 bytes if a malformed jpeg2000 codestream is detected

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 0047ac14
...@@ -442,7 +442,7 @@ static int write_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -442,7 +442,7 @@ static int write_packet(AVFormatContext *s, AVPacket *pkt)
(!st->codec->extradata_size && (!st->codec->extradata_size &&
AV_RL32(pkt->data+4) != MKTAG('j','P',' ',' '))){ // signature AV_RL32(pkt->data+4) != MKTAG('j','P',' ',' '))){ // signature
error: error:
av_log(s, AV_LOG_ERROR, "malformated jpeg2000 codestream\n"); av_log(s, AV_LOG_ERROR, "malformated jpeg2000 codestream %X\n", AV_RB32(pkt->data));
return -1; return -1;
} }
} }
......
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