| 474 | } |
| 475 | |
| 476 | XnStatus XN_CALLBACK_TYPE PlayerImpl::OnNodeNewData(void* pCookie, const XnChar* strNodeName, XnUInt64 nTimeStamp, XnUInt32 nFrame, const void* pData, XnUInt32 nSize) |
| 477 | { |
| 478 | XN_VALIDATE_INPUT_PTR(pCookie); |
| 479 | PlayerImpl* pThis = (PlayerImpl*)pCookie; |
| 480 | return pThis->SetNodeNewData(strNodeName, nTimeStamp, nFrame, pData, nSize); |
| 481 | } |
| 482 | |
| 483 | XnStatus PlayerImpl::AddNode(const XnChar* strNodeName, XnProductionNodeType type, XnCodecID /*compression*/) |
| 484 | { |
no test coverage detected