summaryrefslogtreecommitdiff
path: root/libavcodec/hevc_ps.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2015-07-18 05:12:00 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2015-07-18 05:12:00 +0200
commitf8e4d37983f842154b33a1f9e1352cb580d5af10 (patch)
tree6343e84cbdbaf7bc23b8357f717c102277ca9077 /libavcodec/hevc_ps.c
parentf6870495e1589f0931f62bdf777fc0ad299e9c14 (diff)
avcodec/hevc_ps: Also print depth in failure path of map_pixel_format()
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/hevc_ps.c')
-rw-r--r--libavcodec/hevc_ps.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/hevc_ps.c b/libavcodec/hevc_ps.c
index 8d30d5be9d..016dec0ddd 100644
--- a/libavcodec/hevc_ps.c
+++ b/libavcodec/hevc_ps.c
@@ -774,8 +774,8 @@ static int map_pixel_format(AVCodecContext *avctx, HEVCSPS *sps)
av_log(avctx, AV_LOG_ERROR,
"4:2:0, 4:2:2, 4:4:4 supports are currently specified for 8, 10 and 12 bits.\n");
av_log(avctx, AV_LOG_ERROR,
- "chroma_format_idc is %d",
- sps->chroma_format_idc);
+ "chroma_format_idc is %d, depth is %d",
+ sps->chroma_format_idc, sps->bit_depth);
return AVERROR_INVALIDDATA;
}