| 72 | } |
| 73 | |
| 74 | XnStatus RecorderNode::SetOutputStream(void* pStreamCookie, XnRecorderOutputStreamInterface* pStream) |
| 75 | { |
| 76 | m_pStreamCookie = pStreamCookie; |
| 77 | m_pOutputStream = pStream; |
| 78 | XnStatus nRetVal = OpenStream(); |
| 79 | XN_IS_STATUS_OK(nRetVal); |
| 80 | return XN_STATUS_OK; |
| 81 | } |
| 82 | |
| 83 | XnStatus RecorderNode::OnNodeAdded(const XnChar* strNodeName, XnProductionNodeType type, XnCodecID compression) |
| 84 | { |
no outgoing calls
no test coverage detected