Lines Matching +full:video +full:- +full:encoder

8  *      http://www.apache.org/licenses/LICENSE-2.0
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
48 * encoder at the same time.
50 * decode_put_packet: send video stream packet to decoder only, async interface
52 * decode_get_frame : get video frame from decoder only, async interface
54 * encode_put_frame : send video frame to encoder only, async interface
56 * encode_get_packet: get encoded video packet from encoder only, async interface
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.
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.
105 * @brief get video frame from decoder only, async interface
114 * @brief both send video frame to encoder and get encoded video stream from
115 * encoder at the same time
118 * @param[in] frame The input video data, its usage can refer mpp_frame.h.
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.
134 * @brief get encoded video packet from encoder only, async interface
191 * for both decoder and encoder
234 * @brief Call after mpp_create to setup mpp type and video format.
237 * @param[in] type specify decoder or encoder, refer to MppCtxType.
238 * @param[in] coding specify video compression coding, refer to MppCodingType.
255 * @param[in] type specify decoder or encoder, refer to MppCtxType.
256 * @param[in] coding specify video compression coding, refer to MppCodingType.
257 * @return 0 for support, -1 for unsupported.