diff options
author | Mickaƫl Raulet <mraulet@insa-rennes.fr> | 2013-10-28 09:46:05 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-10-28 10:37:11 +0100 |
commit | a21839149cddf2fa6d4cfc37d066cdb68a2ac8aa (patch) | |
tree | 1aec1b19ea10250732bce172badb502620644a07 /libavcodec | |
parent | cb148e56dc1573fdccb5dc3d2c3748f59f6b0fd5 (diff) | |
download | ffmpeg-a21839149cddf2fa6d4cfc37d066cdb68a2ac8aa.tar.gz |
hevc: add profile idc warning
(cherry picked from commit 15f7a481fd19529b13631bfff5b3d65bfe5729d5)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/hevc_ps.c | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/libavcodec/hevc_ps.c b/libavcodec/hevc_ps.c index 4318af01e8..8fe6c8acbe 100644 --- a/libavcodec/hevc_ps.c +++ b/libavcodec/hevc_ps.c @@ -191,14 +191,22 @@ int ff_hevc_decode_short_term_rps(HEVCContext *s, ShortTermRPS *rps, return 0; } -static int decode_profile_tier_level(HEVCLocalContext *lc, PTL *ptl, int max_num_sub_layers) +static int decode_profile_tier_level(HEVCContext *s, PTL *ptl, int max_num_sub_layers) { - int i, j; + HEVCLocalContext *lc = s->HEVClc; GetBitContext *gb = &lc->gb; + int i, j; ptl->general_profile_space = get_bits(gb, 2); ptl->general_tier_flag = get_bits1(gb); ptl->general_profile_idc = get_bits(gb, 5); + if (ptl->general_profile_idc == 1) + av_log(s->avctx, AV_LOG_DEBUG, "Main profile bitstream\n"); + else if (ptl->general_profile_idc == 2) + av_log(s->avctx, AV_LOG_DEBUG, "Main10 profile bitstream\n"); + else + av_log(s->avctx, AV_LOG_WARNING, "No profile indication! (%d)\n", ptl->general_profile_idc); + for (i = 0; i < 32; i++) ptl->general_profile_compatibility_flag[i] = get_bits1(gb); skip_bits1(gb);// general_progressive_source_flag @@ -357,7 +365,7 @@ int ff_hevc_decode_nal_vps(HEVCContext *s) goto err; } - if (decode_profile_tier_level(s->HEVClc, &vps->ptl, vps->vps_max_sub_layers) < 0) { + if (decode_profile_tier_level(s, &vps->ptl, vps->vps_max_sub_layers) < 0) { av_log(s->avctx, AV_LOG_ERROR, "Error decoding profile tier level.\n"); goto err; } @@ -630,7 +638,7 @@ int ff_hevc_decode_nal_sps(HEVCContext *s) } skip_bits1(gb); // temporal_id_nesting_flag - if (decode_profile_tier_level(s->HEVClc, &sps->ptl, sps->max_sub_layers) < 0) { + if (decode_profile_tier_level(s, &sps->ptl, sps->max_sub_layers) < 0) { av_log(s->avctx, AV_LOG_ERROR, "error decoding profile tier level\n"); ret = AVERROR_INVALIDDATA; goto err; |