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.

请教DVRRDK中SwMsLink_CreateParams结构体问题



在Link API提供的结构体

typedef struct SwMsLink_CreateParams
{
    UInt32      numSwMsInst;
    /**< number of scaler instance in one sw mosaic */

    UInt32      swMsInstId[SYSTEM_SW_MS_MAX_INST];
    /**< scaler ID of each scaler instance */

    UInt32      swMsInstStartWin[SYSTEM_SW_MS_MAX_INST];
    /**< start win ID for each scaler instance */

    …………
} SwMsLink_CreateParams;

中,几个成员我不明白是什么意思。

numSwMsInst:sw mosaic 中实例的个数,我不清楚此处“实例”是什么,该怎么理解,一个mosaic中多个实例是什么意思?

swMsInstId:实例ID,此处使用的实例ID如SYSTEM_SW_MS_SC_INST_DEI_SC_NO_DEI、SYSTEM_SW_MS_SC_INST_SC5这些是个什么概念,实现什么功能?swMsInstId数组中有效的ID数是由numSwMsInst决定的吗?

swMsInstStartWin:每个实例的开始窗口ID,这是个什么意思?怎么有开始ID没有结束ID啊?

请帮忙解答一下,谢谢!