This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

8127 IPNC RDK 3.0 Venc_setDynamicParam

Hi all,

        I meet a problem when I use Venc_setDynamicParam() to set JPEG quality. The serial print out that :

ASSERT (osa_mbx.c|OSA_mbxSendMsg|47)

and JPEG quality do not changed. It seems that the program stop at Venc_setDynamicParam

pls help me. thank U!

I used this function as follow:

    VENC_CHN_DYNAMIC_PARAM_S params = { 0 };

    int pParm = 95;
    params.qpMin     = *(int *) pParm;
    params.qpMax     = *(int *) pParm;
    params.qpInit    = *(int *) pParm;

    Venc_setDynamicParam(2, 0, &params, VENC_QPVAL_I);