]> git.sesse.net Git - ffmpeg/commitdiff
hevc: store profile and level in AVCodecContext
authorGildas Cocherel <gildas.cocherel@laposte.net>
Sat, 14 Dec 2013 14:50:28 +0000 (15:50 +0100)
committerAnton Khirnov <anton@khirnov.net>
Fri, 20 Dec 2013 18:36:24 +0000 (19:36 +0100)
Signed-off-by: Anton Khirnov <anton@khirnov.net>
libavcodec/hevc.c

index 530abdc26ec8878a1f86148b586153b1bbaf0b88..784e58bec7875849bb223c0d57eb63d3cfa1d9eb 100644 (file)
@@ -495,6 +495,9 @@ static int hls_slice_header(HEVCContext *s)
         s->max_ra     = INT_MAX;
     }
 
+    s->avctx->profile = s->sps->ptl.general_ptl.profile_idc;
+    s->avctx->level   = s->sps->ptl.general_ptl.level_idc;
+
     sh->dependent_slice_segment_flag = 0;
     if (!sh->first_slice_in_pic_flag) {
         int slice_address_length;