summaryrefslogtreecommitdiff
path: root/libavcodec/webp.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2016-04-17 20:42:10 +0200
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2016-04-17 20:42:10 +0200
commit1106a2c5dd7e45dc0c559250a4d060ab496e3f8a (patch)
treeca7729c4772a1e2b7f16b3e8e5afb01269ff7bac /libavcodec/webp.c
parent4b23a8137fd38f06a07e3a679dc956b077e1cf2a (diff)
lavc/webp: Print a warning for unsupported chunks.
Diffstat (limited to 'libavcodec/webp.c')
-rw-r--r--libavcodec/webp.c2
1 files changed, 1 insertions, 1 deletions
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;