MCPcopy Create free account
hub / github.com/OpenNI/OpenNI / xnConfigureWaveOutputMode

Function xnConfigureWaveOutputMode

Source/OpenNI/XnXmlScriptNode.cpp:170–182  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

168}
169
170XnStatus xnConfigureWaveOutputMode(XnNodeHandle hNode, const TiXmlElement* pOpcode)
171{
172 XnStatus nRetVal = XN_STATUS_OK;
173
174 XnWaveOutputMode Mode;
175 nRetVal = xnXmlReadWaveOutputMode(pOpcode, &Mode);
176 XN_IS_STATUS_OK(nRetVal);
177
178 nRetVal = xnSetWaveOutputMode(hNode, &Mode);
179 XN_IS_STATUS_OK(nRetVal);
180
181 return (XN_STATUS_OK);
182}
183
184XnStatus xnConfigureCropping(XnNodeHandle hNode, const TiXmlElement* pOpcode)
185{

Callers 1

xnConfigureSetOpcodeFunction · 0.85

Calls 2

xnXmlReadWaveOutputModeFunction · 0.85
xnSetWaveOutputModeFunction · 0.85

Tested by

no test coverage detected