diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2015-07-14 01:33:58 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-07-14 01:33:58 +0200 |
commit | 3edc6d1cd9ef23e809a8d814dbfb589e7e1f57fe (patch) | |
tree | 8ae6d7a413a3702a4c3953e2e7cec25c81c61def | |
parent | e17a459af06e222a04b98d1ef59b12e408f061e5 (diff) | |
parent | 32c8d89c036b0e75ece74aea638df587099def0b (diff) | |
download | ffmpeg-3edc6d1cd9ef23e809a8d814dbfb589e7e1f57fe.tar.gz |
Merge commit '32c8d89c036b0e75ece74aea638df587099def0b'
* commit '32c8d89c036b0e75ece74aea638df587099def0b':
hevc: Print the non-supported chroma_format_idc
Conflicts:
libavcodec/hevc_ps.c
Merged-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavcodec/hevc_ps.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/hevc_ps.c b/libavcodec/hevc_ps.c index a91bc4ad7f..32b811f85f 100644 --- a/libavcodec/hevc_ps.c +++ b/libavcodec/hevc_ps.c @@ -773,6 +773,9 @@ static int map_pixel_format(AVCodecContext *avctx, HEVCSPS *sps) default: 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); return AVERROR_INVALIDDATA; } |