• Home
  • Raw
  • Download

Lines Matching refs:frame_hdr

148     const GstVp9FrameHeader * frame_hdr)  in gst_va_vp9_new_sequence()  argument
156 profile = _get_profile (self, frame_hdr->profile); in gst_va_vp9_new_sequence()
166 rt_format = _get_rtformat (self, frame_hdr->profile, frame_hdr->bit_depth, in gst_va_vp9_new_sequence()
167 frame_hdr->subsampling_x, frame_hdr->subsampling_y); in gst_va_vp9_new_sequence()
172 rt_format, frame_hdr->width, frame_hdr->height)) { in gst_va_vp9_new_sequence()
174 base->width = frame_hdr->width; in gst_va_vp9_new_sequence()
175 base->height = frame_hdr->height; in gst_va_vp9_new_sequence()
191 const GstVp9FrameHeader *frame_hdr = &picture->frame_hdr; in _check_resolution_change() local
193 if ((base->width != frame_hdr->width) || base->height != frame_hdr->height) { in _check_resolution_change()
194 base->width = frame_hdr->width; in _check_resolution_change()
195 base->height = frame_hdr->height; in _check_resolution_change()
260 const GstVp9FrameHeader *frame_hdr = &picture->frame_hdr; in _fill_param() local
261 const GstVp9LoopFilterParams *lfp = &frame_hdr->loop_filter_params; in _fill_param()
262 const GstVp9SegmentationParams *sp = &frame_hdr->segmentation_params; in _fill_param()
272 .subsampling_x = frame_hdr->subsampling_x, in _fill_param()
273 .subsampling_y = frame_hdr->subsampling_x, in _fill_param()
274 .frame_type = frame_hdr->frame_type, in _fill_param()
275 .show_frame = frame_hdr->show_frame, in _fill_param()
276 .error_resilient_mode = frame_hdr->error_resilient_mode, in _fill_param()
277 .intra_only = frame_hdr->intra_only, in _fill_param()
278 .allow_high_precision_mv = frame_hdr->allow_high_precision_mv, in _fill_param()
279 .mcomp_filter_type = frame_hdr->interpolation_filter, in _fill_param()
280 .frame_parallel_decoding_mode = frame_hdr->frame_parallel_decoding_mode, in _fill_param()
281 .reset_frame_context = frame_hdr->reset_frame_context, in _fill_param()
282 .refresh_frame_context = frame_hdr->refresh_frame_context, in _fill_param()
283 .frame_context_idx = frame_hdr->frame_context_idx, in _fill_param()
290 frame_hdr->ref_frame_idx[GST_VP9_REF_FRAME_LAST - 1], in _fill_param()
292 frame_hdr->ref_frame_sign_bias[GST_VP9_REF_FRAME_LAST], in _fill_param()
294 frame_hdr->ref_frame_idx[GST_VP9_REF_FRAME_GOLDEN - 1], in _fill_param()
296 frame_hdr->ref_frame_sign_bias[GST_VP9_REF_FRAME_GOLDEN], in _fill_param()
298 frame_hdr->ref_frame_idx[GST_VP9_REF_FRAME_ALTREF - 1], in _fill_param()
300 frame_hdr->ref_frame_sign_bias[GST_VP9_REF_FRAME_ALTREF], in _fill_param()
302 .lossless_flag = frame_hdr->lossless_flag, in _fill_param()
307 .log2_tile_rows = frame_hdr->tile_rows_log2, in _fill_param()
308 .log2_tile_columns = frame_hdr->tile_cols_log2, in _fill_param()
310 .frame_header_length_in_bytes = frame_hdr->frame_header_length_in_bytes, in _fill_param()
311 .first_partition_size = frame_hdr->header_size_in_bytes, in _fill_param()
313 .profile = frame_hdr->profile, in _fill_param()
314 .bit_depth = frame_hdr->bit_depth in _fill_param()
440 _update_segmentation (self, &picture->frame_hdr); in _fill_slice()
536 new_picture->frame_hdr = picture->frame_hdr; in gst_va_vp9_dec_duplicate_picture()