Module: libav Branch: master Commit: db53a2306f62f05faa67e6f3c60ee55a9b8e4776
Author: Luca Barbato <[email protected]> Committer: Luca Barbato <[email protected]> Date: Fri Sep 11 03:00:36 2015 +0200 jpeg2000: Do not warn about known and skippable markers Matches the openjpeg behaviour. --- libavcodec/jpeg2000dec.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libavcodec/jpeg2000dec.c b/libavcodec/jpeg2000dec.c index 6946975..f5d5daf 100644 --- a/libavcodec/jpeg2000dec.c +++ b/libavcodec/jpeg2000dec.c @@ -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); _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
