mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-30 06:50:44 +00:00
avcodec/jpeg2000dec: Print what is found in place of EPH if EPH is not found
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
5abd4a9323
commit
c56ba5c270
@ -994,7 +994,7 @@ static int jpeg2000_decode_packet(Jpeg2000DecoderContext *s, Jpeg2000Tile *tile,
|
||||
if (bytestream2_peek_be16(&s->g) == JPEG2000_EPH)
|
||||
bytestream2_skip(&s->g, 2);
|
||||
else
|
||||
av_log(s->avctx, AV_LOG_ERROR, "EPH marker not found.\n");
|
||||
av_log(s->avctx, AV_LOG_ERROR, "EPH marker not found. instead %X\n", bytestream2_peek_be32(&s->g));
|
||||
}
|
||||
|
||||
for (bandno = 0; bandno < rlevel->nbands; bandno++) {
|
||||
|
Loading…
Reference in New Issue
Block a user