Lines Matching refs:frame
44 * decode : both send video stream packet to decoder and get video frame from
47 * encode : both send video frame to encoder and get encoded video stream from
52 * decode_get_frame : get video frame from decoder only, async interface
54 * encode_put_frame : send video frame to encoder only, async interface
70 * reset : clear all data in mpp context, discard all packet and frame,
85 * @brief both send video stream packet to decoder and get video frame from
90 * @param[out] frame The output picture, its usage can refer mpp_frame.h.
94 MPP_RET (*decode)(MppCtx ctx, MppPacket packet, MppFrame *frame);
105 * @brief get video frame from decoder only, async interface
108 * @param[out] frame The output picture, its usage can refer mpp_frame.h.
112 MPP_RET (*decode_get_frame)(MppCtx ctx, MppFrame *frame);
114 * @brief both send video frame to encoder and get encoded video stream from
118 * @param[in] frame The input video data, its usage can refer mpp_frame.h.
123 MPP_RET (*encode)(MppCtx ctx, MppFrame frame, MppPacket *packet);
125 * @brief send video frame to encoder only, async interface
128 * @param[in] frame The input video data, its usage can refer mpp_frame.h.
132 MPP_RET (*encode_put_frame)(MppCtx ctx, MppFrame frame);
150 MPP_RET (*isp_put_frame)(MppCtx ctx, MppFrame frame);
154 MPP_RET (*isp_get_frame)(MppCtx ctx, MppFrame *frame);
190 * @brief discard all packet and frame, reset all component,