diff --git a/modules/packetizer/h264_nal.c b/modules/packetizer/h264_nal.c index 351fb24a8e07f6dcf67079b31a7b4c90ca029b87..3be76cdc64df7d61491f2b0a0d01353b2f2d6d1b 100644 --- a/modules/packetizer/h264_nal.c +++ b/modules/packetizer/h264_nal.c @@ -253,6 +253,8 @@ void h264_release_sps( h264_sequence_parameter_set_t *p_sps ) free( p_sps ); } +#define H264_CONSTRAINT_SET_FLAG(N) (0x80 >> N) + static bool h264_parse_sequence_parameter_set_rbsp( bs_t *p_bs, h264_sequence_parameter_set_t *p_sps ) { @@ -260,7 +262,7 @@ static bool h264_parse_sequence_parameter_set_rbsp( bs_t *p_bs, int i_profile_idc = bs_read( p_bs, 8 ); p_sps->i_profile = i_profile_idc; - p_sps->i_profile_compatibility = bs_read( p_bs, 8 ); + p_sps->i_constraint_set_flags = bs_read( p_bs, 8 ); p_sps->i_level = bs_read( p_bs, 8 ); /* sps id */ p_sps->i_id = bs_read_ue( p_bs ); diff --git a/modules/packetizer/h264_nal.h b/modules/packetizer/h264_nal.h index 87f47513874c8b4e1c4b090e47111782533032a2..f10ba979e95c0bb3efeeb34a7d660d6876aff369 100644 --- a/modules/packetizer/h264_nal.h +++ b/modules/packetizer/h264_nal.h @@ -93,7 +93,8 @@ void h264_release_pps( h264_picture_parameter_set_t * ); struct h264_sequence_parameter_set_t { int i_id; - int i_profile, i_profile_compatibility, i_level; + int i_profile, i_level; + uint8_t i_constraint_set_flags; /* according to avcC, 3 bits max for those */ uint8_t i_chroma_idc; uint8_t i_bit_depth_luma;