lavc/webp: Print a warning for unsupported chunks.

This commit is contained in:
Carl Eugen Hoyos 2016-04-17 20:42:10 +02:00
parent 4b23a8137f
commit 1106a2c5dd

View File

@ -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;