Lines Matching refs:frame
43 * decode : both send video stream packet to decoder and get video frame from
46 * encode : both send video frame to encoder and get encoded video stream from
51 * decode_get_frame : get video frame from decoder only, async interface
53 * encode_put_frame : send video frame to encoder only, async interface
69 * reset : clear all data in mpp context, discard all packet and frame,
84 * @brief both send video stream packet to decoder and get video frame from
89 * @param[out] frame The output picture, its usage can refer mpp_frame.h.
93 MPP_RET (*decode)(MppCtx ctx, MppPacket packet, MppFrame *frame);
104 * @brief get video frame from decoder only, async interface
107 * @param[out] frame The output picture, its usage can refer mpp_frame.h.
111 MPP_RET (*decode_get_frame)(MppCtx ctx, MppFrame *frame);
113 * @brief both send video frame to encoder and get encoded video stream from
117 * @param[in] frame The input video data, its usage can refer mpp_frame.h.
122 MPP_RET (*encode)(MppCtx ctx, MppFrame frame, MppPacket *packet);
124 * @brief send video frame to encoder only, async interface
127 * @param[in] frame The input video data, its usage can refer mpp_frame.h.
131 MPP_RET (*encode_put_frame)(MppCtx ctx, MppFrame frame);
149 MPP_RET (*isp_put_frame)(MppCtx ctx, MppFrame frame);
153 MPP_RET (*isp_get_frame)(MppCtx ctx, MppFrame *frame);
189 * @brief discard all packet and frame, reset all component,