MX Foundation 4
Acquisition Filtering

The acquisition service can filter out unwanted labels automatically. The mxfCSDBRxAcqMsgSelectSet() function allows the selection of the labels that should be acquired.

HMXF_BUFFER buffer;
uint64 label=005;
uint32 rc;
...
// Acquires only label 005
if (!rc)
rc = mxfCSDBRxAcqMsgSelectSet(buffer, MXF_MSG_SELECT_ONLY, 1, &label);
...
Updated 10/23/2023