* @brief Gets the total number of frames a specific node has in the recording. * * @param [in] strNodeName Name of the node for which to retrieve the number of frames. * @param [out] nFrames Retrieved number of frames. * */
| 3984 | * |
| 3985 | */ |
| 3986 | inline XnStatus GetNumFrames(const XnChar* strNodeName, XnUInt32& nFrames) const |
| 3987 | { |
| 3988 | return xnGetPlayerNumFrames(GetHandle(), strNodeName, &nFrames); |
| 3989 | } |
| 3990 | |
| 3991 | /** |
| 3992 | * @copybrief xnGetPlayerSupportedFormat |
no test coverage detected