You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
img2enc: show first 4 bytes if a malformed jpeg2000 codestream is detected
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -442,7 +442,7 @@ static int write_packet(AVFormatContext *s, AVPacket *pkt)
|
||||
(!st->codec->extradata_size &&
|
||||
AV_RL32(pkt->data+4) != MKTAG('j','P',' ',' '))){ // signature
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user