Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2015-07-14 02:33:58 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2015-07-14 02:33:58 +0300
commit3edc6d1cd9ef23e809a8d814dbfb589e7e1f57fe (patch)
tree8ae6d7a413a3702a4c3953e2e7cec25c81c61def /libavcodec/hevc_ps.c
parente17a459af06e222a04b98d1ef59b12e408f061e5 (diff)
parent32c8d89c036b0e75ece74aea638df587099def0b (diff)
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>
Diffstat (limited to 'libavcodec/hevc_ps.c')
-rw-r--r--libavcodec/hevc_ps.c3
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;
}