Lines Matching refs:sps
47 const HEVCSPS *sps = h->ps.sps; in vdpau_hevc_start_frame() local
51 &pps->scaling_list : &sps->scaling_list; in vdpau_hevc_start_frame()
56 info->chroma_format_idc = sps->chroma_format_idc; in vdpau_hevc_start_frame()
57 info->separate_colour_plane_flag = sps->separate_colour_plane_flag; in vdpau_hevc_start_frame()
58 info->pic_width_in_luma_samples = sps->width; in vdpau_hevc_start_frame()
59 info->pic_height_in_luma_samples = sps->height; in vdpau_hevc_start_frame()
60 info->bit_depth_luma_minus8 = sps->bit_depth - 8; in vdpau_hevc_start_frame()
61 info->bit_depth_chroma_minus8 = sps->bit_depth - 8; in vdpau_hevc_start_frame()
62 info->log2_max_pic_order_cnt_lsb_minus4 = sps->log2_max_poc_lsb - 4; in vdpau_hevc_start_frame()
65 …info->sps_max_dec_pic_buffering_minus1 = sps->temporal_layer[sps->max_sub_layers - 1].max_dec_pic_… in vdpau_hevc_start_frame()
66 info->log2_min_luma_coding_block_size_minus3 = sps->log2_min_cb_size - 3; in vdpau_hevc_start_frame()
67 info->log2_diff_max_min_luma_coding_block_size = sps->log2_diff_max_min_coding_block_size; in vdpau_hevc_start_frame()
68 info->log2_min_transform_block_size_minus2 = sps->log2_min_tb_size - 2; in vdpau_hevc_start_frame()
69 info->log2_diff_max_min_transform_block_size = sps->log2_max_trafo_size - sps->log2_min_tb_size; in vdpau_hevc_start_frame()
70 info->max_transform_hierarchy_depth_inter = sps->max_transform_hierarchy_depth_inter; in vdpau_hevc_start_frame()
71 info->max_transform_hierarchy_depth_intra = sps->max_transform_hierarchy_depth_intra; in vdpau_hevc_start_frame()
72 info->scaling_list_enabled_flag = sps->scaling_list_enable_flag; in vdpau_hevc_start_frame()
104 info->amp_enabled_flag = sps->amp_enabled_flag; in vdpau_hevc_start_frame()
105 info->sample_adaptive_offset_enabled_flag = sps->sao_enabled; in vdpau_hevc_start_frame()
106 info->pcm_enabled_flag = sps->pcm_enabled_flag; in vdpau_hevc_start_frame()
109 info->pcm_sample_bit_depth_luma_minus1 = sps->pcm.bit_depth - 1; in vdpau_hevc_start_frame()
111 info->pcm_sample_bit_depth_chroma_minus1 = sps->pcm.bit_depth_chroma - 1; in vdpau_hevc_start_frame()
113 info->log2_min_pcm_luma_coding_block_size_minus3 = sps->pcm.log2_min_pcm_cb_size - 3; in vdpau_hevc_start_frame()
115 …info->log2_diff_max_min_pcm_luma_coding_block_size = sps->pcm.log2_max_pcm_cb_size - sps->pcm.log2… in vdpau_hevc_start_frame()
117 info->pcm_loop_filter_disabled_flag = sps->pcm.loop_filter_disable_flag; in vdpau_hevc_start_frame()
121 info->num_short_term_ref_pic_sets = sps->nb_st_rps; in vdpau_hevc_start_frame()
122 info->long_term_ref_pics_present_flag = sps->long_term_ref_pics_present_flag; in vdpau_hevc_start_frame()
125 info->num_long_term_ref_pics_sps = sps->num_long_term_ref_pics_sps; in vdpau_hevc_start_frame()
126 info->sps_temporal_mvp_enabled_flag = sps->sps_temporal_mvp_enabled_flag; in vdpau_hevc_start_frame()
127 info->strong_intra_smoothing_enabled_flag = sps->sps_strong_intra_smoothing_enable_flag; in vdpau_hevc_start_frame()
199 info->CurrRpsIdx = sps->nb_st_rps; in vdpau_hevc_start_frame()
201 for (size_t i = 0; i < sps->nb_st_rps; i++) { in vdpau_hevc_start_frame()
202 if (sh->short_term_rps == &sps->st_rps[i]) { in vdpau_hevc_start_frame()
364 if (sps->sps_range_extension_flag) { in vdpau_hevc_start_frame()
366 info2->transformSkipRotationEnableFlag = sps->transform_skip_rotation_enabled_flag; in vdpau_hevc_start_frame()
367 info2->transformSkipContextEnableFlag = sps->transform_skip_context_enabled_flag; in vdpau_hevc_start_frame()
368 info2->implicitRdpcmEnableFlag = sps->implicit_rdpcm_enabled_flag; in vdpau_hevc_start_frame()
369 info2->explicitRdpcmEnableFlag = sps->explicit_rdpcm_enabled_flag; in vdpau_hevc_start_frame()
370 info2->extendedPrecisionProcessingFlag = sps->extended_precision_processing_flag; in vdpau_hevc_start_frame()
371 info2->intraSmoothingDisabledFlag = sps->intra_smoothing_disabled_flag; in vdpau_hevc_start_frame()
372 info2->highPrecisionOffsetsEnableFlag = sps->high_precision_offsets_enabled_flag; in vdpau_hevc_start_frame()
373 info2->persistentRiceAdaptationEnableFlag = sps->persistent_rice_adaptation_enabled_flag; in vdpau_hevc_start_frame()
374 info2->cabacBypassAlignmentEnableFlag = sps->cabac_bypass_alignment_enabled_flag; in vdpau_hevc_start_frame()
473 const HEVCSPS *sps = h->ps.sps; in vdpau_hevc_parse_rext_profile() local
474 const PTL *ptl = &sps->ptl; in vdpau_hevc_parse_rext_profile()