Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents  
 
 
WaveformAnalyzer.AnalyzeFullSound method 
 
Remarks 
 
Starts the analysis of the recorded sound in order to allow the creation of bitmaps of the sound's waveform. 
 
During the analysis phase, the container application will be notified about the current advancement through the following events: WaveAnalysisStart, WaveAnalysisPerc and WaveAnalysisStop: after receiving the WaveAnalysisStop event, it will be possible calculating the width in pixels of a bitmap view through the WaveformAnalyzer.GetBitmapViewWidth method and creating bitmaps of the waveform through the WaveformAnalyzer.CreateFileBitmapView and WaveformAnalyzer.CreateMemoryBitmapView methods. 
 
Data resulting from an analysis session can be discarded from memory using the WaveformAnalyzer.FreeMemory method. 
 
This method doesn't require a previous call to the WaveformAnalyzer.Create method because it doesn't need displaying the Waveform Analyzer user interface. 
 
For further details about generating a waveform bitmap of the recorded sound refer to the How to obtain the waveform bitmap of the latest recording session tutorial. 
For details about the use of the Waveform Analyzer refer to the How to use the Waveform Analyzer section. 
For further details about methods of the Waveform Analyzer refer to the WaveformAnalyzer class section. 
 
 
Syntax 
 
[Visual Basic] 
Public Function AnalyzeFullSound
 
[C#] 
public enumErrorCodes AnalyzeFullSound
);
 
[C++] 
public: enumErrorCodes AnalyzeFullSound
);
 
 
 
Return value 
 
Value
Meaning
 
 
Negative value
An error occurred (see the LastError property for further error details)
enumErrorCodes.NOERROR (0)
The method call was successful.
 
 
 
 
 
 
 
 
 
Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents