Hello, everyone
I have a question about CaptureNode.
My project need run two threads, these input are all CaptureNode's output.
In TDA4X, we can get CaptureNode's output by
while(1)
{
vxGraphParameterDequeueDoneRef
vxGraphParameterEnqueueReadyRef
}
But I think there must be some problem If two threads all run vxGraphParameterDequeueDoneRef and vxGraphParameterEnqueueReadyRef.
Some I think I need to send CaptureNode's to two pipeline by
vxSetGraphScheduleConfig
for this vxGraphParameterDequeueDoneRef and vxGraphParameterEnqueueReadyRef can get frame by different index.
But I don't know how to send CaptureNode's output to differnet index by vxSetGraphScheduleConfig.
I think I need some help, thank you.
best regard