From 1106a2c5dd7e45dc0c559250a4d060ab496e3f8a Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Sun, 17 Apr 2016 20:42:10 +0200 Subject: [PATCH] lavc/webp: Print a warning for unsupported chunks. --- libavcodec/webp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/webp.c b/libavcodec/webp.c index 81b2e91211..e715c4b164 100644 --- a/libavcodec/webp.c +++ b/libavcodec/webp.c @@ -1500,7 +1500,7 @@ exif_end: case MKTAG('A', 'N', 'M', 'F'): case MKTAG('X', 'M', 'P', ' '): AV_WL32(chunk_str, chunk_type); - av_log(avctx, AV_LOG_VERBOSE, "skipping unsupported chunk: %s\n", + av_log(avctx, AV_LOG_WARNING, "skipping unsupported chunk: %s\n", chunk_str); bytestream2_skip(&gb, chunk_size); break;