Lines Matching defs:sps
54 const SPS *sps = h->ps.sps;
100 pp->num_ref_frames = sps->ref_frame_count;
103 ((sps->mb_aff &&
105 (sps->residual_color_transform_flag << 2) |
108 (sps->chroma_format_idc << 4) |
115 (sps->frame_mbs_only_flag << 12) |
117 ((sps->level_idc >= 31) << 14) |
122 pp->bit_depth_luma_minus8 = sps->bit_depth_luma - 8;
123 pp->bit_depth_chroma_minus8 = sps->bit_depth_chroma - 8;
148 pp->log2_max_frame_num_minus4 = sps->log2_max_frame_num - 4;
149 pp->pic_order_cnt_type = sps->poc_type;
150 if (sps->poc_type == 0)
151 pp->log2_max_pic_order_cnt_lsb_minus4 = sps->log2_max_poc_lsb - 4;
152 else if (sps->poc_type == 1)
153 pp->delta_pic_order_always_zero_flag = sps->delta_pic_order_always_zero_flag;
154 pp->direct_8x8_inference_flag = sps->direct_8x8_inference_flag;