summaryrefslogtreecommitdiff
path: root/libavcodec/pngdec.c
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2017-07-16 13:46:16 +0200
committerLuca Barbato <lu_zero@gentoo.org>2017-08-21 09:23:44 +0200
commit9f5b77c16f4da6248b57f0601364d9c762c620c2 (patch)
treeb7c66591521d399c3a08318c74c5f9ed8b711ea2 /libavcodec/pngdec.c
parent4c0588b4562abad5540f6a5435c62828de9e4fdf (diff)
png: Report more details regarding unsupported pixel formats
Diffstat (limited to 'libavcodec/pngdec.c')
-rw-r--r--libavcodec/pngdec.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/pngdec.c b/libavcodec/pngdec.c
index 927248f2e3..7dc5c283d4 100644
--- a/libavcodec/pngdec.c
+++ b/libavcodec/pngdec.c
@@ -521,6 +521,9 @@ static int decode_frame(AVCodecContext *avctx,
s->color_type == PNG_COLOR_TYPE_GRAY_ALPHA) {
avctx->pix_fmt = AV_PIX_FMT_YA16BE;
} else {
+ avpriv_report_missing_feature(avctx,
+ "Bit depth %d color type %d",
+ s->bit_depth, s->color_type);
goto fail;
}