You are reading help file online using chmlib.com
|
ISpPhrase::Discard discards the requested data from a phrase object.
HRESULT Discard(
DWORD dwValueTypes
;)
Value | Description |
---|---|
S_OK | Function completed successfully. |
E_INVALIDARG | dwValueTypes is not a valid value type flag. |
FAILED(hr) | Appropriate error message. |
Applications that have no use for certain types of retained data, and will be persisting or serializing the phrase or result objects, may discard the unnecessary data. For example, an application performing offline transcription may need to retain only the audio and the final result. It can call ::Discard with SPDF_ALTERNATES to eliminate the alternate data (possibly including a large amount of private engine data).
Note that once retained audio is discarded, a call to ISpRecoResult::GetAudio will fail.
The following code snippet illustrates the use of ISpRecoResult::Discard as inherited from ISpPhrase to discard the retained audio.
HRESULT hr = S_OK;
// .. get a recognition result object from the SR engine
// discard audio
hr = cpRecoResult->Discard(SPDF_AUDIO);
// Check hr
// .. serialize the "shrunken" result to the disk ...
You are reading help file online using chmlib.com
|