Home
last modified time | relevance | path

Searched refs:max_dec_pic_buffering (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/external/mpp/mpp/codec/dec/h265/
H A Dh265d_ps.c1552 READ_UE(gb, &sps->temporal_layer[i].max_dec_pic_buffering) ; in mpp_hevc_decode_nal_sps()
1553 sps->temporal_layer[i].max_dec_pic_buffering += 1; in mpp_hevc_decode_nal_sps()
1557 if (sps->temporal_layer[i].max_dec_pic_buffering > MAX_DPB_SIZE) { in mpp_hevc_decode_nal_sps()
1559 sps->temporal_layer[i].max_dec_pic_buffering - 1); in mpp_hevc_decode_nal_sps()
1563 … if (sps->temporal_layer[i].num_reorder_pics > sps->temporal_layer[i].max_dec_pic_buffering - 1) { in mpp_hevc_decode_nal_sps()
1570 … sps->temporal_layer[i].max_dec_pic_buffering = sps->temporal_layer[i].num_reorder_pics + 1; in mpp_hevc_decode_nal_sps()
1576 … sps->temporal_layer[i].max_dec_pic_buffering = sps->temporal_layer[start].max_dec_pic_buffering; in mpp_hevc_decode_nal_sps()
H A Dh265d_parser.h215 int max_dec_pic_buffering; member
H A Dh265d_parser2_syntax.c85 …_buffering_minus1 = sps->temporal_layer[sps->max_sub_layers - 1].max_dec_pic_buffering - 1; in fill_picture_parameters()