Lines Matching refs:sps
46 &s->ps.pps->scaling_list : &s->ps.sps->scaling_list; in fill_scaling_lists()
75 const HEVCSPS *sps = s->ps.sps; in nvdec_hevc_start_frame() local
93 .PicWidthInMbs = sps->width / 16, in nvdec_hevc_start_frame()
94 .FrameHeightInMbs = sps->height / 16, in nvdec_hevc_start_frame()
100 .pic_width_in_luma_samples = sps->width, in nvdec_hevc_start_frame()
101 .pic_height_in_luma_samples = sps->height, in nvdec_hevc_start_frame()
102 .log2_min_luma_coding_block_size_minus3 = sps->log2_min_cb_size - 3, in nvdec_hevc_start_frame()
103 … .log2_diff_max_min_luma_coding_block_size = sps->log2_diff_max_min_coding_block_size, in nvdec_hevc_start_frame()
104 .log2_min_transform_block_size_minus2 = sps->log2_min_tb_size - 2, in nvdec_hevc_start_frame()
105 … .log2_diff_max_min_transform_block_size = sps->log2_max_trafo_size - sps->log2_min_tb_size, in nvdec_hevc_start_frame()
106 .pcm_enabled_flag = sps->pcm_enabled_flag, in nvdec_hevc_start_frame()
107 ….log2_min_pcm_luma_coding_block_size_minus3 = sps->pcm_enabled_flag ? sps->pcm.log2_min_pcm_cb_s… in nvdec_hevc_start_frame()
108 ….log2_diff_max_min_pcm_luma_coding_block_size = sps->pcm.log2_max_pcm_cb_size - sps->pcm.log2_min_… in nvdec_hevc_start_frame()
109 ….pcm_sample_bit_depth_luma_minus1 = sps->pcm_enabled_flag ? sps->pcm.bit_depth - 1 : 0, in nvdec_hevc_start_frame()
110 ….pcm_sample_bit_depth_chroma_minus1 = sps->pcm_enabled_flag ? sps->pcm.bit_depth_chroma … in nvdec_hevc_start_frame()
115 … .high_precision_offsets_enabled_flag = sps->high_precision_offsets_enabled_flag, in nvdec_hevc_start_frame()
117 .pcm_loop_filter_disabled_flag = sps->pcm.loop_filter_disable_flag, in nvdec_hevc_start_frame()
118 … .strong_intra_smoothing_enabled_flag = sps->sps_strong_intra_smoothing_enable_flag, in nvdec_hevc_start_frame()
119 … .max_transform_hierarchy_depth_intra = sps->max_transform_hierarchy_depth_intra, in nvdec_hevc_start_frame()
120 … .max_transform_hierarchy_depth_inter = sps->max_transform_hierarchy_depth_inter, in nvdec_hevc_start_frame()
121 .amp_enabled_flag = sps->amp_enabled_flag, in nvdec_hevc_start_frame()
122 .separate_colour_plane_flag = sps->separate_colour_plane_flag, in nvdec_hevc_start_frame()
123 .log2_max_pic_order_cnt_lsb_minus4 = sps->log2_max_poc_lsb - 4, in nvdec_hevc_start_frame()
124 .num_short_term_ref_pic_sets = sps->nb_st_rps, in nvdec_hevc_start_frame()
125 .long_term_ref_pics_present_flag = sps->long_term_ref_pics_present_flag, in nvdec_hevc_start_frame()
126 .num_long_term_ref_pics_sps = sps->num_long_term_ref_pics_sps, in nvdec_hevc_start_frame()
127 .sps_temporal_mvp_enabled_flag = sps->sps_temporal_mvp_enabled_flag, in nvdec_hevc_start_frame()
128 .sample_adaptive_offset_enabled_flag = sps->sao_enabled, in nvdec_hevc_start_frame()
129 .scaling_list_enable_flag = sps->scaling_list_enable_flag, in nvdec_hevc_start_frame()
132 .bit_depth_luma_minus8 = sps->bit_depth - 8, in nvdec_hevc_start_frame()
133 .bit_depth_chroma_minus8 = sps->bit_depth - 8, in nvdec_hevc_start_frame()
135 .sps_range_extension_flag = sps->sps_range_extension_flag, in nvdec_hevc_start_frame()
136 … .transform_skip_rotation_enabled_flag = sps->transform_skip_rotation_enabled_flag, in nvdec_hevc_start_frame()
137 … .transform_skip_context_enabled_flag = sps->transform_skip_context_enabled_flag, in nvdec_hevc_start_frame()
138 .implicit_rdpcm_enabled_flag = sps->implicit_rdpcm_enabled_flag, in nvdec_hevc_start_frame()
139 .explicit_rdpcm_enabled_flag = sps->explicit_rdpcm_enabled_flag, in nvdec_hevc_start_frame()
140 .extended_precision_processing_flag = sps->extended_precision_processing_flag, in nvdec_hevc_start_frame()
141 .intra_smoothing_disabled_flag = sps->intra_smoothing_disabled_flag, in nvdec_hevc_start_frame()
142 … .persistent_rice_adaptation_enabled_flag = sps->persistent_rice_adaptation_enabled_flag, in nvdec_hevc_start_frame()
143 … .cabac_bypass_alignment_enabled_flag = sps->cabac_bypass_alignment_enabled_flag, in nvdec_hevc_start_frame()
301 const HEVCSPS *sps = s->ps.sps; in nvdec_hevc_frame_params() local
302 …return ff_nvdec_frame_params(avctx, hw_frames_ctx, sps->temporal_layer[sps->max_sub_layers - 1].ma… in nvdec_hevc_frame_params()