Lines Matching refs:temporal_layer
1567 READ_UE(gb, &sps->temporal_layer[i].max_dec_pic_buffering) ; in mpp_hevc_decode_nal_sps()
1568 sps->temporal_layer[i].max_dec_pic_buffering += 1; in mpp_hevc_decode_nal_sps()
1569 READ_UE(gb, &sps->temporal_layer[i].num_reorder_pics); in mpp_hevc_decode_nal_sps()
1570 READ_UE(gb, &sps->temporal_layer[i].max_latency_increase ); in mpp_hevc_decode_nal_sps()
1571 sps->temporal_layer[i].max_latency_increase -= 1; in mpp_hevc_decode_nal_sps()
1572 if (sps->temporal_layer[i].max_dec_pic_buffering > MAX_DPB_SIZE) { in mpp_hevc_decode_nal_sps()
1574 sps->temporal_layer[i].max_dec_pic_buffering - 1); in mpp_hevc_decode_nal_sps()
1578 … if (sps->temporal_layer[i].num_reorder_pics > sps->temporal_layer[i].max_dec_pic_buffering - 1) { in mpp_hevc_decode_nal_sps()
1580 sps->temporal_layer[i].num_reorder_pics); in mpp_hevc_decode_nal_sps()
1581 if (sps->temporal_layer[i].num_reorder_pics > MAX_DPB_SIZE - 1) { in mpp_hevc_decode_nal_sps()
1585 … sps->temporal_layer[i].max_dec_pic_buffering = sps->temporal_layer[i].num_reorder_pics + 1; in mpp_hevc_decode_nal_sps()
1591 … sps->temporal_layer[i].max_dec_pic_buffering = sps->temporal_layer[start].max_dec_pic_buffering; in mpp_hevc_decode_nal_sps()
1592 … sps->temporal_layer[i].num_reorder_pics = sps->temporal_layer[start].num_reorder_pics; in mpp_hevc_decode_nal_sps()
1593 … sps->temporal_layer[i].max_latency_increase = sps->temporal_layer[start].max_latency_increase; in mpp_hevc_decode_nal_sps()
1608 sps->temporal_layer[i].num_reorder_pics += 2; in mpp_hevc_decode_nal_sps()