Lines Matching refs:packet
44 * decode : both send video stream packet to decoder and get video frame from
50 * decode_put_packet: send video stream packet to decoder only, async interface
56 * encode_get_packet: get encoded video packet from 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
89 * @param[in] packet The input video stream, its usage can refer mpp_packet.h.
94 MPP_RET (*decode)(MppCtx ctx, MppPacket packet, MppFrame *frame);
96 * @brief send video stream packet to decoder only, async interface
99 * @param[in] packet The input video stream, its usage can refer mpp_packet.h.
103 MPP_RET (*decode_put_packet)(MppCtx ctx, MppPacket packet);
119 * @param[out] packet The output compressed data, its usage can refer mpp_packet.h.
123 MPP_RET (*encode)(MppCtx ctx, MppFrame frame, MppPacket *packet);
134 * @brief get encoded video packet from encoder only, async interface
137 * @param[out] packet The output compressed data, its usage can refer mpp_packet.h.
141 MPP_RET (*encode_get_packet)(MppCtx ctx, MppPacket *packet);
190 * @brief discard all packet and frame, reset all component,