[FFmpeg-cvslog] hevc: fix PTL parsing

Guillaume Martres git at videolan.org
Sat Dec 14 03:37:24 CET 2013


ffmpeg | branch: master | Guillaume Martres <smarter at ubuntu.com> | Fri Dec 13 20:05:22 2013 +0100| [c6afd0aacc314bbada6021b685e35d79cfa5edcc] | committer: Michael Niedermayer

hevc: fix PTL parsing

This was broken in commit 36658c978f5d7df2ce556075946f3a80f7eca753

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c6afd0aacc314bbada6021b685e35d79cfa5edcc
---

 libavcodec/hevc_ps.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavcodec/hevc_ps.c b/libavcodec/hevc_ps.c
index 80e7311..858b8bf 100644
--- a/libavcodec/hevc_ps.c
+++ b/libavcodec/hevc_ps.c
@@ -220,7 +220,6 @@ static int decode_profile_tier_level(HEVCContext *s,  ProfileTierLevel *ptl)
         return -1;
     if (get_bits(gb, 12) != 0) // XXX_reserved_zero_44bits[32..43]
         return -1;
-    ptl->level_idc = get_bits(gb, 8);
     return 0;
 }
 
@@ -230,6 +229,7 @@ static int parse_ptl(HEVCContext *s, PTL *ptl, int max_num_sub_layers)
     HEVCLocalContext *lc = s->HEVClc;
     GetBitContext *gb = &lc->gb;
     decode_profile_tier_level(s, &ptl->general_PTL);
+    ptl->general_PTL.level_idc = get_bits(gb, 8);
 
     for (i = 0; i < max_num_sub_layers - 1; i++) {
         ptl->sub_layer_profile_present_flag[i] = get_bits1(gb);
@@ -239,10 +239,10 @@ static int parse_ptl(HEVCContext *s, PTL *ptl, int max_num_sub_layers)
         for (i = max_num_sub_layers - 1; i < 8; i++)
             skip_bits(gb, 2); // reserved_zero_2bits[i]
     for (i = 0; i < max_num_sub_layers - 1; i++) {
-        if (ptl->sub_layer_profile_present_flag[i]) {
+        if (ptl->sub_layer_profile_present_flag[i])
             decode_profile_tier_level(s, &ptl->sub_layer_PTL[i]);
+        if (ptl->sub_layer_level_present_flag[i])
             ptl->sub_layer_PTL[i].level_idc = get_bits(gb, 8);
-        }
     }
     return 0;
 }



More information about the ffmpeg-cvslog mailing list