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.

subframe功能开启失败,如何解决?

如图所示,captureoutprm里面有usbframe的功能选项,但是编译失败。

  • 你好,

    ipnc rdk或者dvr rdk的demo都不支持sub frame capture的功能。

    我了解到是hdvpss 1.0.1.44的驱动时支持sub frame capture的功能。你能否现在驱动上运行成功,然后在集成到rdk里?

  • 你好,我确实在 capturelin_drv.c中找到了sub frame capture的设置。
    在CaptureLink_drvInitCreateArgs()函数中设置如下:
    pOutInfo->scEnable = FALSE;
    pOutInfo->subFrameModeEnable = TRUE;
    pOutInfo->numLinesInSubFrame = 270;
    pOutInfo->subFrameCb = captureApp_subFrame_callback;

    按理来说,capture应该在捕获270行后,就将图像数据放入帧的队列里。

    但是我实验出来,framelist中的一帧还是1080行的图像,并没有分为子帧,这是为什么呢?