mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-06-19 19:03:00 +02:00
jpeg2000: Do not warn about known and skippable markers
Matches the openjpeg behaviour.
This commit is contained in:
@@ -1290,6 +1290,10 @@ static int jpeg2000_read_main_headers(Jpeg2000DecoderContext *s)
|
||||
properties = s->tile[s->curtileno].properties;
|
||||
}
|
||||
break;
|
||||
case JPEG2000_PLT:
|
||||
// the PLT marker is ignored
|
||||
case JPEG2000_PLM:
|
||||
// the PLM marker is ignored
|
||||
case JPEG2000_COM:
|
||||
// the comment is ignored
|
||||
bytestream2_skip(&s->g, len - 2);
|
||||
|
||||
Reference in New Issue
Block a user