Lines Matching refs:packet
43 * decode : both send video stream packet to decoder and get video frame from
49 * decode_put_packet: send video stream packet to decoder only, async interface
55 * encode_get_packet: get encoded video packet from 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
88 * @param[in] packet The input video stream, its usage can refer mpp_packet.h.
93 MPP_RET (*decode)(MppCtx ctx, MppPacket packet, MppFrame *frame);
95 * @brief send video stream packet to decoder only, async interface
98 * @param[in] packet The input video stream, its usage can refer mpp_packet.h.
102 MPP_RET (*decode_put_packet)(MppCtx ctx, MppPacket packet);
118 * @param[out] packet The output compressed data, its usage can refer mpp_packet.h.
122 MPP_RET (*encode)(MppCtx ctx, MppFrame frame, MppPacket *packet);
133 * @brief get encoded video packet from encoder only, async interface
136 * @param[out] packet The output compressed data, its usage can refer mpp_packet.h.
140 MPP_RET (*encode_get_packet)(MppCtx ctx, MppPacket *packet);
189 * @brief discard all packet and frame, reset all component,