Home
last modified time | relevance | path

Searched refs:mpp_init (Results 1 – 12 of 12) sorted by relevance

/rockchip-linux_mpp/inc/
H A Drk_mpi.h242 MPP_RET mpp_init(MppCtx ctx, MppCtxType type, MppCodingType coding);
/rockchip-linux_mpp/doc/
H A DRockchip_Developer_Guide_MPP_CN.md260 用户可以通过mpp_create接口获取MppCtx实例以及MppApi结构体,再通过mpp_init来初始化MppCtx的编解码类型与格式,之后通过decode_xxx/encode_xxx以及p…
294 如上图所示,mpp_create,mpp_init,mpp_destroy是操作MppCtx接口的过程,其中mpp_create接口也获取到了MPI接口结构体MppApi,真正的编码与解码过程是通过…
318 另一种是按长度读取的数据,这样的数据无法判断一包MppPacket数据是否是完整的一帧,需要MPP内部进行分帧处理。MPP也可以支持这种形式的输入,但需要在mpp_init之前,通过control接…
390 命令参数为MppFrame,用于配置解码器的默认宽高信息,返回的MppFrame结构会从解码器中带出需要分配的图像缓存大小。命令调用时机一般在mpp_init之后,mpi-\>decode_put_…
664 …odingType | 表示MppEncCodecCfg对应的协议类型,需要与MppCtx初始化函数mpp_init的参数一致。 ![](media/R…
H A DRockchip_Developer_Guide_MPP_EN.md247 …_create function, initialize type of encoding or decoding and format by mpp_init function, and the…
279 As shown in the figure above mpp_create, mpp_init and mpp_destroy are the interfaces of operating M…
301 …it flag through the MPP_DEC_SET_PARSER_SPLIT_MODE command of the control interface before mpp_init.
369 … allocated from the decoder. This command is called usually right after mpp_init and before decode…
385 …s whole frame mode and assume the input is frame segmented. This command is called before mpp_init.
389 …nfluence on error stream flag so it is disabled by default. This command is called before mpp_init.
609 …be consistent with the parameters of the MppCtx initialization function mpp_init.<br>![](media/Roc…
/rockchip-linux_mpp/test/
H A Dmpi_rc2_test.c444 ret = mpp_init(enc_ctx, MPP_CTX_ENC, enc_cmd->type); in mpi_rc_enc_init()
625 ret = mpp_init(dec_ctx, MPP_CTX_DEC, enc_cmd->type); in mpi_rc_post_dec_init()
760 ret = mpp_init(dec_ctx, MPP_CTX_DEC, ctx->dec_type); in mpi_rc_pre_dec_init()
H A Dmpi_dec_mt_test.c282 ret = mpp_init(ctx, MPP_CTX_DEC, type); in mt_dec_decode()
H A Dmpi_dec_nt_test.c375 ret = mpp_init(ctx, MPP_CTX_DEC, type); in dec_nt_decode()
H A Dmpi_dec_multi_test.c473 ret = mpp_init(ctx, MPP_CTX_DEC, type); in multi_dec_decode()
H A Dmpi_dec_test.c510 ret = mpp_init(ctx, MPP_CTX_DEC, type); in dec_decode()
H A Dmpi_enc_mt_test.c576 ret = mpp_init(p->ctx, MPP_CTX_ENC, p->type); in mt_test_res_init()
H A Dmpi_enc_test.c1194 ret = mpp_init(p->ctx, MPP_CTX_ENC, p->type); in enc_test()
/rockchip-linux_mpp/mpp/
H A Dmpi.c446 MPP_RET mpp_init(MppCtx ctx, MppCtxType type, MppCodingType coding) in mpp_init() function
/rockchip-linux_mpp/mpp/legacy/
H A Dvpu_api_legacy.cpp426 ret = mpp_init(mpp_ctx, type, (MppCodingType)ctx->videoCoding); in init()