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.

Enc Error



Hi, we use 8168, RDK2.8.

There has an error as following:

 [m3video] 126484:WARN
 [m3video] ENCLINK:ERROR in Enclink_h264EncodeFrameBatch.Status[-1] for IVAHD_0
 [m3video] 126484:WARN
 [m3video] ENC : IVAHDID : 0 ENCLINK:ERROR in EncLink_SubmitBatch.Status[-1]
 [m3video] 126500:!ERROR!:ENCLINK::links_m3video/iva_enc/encLink_h264.c:[401]::INTERNAL ERROR:-1
 [m3video] ALGPROCESS FAILED
 [m3video] Number of Entries in Process List : 1
 [m3video] Extended error for entry 0 : 0x20c000

  • The error indicates following error bits are set:

    Error Bit14: XDM_UNSUPPORTEDPARAM

    Error Bit15: XDM_FATALERROR

    Error Bit21 : IH264ENC_UNSUPPORTED_RATECONTROLPARAMS

    Check if you are setting invlid rate control params.

     

  • Hi, Badri. Thanks very much for your help.

         The ratecontrol mode is VBR, and the param of   vencPrm->qp is dynamic input .

               params.qpMin    = vencPrm->qp;
                params.qpMax    = vencPrm->qp;
                System_linkControl(gVencModuleContext.encId, ENC_LINK_CMD_SET_CODEC_QP_I, &params, sizeof(params), TRUE);
                System_linkControl(gVencModuleContext.encId, ENC_LINK_CMD_SET_CODEC_QP_P, &params, sizeof(params), TRUE);

    what's wrong?