| 138 | } |
| 139 | |
| 140 | XnStatus PlayerNode::SetInputStream(void *pStreamCookie, XnPlayerInputStreamInterface *pStream) |
| 141 | { |
| 142 | XN_VALIDATE_INPUT_PTR(pStream); |
| 143 | m_pStreamCookie = pStreamCookie; |
| 144 | m_pInputStream = pStream; |
| 145 | XnStatus nRetVal = OpenStream(); |
| 146 | XN_IS_STATUS_OK(nRetVal); |
| 147 | return XN_STATUS_OK; |
| 148 | } |
| 149 | |
| 150 | XnStatus PlayerNode::SetNodeNotifications(void *pNotificationsCookie, XnNodeNotifications *pNodeNotifications) |
| 151 | { |
no outgoing calls
no test coverage detected