Home
last modified time | relevance | path

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

/rockchip-linux_mpp/doc/
H A DRockchip_Developer_Guide_MPP_CN.md277 …RET (\*encode_put_frame)(MppCtx ctx, MppFrame frame) <br/>视频编码输入接口,与encode_get_packet配合使用。 <br/>ct…
278 | encode_get_packet | 函数指针 | MPP_RET (\*encode_get_packet)(MppCtx ctx, MppPacket \*packet) <br/>视频编…
539 编码器接口为用户提供了输入图像,输出码流的功能,接口函数为MppApi结构体里的encode_put_frame函数, encode_get_packet函数和encode函数。这组函数提供了简洁的…
557 ### 3.4.2 encode_get_packet
559 | 接口定义 | MPP_RET encode_get_packet(MppCtx ctx, MppPacket \*packet) |
567 …据(I/P slice)两部分,头信息需要通过control接口的MPP_ENC_GET_EXTRA_INFO命令获取,图像数据则是通过encode_get_packet接口来获取。获取的时机是在…
571 目前硬件固定输出带00 00 00 01起始码的码流,所以encode_get_packet函数获取到码流都是带有00 00 00 01起始码。如果需要去掉起始码,可以从起始码之后的地址进行拷贝。
575 由于使用encode_put_frame和encode_get_packet接口时没有提供配置输出缓存的方法,所以使用encode_get_packet时一定会进行一次拷贝。一般来说,编码器的输出码…
H A DRockchip_Developer_Guide_MPP_EN.md264 …frame) <br>Video encoding input interface, used in conjunction with encode_get_packet. <br>ctx :MP…
265 | encode_get_packet | Function pointer | MPP_RET (\*encode_get_packet)(MppCtx ctx, MppPacket \*pac…
513 …ions . The interface function is the encode_put_frame function, the encode_get_packet function and…
531 ## 3.4.2 encode_get_packet
533 | Interface definition | MPP_RET encode_get_packet(MppCtx ctx, MppPacket \*packet) …
541 …f the control interface, and the image data is obtained through the encode_get_packet interface. T…
545 …ware fixed output stream with the start code of 00 00 00 01, so the encode_get_packet function get…
549 … when using the encode_put_frame and encode_get_packet interfaces, a copy will be made when using
/rockchip-linux_mpp/inc/
H A Drk_mpi.h141 MPP_RET (*encode_get_packet)(MppCtx ctx, MppPacket *packet); member
/rockchip-linux_mpp/mpp/
H A Dmpi.c389 .encode_get_packet = mpi_encode_get_packet,
/rockchip-linux_mpp/test/
H A Dmpi_rc2_test.c825 ctx->enc_mpi->encode_get_packet(ctx->enc_ctx, &ctx->enc_pkt); in mpi_rc_enc()
H A Dmpi_enc_mt_test.c900 ret = mpi->encode_get_packet(ctx, &packet); in enc_test_output()
H A Dmpi_enc_test.c1018 ret = mpi->encode_get_packet(ctx, &packet); in test_mpp_run()
/rockchip-linux_mpp/mpp/legacy/
H A Dvpu_api_legacy.cpp1485 ret = mpi->encode_get_packet(mpp_ctx, &packet); in encoder_getstream()