* @brief Sets the current wave output mode of the AudioGenerator node. This output mode * is used for generating the next audio packet. * * @param [in] OutputMode Mode to set as the current wave output mode. * * Remarks * * The wave output mode is contained in the @ref xn::XnWaveOutputMode struct. It * comprises: bits per sample, channel, and sample rate. */
| 8142 | * comprises: bits per sample, channel, and sample rate. |
| 8143 | */ |
| 8144 | inline XnStatus SetWaveOutputMode(const XnWaveOutputMode& OutputMode) |
| 8145 | { |
| 8146 | return xnSetWaveOutputMode(GetHandle(), &OutputMode); |
| 8147 | } |
| 8148 | |
| 8149 | /** |
| 8150 | * @brief Gets the current AudioGenerator node's wave output mode. This output mode |
no test coverage detected