You are reading help file online using chmlib.com
|
ISpRecognizer::GetInputStream retrieves the input stream that is currently being used.
HRESULT GetInputStream(
ISpStreamFormat **ppStream
);
Value | Description |
---|---|
S_OK | Function completed successfully. |
E_POINTER | ppStream is invalid or bad. |
SPERR_NOT_SUPPORTED_FOR_SHARED_RECOGNIZER | Method is not available when using the shared recognizer. |
FAILED(hr) | Appropriate error message. |
Applications will not normally need to use this method, but it can be used to find the specific audio input stream that is being used. This method can be used only on InProc recognizers, not on the shared recognizer.
The returned object will implement IStream, ISpStreamFormat, and ISpAudio for real-time streams. Applications should not use methods on these interfaces that actually change the state of the audio device or read data from it. For example, reading data from the application with IStream::Read will prevent the correct data from being passed to the SR engine. Altering the state of the audio using ISpAudio::SetState will put the audio device into an unexpected state and may cause errors. All control of the audio is done by SAPI.
You are reading help file online using chmlib.com
|