Note
Please see Azure Cognitive Services for Speech documentation for the latest supported speech solutions.
Microsoft Speech Platform
ISpPhrase::Discard
ISpPhrase::Discard removes and discards the specified data from a phrase object.
<pre IsFakePre="true" xmlns="http://www.w3.org/1999/xhtml"> <strong>HRESULT Discard(</strong> <strong> DWORD</strong> <em>dwValueTypes</em> <strong>;)</strong> </pre>
Parameters
- dwValueTypes
[in] Flags of type SPVALUETYPE indicating elements to discard. Multiple values may be combined.
Return Values
Value | Description |
---|---|
S_OK | Function completed successfully. |
E_INVALIDARG | dwValueTypes is not a valid value type flag. |
FAILED(hr) | Appropriate error message. |
Remarks
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.
Example
The following code snippet illustrates the use of ISpRecoResult::Discard as inherited from ISpPhrase to discard the retained audio.
`
// Declare local identifiers: HRESULT hr = S_OK; CComPtr<ISpRecoResult> cpRecoResult;`// ... Get a recognition result object from the SR engine ...
// Discard audio. hr = cpRecoResult->Discard(SPDF_AUDIO);
if (SUCCEEDED (hr)) { // Serialize the "shrunken" result // to the disk or do other stuff. }