Lines Matching refs:mFrmOut

96     p->mFrmOut = NULL;  in mpp_ctx_create()
202 mpp->mFrmOut = mpp_list_create(list_wraper_frame); in mpp_ctx_init()
361 if (mpp->mFrmOut) { in mpp_clear()
362 mpp_list_destroy(mpp->mFrmOut); in mpp_clear()
363 mpp->mFrmOut = NULL; in mpp_clear()
574 mpp_mutex_cond_lock(&mpp->mFrmOut->cond_lock); in mpp_get_frame()
576 if (0 == mpp_list_size(mpp->mFrmOut)) { in mpp_get_frame()
580 mpp_list_wait(mpp->mFrmOut); in mpp_get_frame()
582 RK_S32 ret = mpp_list_wait_timed(mpp->mFrmOut, mpp->mOutputTimeout); in mpp_get_frame()
585 mpp_mutex_cond_unlock(&mpp->mFrmOut->cond_lock); in mpp_get_frame()
588 mpp_mutex_cond_unlock(&mpp->mFrmOut->cond_lock); in mpp_get_frame()
596 if (mpp_list_size(mpp->mFrmOut)) { in mpp_get_frame()
599 mpp_list_del_at_head(mpp->mFrmOut, &frm, sizeof(frm)); in mpp_get_frame()
623 mpp_mutex_cond_unlock(&mpp->mFrmOut->cond_lock); in mpp_get_frame()
640 mpp_mutex_cond_lock(&mpp->mFrmOut->cond_lock); in mpp_get_frame_noblock()
641 if (mpp_list_size(mpp->mFrmOut)) { in mpp_get_frame_noblock()
642 mpp_list_del_at_head(mpp->mFrmOut, &first, sizeof(first)); in mpp_get_frame_noblock()
646 mpp_mutex_cond_unlock(&mpp->mFrmOut->cond_lock); in mpp_get_frame_noblock()
674 mpp_mutex_cond_lock(&mpp->mFrmOut->cond_lock); in mpp_decode()
675 if (mpp_list_size(mpp->mFrmOut)) { in mpp_decode()
678 mpp_list_del_at_head(mpp->mFrmOut, frame, sizeof(*frame)); in mpp_decode()
683 mpp_mutex_cond_unlock(&mpp->mFrmOut->cond_lock); in mpp_decode()
686 mpp_mutex_cond_unlock(&mpp->mFrmOut->cond_lock); in mpp_decode()
698 mpp_mutex_cond_lock(&mpp->mFrmOut->cond_lock); in mpp_decode()
699 if (mpp_list_size(mpp->mFrmOut)) { in mpp_decode()
702 mpp_list_del_at_head(mpp->mFrmOut, frame, sizeof(*frame)); in mpp_decode()
709 mpp_mutex_cond_unlock(&mpp->mFrmOut->cond_lock); in mpp_decode()
1263 mpp_mutex_cond_lock(&mpp->mFrmOut->cond_lock); in mpp_reset()
1264 mpp_list_flush(mpp->mFrmOut); in mpp_reset()
1265 mpp_mutex_cond_unlock(&mpp->mFrmOut->cond_lock); in mpp_reset()