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.

DM388: IPNC_RDK_3.9 with MCFW API

Part Number: DM388

Hi,

I try to move our source code from ipnc_rdk_3.8 to ipnc_rdk_3.9 for MCFW.

But I found some structs to be changed.

Do you have any document for the new version?

It's still the old version (Document Revision 2.10) in the ipnc_rdk_3.9,

but the Revision History shows it has v2.11.

2.10 20 Jan 2014 Updated for IPNC RDK 3.8 GA release
2.11 9 Dec 2016 Updated for IPNC RDK 3.9 GA release

For example,

V3.9

/**
    \brief Mega Pixel Scalar link create parameters
*/
typedef struct MpSclrLink_CreateParams
{
    System_LinkInQueParams      inQueParams;
    /**< Input queue information. */
    System_LinkOutQueParams     outQueParams;
    /**< Output queue information. */
    UInt32                      pathId;
    /**< Instace of scalar to be used */
    UInt32                      numCh;
    /**< Number of channels required */
    UInt32                      enableLineSkip;
    /**< Line skip config */
} MpSclrLink_CreateParams;

V3.8
/**
    \brief Mega Pixel Scalar link create parameters
*/
typedef struct MpSclrLink_CreateParams
{
    System_LinkInQueParams      inQueParams;
    /**< Input queue information. */
    System_LinkOutQueParams     outQueParams;
    /**< Output queue information. */
    UInt32                      pathId;
    /**< Instace of scalar to be used */
    UInt32                      numCh;
    /**< Number of channels required */
    UInt32                      enableLineSkip;
    /**< Line skip config */
    UInt32 width;
    /**< ouput width */
    UInt32 height;
    /**< ouput height */        
} MpSclrLink_CreateParams;

Thanks.

S.K.