mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-03-09 22:18:04 +00:00
jpeg2000: Do not warn about known and skippable markers
Matches the openjpeg behaviour.
This commit is contained in:
parent
9b5a4a9cce
commit
db53a2306f
@ -1290,6 +1290,10 @@ static int jpeg2000_read_main_headers(Jpeg2000DecoderContext *s)
|
|||||||
properties = s->tile[s->curtileno].properties;
|
properties = s->tile[s->curtileno].properties;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case JPEG2000_PLT:
|
||||||
|
// the PLT marker is ignored
|
||||||
|
case JPEG2000_PLM:
|
||||||
|
// the PLM marker is ignored
|
||||||
case JPEG2000_COM:
|
case JPEG2000_COM:
|
||||||
// the comment is ignored
|
// the comment is ignored
|
||||||
bytestream2_skip(&s->g, len - 2);
|
bytestream2_skip(&s->g, len - 2);
|
||||||
|
Loading…
Reference in New Issue
Block a user