Searched refs:decode_put_packet (Results 1 – 11 of 11) sorted by relevance
| /rockchip-linux_mpp/doc/ |
| H A D | Rockchip_Developer_Guide_MPP_CN.md | 174 | length | size_t | 表示缓存空间内有效数据的长度。如果在decode_put_packet调用之后length变为0,说明此包码流己消耗完成。 | 274 | decode_put_packet | 函数指针 | MPP_RET (\*decode_put_packet)(MppCtx ctx, MppPacket packet) <br/>视频解码输… 275 …T (\*decode_get_frame)(MppCtx ctx, MppFrame \*frame) <br/>视频解码输出接口,与decode_put_packet配合使用。 <br/>ct… 298 解码器接口为用户提供了输入码流,输出图像的功能,接口函数为MppApi结构体里的decode_put_packet函数,decode_get_frame函数和decode函数。这组函数提供了最简洁的… 300 ### 3.1.1 decode_put_packet 302 | 接口定义 | MPP_RET decode_put_packet(MppCtx ctx, MppPacket packet) | 314 一种是外部已经按帧分段的数据,即每一包输入给decode_put_packet函数的MppPacket数据都已经包含完整的一帧,不多也不少。在这种情况下,MPP可以直接按包处理码流,是MPP的默认运… 322 这样,调用decode_put_packet输入的MppPacket就会被MPP重新分帧,进入到情况一的处理。 334 输入MppPacket的有效数据长度为length,在送入decode_put_packet之后,如果输入码流被成功地消耗,函数返回值为零(MPP_OK),同时MppPacket的length被清为… 338 decode_put_packet函数的功能是输入待解码码流给MPP实例,但在一些情况下,MPP实例无法接收更多的数据,这时,工作于非阻塞模式的decode_put_packet会报出错误信息并直接… [all …]
|
| H A D | Rockchip_Developer_Guide_MPP_EN.md | 164 …alid data in the buffer space. If the length changes to 0 after the decode_put_packet call the pac… 261 | decode_put_packet | Function pointer | MPP_RET (\*decode_put_packet)(MppCtx ctx, MppPacket packe… 262 …rame) <br>Video decoding output interface, used in conjunction with decode_put_packet. <br>ctx :MP… 283 …ction of input stream and output image. The interface functions are decode_put_packet function, de… 285 ## 3.1.1 decode_put_packet 287 | Interface definition | MPP_RET decode_put_packet(MppCtx ctx, MppPacket packet) | 298 …segmented by frame, that is, each packet of MppPacket data input to decode_put_packet function alr… 305 In this way the MppPacket with broken frame data that input by decode_put_packet will be segmented … 315 The valid data length of input MppPacket is “length”. After input decode_put_packet, if the input s… 319 …decode_put_packet function is to input the raw bitstream to MPP instance, but in some cases the MP… [all …]
|
| /rockchip-linux_mpp/test/ |
| H A D | README.md | 9 use sync interface and async interface(decode_put_packet and decode_get_frame),
|
| H A D | mpi_dec_test.c | 97 ret = mpi->decode_put_packet(ctx, packet); in dec_simple() 297 ret = mpi->decode_put_packet(ctx, packet); in dec_advanced()
|
| H A D | mpi_dec_mt_test.c | 88 ret = mpi->decode_put_packet(ctx, packet); in thread_input()
|
| H A D | mpi_rc2_test.c | 648 ret = ctx->dec_mpi_post->decode_put_packet(ctx->dec_ctx_post, in mpi_rc_dec_post_decode() 997 ret = mpi->decode_put_packet(dec_ctx, packet); in rc2_pre_dec_thread()
|
| H A D | mpi_dec_multi_test.c | 109 ret = mpi->decode_put_packet(ctx, packet); in multi_dec_simple()
|
| /rockchip-linux_mpp/inc/ |
| H A D | rk_mpi.h | 103 MPP_RET (*decode_put_packet)(MppCtx ctx, MppPacket packet); member
|
| /rockchip-linux_mpp/mpp/ |
| H A D | mpi.c | 385 .decode_put_packet = mpi_decode_put_packet,
|
| /rockchip-linux_mpp/debian/ |
| H A D | changelog | 212 * [mpi]: decode_put_packet() would return the internal error
|
| /rockchip-linux_mpp/mpp/legacy/ |
| H A D | vpu_api_legacy.cpp | 510 mpi->decode_put_packet(mpp_ctx, pkt); in init() 961 ret = mpi->decode_put_packet(mpp_ctx, mpkt); in decode_sendstream()
|