Lines Matching refs:vp9
35 VADecPictureParameterBufferVP9 *vp9 = buf->data; in vlVaHandlePictureParameterBufferVP9() local
40 context->desc.vp9.picture_parameter.frame_width = vp9->frame_width; in vlVaHandlePictureParameterBufferVP9()
41 context->desc.vp9.picture_parameter.frame_height = vp9->frame_height; in vlVaHandlePictureParameterBufferVP9()
43 … context->desc.vp9.picture_parameter.pic_fields.subsampling_x = vp9->pic_fields.bits.subsampling_x; in vlVaHandlePictureParameterBufferVP9()
44 … context->desc.vp9.picture_parameter.pic_fields.subsampling_y = vp9->pic_fields.bits.subsampling_y; in vlVaHandlePictureParameterBufferVP9()
45 context->desc.vp9.picture_parameter.pic_fields.frame_type = vp9->pic_fields.bits.frame_type; in vlVaHandlePictureParameterBufferVP9()
46 context->desc.vp9.picture_parameter.pic_fields.show_frame = vp9->pic_fields.bits.show_frame; in vlVaHandlePictureParameterBufferVP9()
47 …context->desc.vp9.picture_parameter.pic_fields.error_resilient_mode = vp9->pic_fields.bits.error_r… in vlVaHandlePictureParameterBufferVP9()
48 context->desc.vp9.picture_parameter.pic_fields.intra_only = vp9->pic_fields.bits.intra_only; in vlVaHandlePictureParameterBufferVP9()
49 …context->desc.vp9.picture_parameter.pic_fields.allow_high_precision_mv = vp9->pic_fields.bits.allo… in vlVaHandlePictureParameterBufferVP9()
50 …context->desc.vp9.picture_parameter.pic_fields.mcomp_filter_type = vp9->pic_fields.bits.mcomp_filt… in vlVaHandlePictureParameterBufferVP9()
51 …context->desc.vp9.picture_parameter.pic_fields.frame_parallel_decoding_mode = vp9->pic_fields.bits… in vlVaHandlePictureParameterBufferVP9()
52 …context->desc.vp9.picture_parameter.pic_fields.reset_frame_context = vp9->pic_fields.bits.reset_fr… in vlVaHandlePictureParameterBufferVP9()
53 …context->desc.vp9.picture_parameter.pic_fields.refresh_frame_context = vp9->pic_fields.bits.refres… in vlVaHandlePictureParameterBufferVP9()
54 …context->desc.vp9.picture_parameter.pic_fields.frame_context_idx = vp9->pic_fields.bits.frame_cont… in vlVaHandlePictureParameterBufferVP9()
55 …context->desc.vp9.picture_parameter.pic_fields.segmentation_enabled = vp9->pic_fields.bits.segment… in vlVaHandlePictureParameterBufferVP9()
56 …context->desc.vp9.picture_parameter.pic_fields.segmentation_temporal_update = vp9->pic_fields.bits… in vlVaHandlePictureParameterBufferVP9()
57 …context->desc.vp9.picture_parameter.pic_fields.segmentation_update_map = vp9->pic_fields.bits.segm… in vlVaHandlePictureParameterBufferVP9()
58 …context->desc.vp9.picture_parameter.pic_fields.last_ref_frame = vp9->pic_fields.bits.last_ref_fram… in vlVaHandlePictureParameterBufferVP9()
59 …context->desc.vp9.picture_parameter.pic_fields.last_ref_frame_sign_bias = vp9->pic_fields.bits.las… in vlVaHandlePictureParameterBufferVP9()
60 …context->desc.vp9.picture_parameter.pic_fields.golden_ref_frame = vp9->pic_fields.bits.golden_ref_… in vlVaHandlePictureParameterBufferVP9()
61 …context->desc.vp9.picture_parameter.pic_fields.golden_ref_frame_sign_bias = vp9->pic_fields.bits.g… in vlVaHandlePictureParameterBufferVP9()
62 … context->desc.vp9.picture_parameter.pic_fields.alt_ref_frame = vp9->pic_fields.bits.alt_ref_frame; in vlVaHandlePictureParameterBufferVP9()
63 …context->desc.vp9.picture_parameter.pic_fields.alt_ref_frame_sign_bias = vp9->pic_fields.bits.alt_… in vlVaHandlePictureParameterBufferVP9()
64 … context->desc.vp9.picture_parameter.pic_fields.lossless_flag = vp9->pic_fields.bits.lossless_flag; in vlVaHandlePictureParameterBufferVP9()
66 context->desc.vp9.picture_parameter.filter_level = vp9->filter_level; in vlVaHandlePictureParameterBufferVP9()
67 context->desc.vp9.picture_parameter.sharpness_level = vp9->sharpness_level; in vlVaHandlePictureParameterBufferVP9()
69 context->desc.vp9.picture_parameter.log2_tile_rows = vp9->log2_tile_rows; in vlVaHandlePictureParameterBufferVP9()
70 context->desc.vp9.picture_parameter.log2_tile_columns = vp9->log2_tile_columns; in vlVaHandlePictureParameterBufferVP9()
72 …context->desc.vp9.picture_parameter.frame_header_length_in_bytes = vp9->frame_header_length_in_byt… in vlVaHandlePictureParameterBufferVP9()
73 context->desc.vp9.picture_parameter.first_partition_size = vp9->first_partition_size; in vlVaHandlePictureParameterBufferVP9()
76 context->desc.vp9.picture_parameter.mb_segment_tree_probs[i] = vp9->mb_segment_tree_probs[i]; in vlVaHandlePictureParameterBufferVP9()
78 context->desc.vp9.picture_parameter.segment_pred_probs[i] = vp9->segment_pred_probs[i]; in vlVaHandlePictureParameterBufferVP9()
80 context->desc.vp9.picture_parameter.profile = vp9->profile; in vlVaHandlePictureParameterBufferVP9()
82 context->desc.vp9.picture_parameter.bit_depth = vp9->bit_depth; in vlVaHandlePictureParameterBufferVP9()
85 if (vp9->pic_fields.bits.frame_type == 0) in vlVaHandlePictureParameterBufferVP9()
86 context->desc.vp9.ref[i] = NULL; in vlVaHandlePictureParameterBufferVP9()
88 vlVaGetReferenceFrame(drv, vp9->reference_frames[i], &context->desc.vp9.ref[i]); in vlVaHandlePictureParameterBufferVP9()
97 VASliceParameterBufferVP9 *vp9 = buf->data; in vlVaHandleSliceParameterBufferVP9() local
102 context->desc.vp9.slice_parameter.slice_data_size = vp9->slice_data_size; in vlVaHandleSliceParameterBufferVP9()
103 context->desc.vp9.slice_parameter.slice_data_offset = vp9->slice_data_offset; in vlVaHandleSliceParameterBufferVP9()
104 context->desc.vp9.slice_parameter.slice_data_flag = vp9->slice_data_flag; in vlVaHandleSliceParameterBufferVP9()
107 context->desc.vp9.slice_parameter.seg_param[i].segment_flags.segment_reference_enabled = in vlVaHandleSliceParameterBufferVP9()
108 vp9->seg_param[i].segment_flags.fields.segment_reference_enabled; in vlVaHandleSliceParameterBufferVP9()
109 context->desc.vp9.slice_parameter.seg_param[i].segment_flags.segment_reference = in vlVaHandleSliceParameterBufferVP9()
110 vp9->seg_param[i].segment_flags.fields.segment_reference; in vlVaHandleSliceParameterBufferVP9()
111 context->desc.vp9.slice_parameter.seg_param[i].segment_flags.segment_reference_skipped = in vlVaHandleSliceParameterBufferVP9()
112 vp9->seg_param[i].segment_flags.fields.segment_reference_skipped; in vlVaHandleSliceParameterBufferVP9()
114 …memcpy(context->desc.vp9.slice_parameter.seg_param[i].filter_level, vp9->seg_param[i].filter_level… in vlVaHandleSliceParameterBufferVP9()
116 …context->desc.vp9.slice_parameter.seg_param[i].luma_ac_quant_scale = vp9->seg_param[i].luma_ac_qua… in vlVaHandleSliceParameterBufferVP9()
117 …context->desc.vp9.slice_parameter.seg_param[i].luma_dc_quant_scale = vp9->seg_param[i].luma_dc_qua… in vlVaHandleSliceParameterBufferVP9()
118 …context->desc.vp9.slice_parameter.seg_param[i].chroma_ac_quant_scale = vp9->seg_param[i].chroma_ac… in vlVaHandleSliceParameterBufferVP9()
119 …context->desc.vp9.slice_parameter.seg_param[i].chroma_dc_quant_scale = vp9->seg_param[i].chroma_dc… in vlVaHandleSliceParameterBufferVP9()
186 (const unsigned *)&context->desc.vp9.picture_parameter.frame_header_length_in_bytes); in vlVaDecoderVP9BitstreamHeader()
302 context->desc.vp9.picture_parameter.mode_ref_delta_enabled = mode_ref_delta_enabled; in vlVaDecoderVP9BitstreamHeader()
303 context->desc.vp9.picture_parameter.mode_ref_delta_update = mode_ref_delta_update; in vlVaDecoderVP9BitstreamHeader()
307 context->desc.vp9.picture_parameter.base_qindex = vp9_u(&vlc, 8); in vlVaDecoderVP9BitstreamHeader()
308 context->desc.vp9.picture_parameter.y_dc_delta_q = vp9_u(&vlc, 1) ? vp9_s(&vlc, 4) : 0; in vlVaDecoderVP9BitstreamHeader()
309 context->desc.vp9.picture_parameter.uv_ac_delta_q = vp9_u(&vlc, 1) ? vp9_s(&vlc, 4) : 0; in vlVaDecoderVP9BitstreamHeader()
310 context->desc.vp9.picture_parameter.uv_dc_delta_q = vp9_u(&vlc, 1) ? vp9_s(&vlc, 4) : 0; in vlVaDecoderVP9BitstreamHeader()
342 context->desc.vp9.picture_parameter.abs_delta = vp9_u(&vlc, 1); in vlVaDecoderVP9BitstreamHeader()
345 if ((context->desc.vp9.slice_parameter.seg_param[i].alt_quant_enabled = vp9_u(&vlc, 1))) in vlVaDecoderVP9BitstreamHeader()
346 context->desc.vp9.slice_parameter.seg_param[i].alt_quant = vp9_s(&vlc, 8); in vlVaDecoderVP9BitstreamHeader()
348 if ((context->desc.vp9.slice_parameter.seg_param[i].alt_lf_enabled = vp9_u(&vlc, 1))) in vlVaDecoderVP9BitstreamHeader()
349 context->desc.vp9.slice_parameter.seg_param[i].alt_lf = vp9_s(&vlc, 6); in vlVaDecoderVP9BitstreamHeader()