| 439 | } |
| 440 | |
| 441 | const char* getCodecName(NodeCodec *pNodeCodec, XnCodecID codecID) |
| 442 | { |
| 443 | for (int i = 0; i < pNodeCodec->nValuesCount; i++) |
| 444 | { |
| 445 | if (pNodeCodec->pValues[i] == codecID) |
| 446 | { |
| 447 | return pNodeCodec->pIndexToName[i]; |
| 448 | } |
| 449 | } |
| 450 | return NULL; |
| 451 | } |
| 452 | |
| 453 | const char* captureGetDepthFormatName() |
| 454 | { |
no outgoing calls
no test coverage detected