Lines Matching refs:dst
468 AV1RawFilmGrainParams *dst = &s->cur_frame.film_grain; in load_grain_params() local
474 memcpy(dst, film_grain, sizeof(*dst)); in load_grain_params()
480 memcpy(dst, src, sizeof(*dst)); in load_grain_params()
481 dst->grain_seed = film_grain->grain_seed; in load_grain_params()
631 static RK_S32 av1d_frame_ref(Av1CodecContext *ctx, AV1Frame *dst, const AV1Frame *src) in av1d_frame_ref() argument
634 MppFrameImpl *impl_frm = (MppFrameImpl *)dst->f; in av1d_frame_ref()
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()
639 memcpy(dst->gm_params, in av1d_frame_ref()
642 memcpy(dst->skip_mode_frame_idx, in av1d_frame_ref()
645 memcpy(&dst->film_grain, in av1d_frame_ref()
647 sizeof(dst->film_grain)); in av1d_frame_ref()
648 dst->coded_lossless = src->coded_lossless; in av1d_frame_ref()
655 dst->slot_index = src->slot_index; in av1d_frame_ref()
656 dst->ref = src->ref; in av1d_frame_ref()
657 dst->ref->ref_count++; in av1d_frame_ref()
659 mpp_buf_slot_get_prop(s->slots, src->slot_index, SLOT_FRAME, &dst->f); in av1d_frame_ref()