Lines Matching refs:frame_out

288     if (NULL != p->frame_out) {  in vp8d_unref_allframe()
289 vp8d_unref_frame(p, p->frame_out); in vp8d_unref_allframe()
290 p->frame_out = NULL; in vp8d_unref_allframe()
567 p->dxva_ctx->CurrPic.Index7Bits = p->frame_out->slot_index; in vp8d_convert_to_syntx()
609 if (NULL == p->frame_out) { in vp8d_alloc_frame()
610 p->frame_out = mpp_calloc(VP8Frame, 1); in vp8d_alloc_frame()
611 if (NULL == p->frame_out) { in vp8d_alloc_frame()
616 if (NULL == p->frame_out->f) { in vp8d_alloc_frame()
617 mpp_frame_init(&p->frame_out->f); in vp8d_alloc_frame()
618 if (NULL == p->frame_out->f) { in vp8d_alloc_frame()
623 p->frame_out->slot_index = 0xff; in vp8d_alloc_frame()
624 p->frame_out->invisible = !p->showFrame; in vp8d_alloc_frame()
627 if (p->frame_out->slot_index == 0xff) { in vp8d_alloc_frame()
628 mpp_frame_set_width(p->frame_out->f, p->width); in vp8d_alloc_frame()
629 mpp_frame_set_height(p->frame_out->f, p->height); in vp8d_alloc_frame()
630 mpp_frame_set_hor_stride(p->frame_out->f, 0); in vp8d_alloc_frame()
631 mpp_frame_set_ver_stride(p->frame_out->f, 0); in vp8d_alloc_frame()
632 mpp_frame_set_errinfo(p->frame_out->f, 0); in vp8d_alloc_frame()
633 mpp_frame_set_pts(p->frame_out->f, p->pts); in vp8d_alloc_frame()
634 mpp_frame_set_dts(p->frame_out->f, p->dts); in vp8d_alloc_frame()
636 &p->frame_out->slot_index); in vp8d_alloc_frame()
641 mpp_buf_slot_set_prop(p->frame_slots, p->frame_out->slot_index, in vp8d_alloc_frame()
642 SLOT_FRAME, p->frame_out->f); in vp8d_alloc_frame()
643 mpp_buf_slot_set_flag(p->frame_slots, p->frame_out->slot_index, in vp8d_alloc_frame()
645 mpp_buf_slot_set_flag(p->frame_slots, p->frame_out->slot_index, in vp8d_alloc_frame()
647 mpp_frame_set_mode(p->frame_out->f, 0); in vp8d_alloc_frame()
650 mpp_buf_slot_set_flag(p->frame_slots, p->frame_out->slot_index, in vp8d_alloc_frame()
652 mpp_buf_slot_enqueue(p->frame_slots, p->frame_out->slot_index, in vp8d_alloc_frame()
655 p->frame_out->ref_count++; in vp8d_alloc_frame()
718 p->frame_golden = p->frame_out; in vp8d_ref_update()
727 p->frame_alternate = p->frame_out; in vp8d_ref_update()
728 vp8d_ref_frame(p->frame_out); in vp8d_ref_update()
736 p->frame_ref = p->frame_out; in vp8d_ref_update()
739 vp8d_unref_frame(p, p->frame_out); in vp8d_ref_update()
740 p->frame_out = NULL; in vp8d_ref_update()
1319 in_task->output = p->frame_out->slot_index; in vp8d_parser_parse()