Lines Matching refs:src
467 const AV1RawFilmGrainParams *film_grain = &header->film_grain, *src; in load_grain_params() local
478 src = &s->ref[film_grain->film_grain_params_ref_idx].film_grain; in load_grain_params()
480 memcpy(dst, src, sizeof(*dst)); in load_grain_params()
631 static RK_S32 av1d_frame_ref(Av1CodecContext *ctx, AV1Frame *dst, const AV1Frame *src) in av1d_frame_ref() argument
635 dst->spatial_id = src->spatial_id; in av1d_frame_ref()
636 dst->temporal_id = src->temporal_id; in av1d_frame_ref()
637 dst->order_hint = src->order_hint; in av1d_frame_ref()
640 src->gm_params, in av1d_frame_ref()
641 sizeof(src->gm_params)); in av1d_frame_ref()
643 src->skip_mode_frame_idx, in av1d_frame_ref()
646 &src->film_grain, in av1d_frame_ref()
648 dst->coded_lossless = src->coded_lossless; in av1d_frame_ref()
650 if (src->slot_index >= 0x7f) { in av1d_frame_ref()
655 dst->slot_index = src->slot_index; in av1d_frame_ref()
656 dst->ref = src->ref; in av1d_frame_ref()
659 mpp_buf_slot_get_prop(s->slots, src->slot_index, SLOT_FRAME, &dst->f); in av1d_frame_ref()