Mpp decoding format problem

How to choose the encoding format for decoding H265 when decoding

You can set the MppCodingType type parameter to MPP_VIDEO_CodingHEVC in the mpp_init function to decode the code stream data in H.265 format.

For example:
ret = mpp_init(ctx, MPP_CTX_DEC, MppCodingType::MPP_VIDEO_CodingHEVC);
if (ret)
{
mpp_err(“mpp_init failed ret %d\n”, ret);
goto MPP_TEST_OUT;
}