• Home
  • Raw
  • Download

Lines Matching refs:frame_hdr

77     const GstVp9FrameHeader * frame_hdr);
244 const GstVp9FrameHeader * frame_hdr) in gst_nv_vp9_dec_new_sequence() argument
252 self->width = frame_hdr->width; in gst_nv_vp9_dec_new_sequence()
253 self->height = frame_hdr->height; in gst_nv_vp9_dec_new_sequence()
254 self->profile = frame_hdr->profile; in gst_nv_vp9_dec_new_sequence()
259 if (frame_hdr->bit_depth == 10) { in gst_nv_vp9_dec_new_sequence()
274 frame_hdr->bit_depth, in gst_nv_vp9_dec_new_sequence()
288 self->params.CodecSpecific.vp9.colorSpace = frame_hdr->color_space; in gst_nv_vp9_dec_new_sequence()
345 new_picture->frame_hdr = picture->frame_hdr; in gst_nv_vp9_dec_duplicate_picture()
359 const GstVp9FrameHeader *frame_hdr = &picture->frame_hdr; in gst_nv_vp9_dec_decode_picture() local
360 const GstVp9LoopFilterParams *lfp = &frame_hdr->loop_filter_params; in gst_nv_vp9_dec_decode_picture()
361 const GstVp9SegmentationParams *sp = &frame_hdr->segmentation_params; in gst_nv_vp9_dec_decode_picture()
362 const GstVp9QuantizationParams *qp = &frame_hdr->quantization_params; in gst_nv_vp9_dec_decode_picture()
386 sizeof (frame_hdr->ref_frame_sign_bias)); in gst_nv_vp9_dec_decode_picture()
411 params->PicWidthInMbs = GST_ROUND_UP_16 (frame_hdr->width) >> 4; in gst_nv_vp9_dec_decode_picture()
412 params->FrameHeightInMbs = GST_ROUND_UP_16 (frame_hdr->height) >> 4; in gst_nv_vp9_dec_decode_picture()
415 vp9_params->width = frame_hdr->width; in gst_nv_vp9_dec_decode_picture()
416 vp9_params->height = frame_hdr->height; in gst_nv_vp9_dec_decode_picture()
433 vp9_params->LastRefIdx = ref_frame_map[frame_hdr->ref_frame_idx[0]]; in gst_nv_vp9_dec_decode_picture()
434 vp9_params->GoldenRefIdx = ref_frame_map[frame_hdr->ref_frame_idx[1]]; in gst_nv_vp9_dec_decode_picture()
435 vp9_params->AltRefIdx = ref_frame_map[frame_hdr->ref_frame_idx[2]]; in gst_nv_vp9_dec_decode_picture()
437 vp9_params->profile = frame_hdr->profile; in gst_nv_vp9_dec_decode_picture()
438 vp9_params->frameContextIdx = frame_hdr->frame_context_idx; in gst_nv_vp9_dec_decode_picture()
439 vp9_params->frameType = frame_hdr->frame_type; in gst_nv_vp9_dec_decode_picture()
440 vp9_params->showFrame = frame_hdr->show_frame; in gst_nv_vp9_dec_decode_picture()
441 vp9_params->errorResilient = frame_hdr->error_resilient_mode; in gst_nv_vp9_dec_decode_picture()
442 vp9_params->frameParallelDecoding = frame_hdr->frame_parallel_decoding_mode; in gst_nv_vp9_dec_decode_picture()
443 vp9_params->subSamplingX = frame_hdr->subsampling_x; in gst_nv_vp9_dec_decode_picture()
444 vp9_params->subSamplingY = frame_hdr->subsampling_y; in gst_nv_vp9_dec_decode_picture()
445 vp9_params->intraOnly = frame_hdr->intra_only; in gst_nv_vp9_dec_decode_picture()
446 vp9_params->allow_high_precision_mv = frame_hdr->allow_high_precision_mv; in gst_nv_vp9_dec_decode_picture()
447 vp9_params->refreshEntropyProbs = frame_hdr->refresh_frame_context; in gst_nv_vp9_dec_decode_picture()
448 vp9_params->bitDepthMinus8Luma = frame_hdr->bit_depth - 8; in gst_nv_vp9_dec_decode_picture()
449 vp9_params->bitDepthMinus8Chroma = frame_hdr->bit_depth - 8; in gst_nv_vp9_dec_decode_picture()
455 vp9_params->log2_tile_columns = frame_hdr->tile_cols_log2; in gst_nv_vp9_dec_decode_picture()
456 vp9_params->log2_tile_rows = frame_hdr->tile_rows_log2; in gst_nv_vp9_dec_decode_picture()
468 vp9_params->resetFrameContext = frame_hdr->reset_frame_context; in gst_nv_vp9_dec_decode_picture()
469 vp9_params->mcomp_filter_type = frame_hdr->interpolation_filter; in gst_nv_vp9_dec_decode_picture()
470 vp9_params->frameTagSize = frame_hdr->frame_header_length_in_bytes; in gst_nv_vp9_dec_decode_picture()
471 vp9_params->offsetToDctParts = frame_hdr->header_size_in_bytes; in gst_nv_vp9_dec_decode_picture()
483 memcpy (vp9_params->refFrameSignBias, frame_hdr->ref_frame_sign_bias, in gst_nv_vp9_dec_decode_picture()
484 sizeof (frame_hdr->ref_frame_sign_bias)); in gst_nv_vp9_dec_decode_picture()
487 vp9_params->activeRefIdx[i] = frame_hdr->ref_frame_idx[i]; in gst_nv_vp9_dec_decode_picture()