Home
last modified time | relevance | path

Searched refs:encode_put_frame (Results 1 – 8 of 8) sorted by relevance

/rockchip-linux_mpp/inc/
H A Drk_mpi.h132 MPP_RET (*encode_put_frame)(MppCtx ctx, MppFrame frame); member
/rockchip-linux_mpp/doc/
H A DRockchip_Developer_Guide_MPP_CN.md277 | encode_put_frame | 函数指针 | MPP_RET (\*encode_put_frame)(MppCtx ctx, MppFrame frame) <br/>视频编码输入接口…
278 …\*encode_get_packet)(MppCtx ctx, MppPacket \*packet) <br/>视频编码输出接口,与encode_put_frame配合使用。 <br/>ctx…
539 编码器接口为用户提供了输入图像,输出码流的功能,接口函数为MppApi结构体里的encode_put_frame函数, encode_get_packet函数和encode函数。这组函数提供了简洁的…
541 ### 3.4.1 encode_put_frame
543 | 接口定义 | MPP_RET encode_put_frame(MppCtx ctx, MppFrame frame) |
551 …度下降,所以编码器的输入函数需要等待编码器硬件完成对输入图像内存的使用,才能把输入函数返回,把使用后的图像归还给调用者。基于以上的考虑,encode_put_frame是阻塞式函数,会把调用者阻塞…
575 由于使用encode_put_frame和encode_get_packet接口时没有提供配置输出缓存的方法,所以使用encode_get_packet时一定会进行一次拷贝。一般来说,编码器的输出码…
H A DRockchip_Developer_Guide_MPP_EN.md264 | encode_put_frame | Function pointer | MPP_RET (\*encode_put_frame)(MppCtx ctx, MppFrame frame) <…
265 …\*packet) Video encoding output interface, used in conjunction with encode_put_frame. <br>ctx :MPP…
513 …tion and bitstream output functions . The interface function is the encode_put_frame function, the…
515 ## 3.4.1 encode_put_frame
517 | Interface definition | MPP_RET encode_put_frame(MppCtx ctx, MppFrame frame) |
525 …ge is returned to the caller. Based on the above considerations the encode_put_frame is a blocking…
549 Since there is no way to configure the output buffer when using the encode_put_frame and encode_get…
/rockchip-linux_mpp/mpp/
H A Dmpi.c388 .encode_put_frame = mpi_encode_put_frame,
/rockchip-linux_mpp/test/
H A Dmpi_rc2_test.c824 ctx->enc_mpi->encode_put_frame(ctx->enc_ctx, frm); in mpi_rc_enc()
H A Dmpi_enc_mt_test.c853 ret = mpi->encode_put_frame(ctx, frame); in enc_test_input()
H A Dmpi_enc_test.c1008 ret = mpi->encode_put_frame(ctx, frame); in test_mpp_run()
/rockchip-linux_mpp/mpp/legacy/
H A Dvpu_api_legacy.cpp1465 ret = mpi->encode_put_frame(mpp_ctx, frame); in encoder_sendframe()