Click here to Skip to main content
15,885,546 members
Articles / Desktop Programming / MFC
Article

Simple Audio Out Oscilloscope and Spectrum Analyzer

Rate me:
Please Sign up or sign in to vote.
4.71/5 (37 votes)
26 Jul 2006CPOL2 min read 386.7K   30.8K   192   75
An example of how to access the Audio Mix, sample audio output, and a simple DSP processing.

Sample Image

Introduction

This is a simple application I built to understand the basics of the Windows Audio WAVE API, and to get a basic grasp on Fast Fourier Transforms (FFTs). Features of the application are: double buffering graphics, sampling an audio source, selecting an audio recording source using the mixer, calculating the FFT spectrum array, and plotting sampled data.

Background

I won't discus the details of FFT here as the math is a little beyond me. Basically, it involves complex numbers (those number like sqrt(-1)) and calculating discrete Sin/Cos transformations on sampled date. Google for many and better explanations on FFT.

Using the code

If you look through the example, you will find it quite a simple affair that has not been touched by MFC. This means that the code is easy to follow and easy to transplant into your projects. The basic flow of the program is:

  • Load a dialog window and initialize it.
  • Select the recording device (which is harder than it should be!).
  • Initialize the WAVE structures.
  • Activate the sampling.
  • Determine the status of the sampling.
  • Process the sampled data using FFT.
  • Clean up.

In the FFT process, I load the sampled data into an iterator class for processing within the FFT class. This allow for selective processing of the sampled data. In this case, I sampled the recording source in stereo, and I can selectively process the left or the right channels within the FFT class, or both channels at once. Both classes are simple to follow and to implement.

Points of interest

The audio device API within Windows is far more complex than it should be. This is pretty common when dealing with Microsoft, they never seem to make things easy! A classic example is dealing with the Audio Mixer. It took some time to find some code that can do the most basic of tasks (select a recording device), and even that is not 100% perfect. Device drivers may incorrectly label a recording device as a WAVEOUT device and the program will return an error when trying to record from it, so look out for such errors (use the VC6 debugger to determine the fault in such occurrences).

In fact, I would not recommend using the WAVE API for anything too complex as it tends to be a bit tricky to use, instead look at the Simple Directmedia Layer library, and specifically the mixer lib, which is a good example of making things simple and useful to the programmer.

The FFT implementation probably isn't the fastest around. I originally converted the source from a Java class, and then optimized the Cos/Sin processing to implement a look up table to speed things up significantly, and added a few helper methods; otherwise it has remained unchanged.

History

  • Updated the spectrum graphics to be more equalised.
  • Fixed a number of small bugs.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
New Zealand New Zealand
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Generalsound card with 3 mixers Pin
kenadams11129-Mar-07 3:15
kenadams11129-Mar-07 3:15 
GeneralMore Advanced Version of Audio Scope Pin
Steven De Toni26-Mar-07 18:21
Steven De Toni26-Mar-07 18:21 
QuestionAny flowchart or psuedo code available for this project Pin
Vidyadhar_India26-Mar-07 16:58
Vidyadhar_India26-Mar-07 16:58 
AnswerRe: Any flowchart or psuedo code available for this project Pin
Steven De Toni26-Mar-07 18:18
Steven De Toni26-Mar-07 18:18 
Questionhow to get amplitude and frequency Pin
lowkt2-Mar-07 3:34
lowkt2-Mar-07 3:34 
QuestionStrange behaviour and Equalizer Pin
GianniGP29-Jan-07 0:09
GianniGP29-Jan-07 0:09 
AnswerRe: Strange behaviour and Equalizer Pin
GianniGP31-Jan-07 3:45
GianniGP31-Jan-07 3:45 
QuestionRe: Strange behaviour and Equalizer Pin
jeffhcliu9-Jun-07 10:17
jeffhcliu9-Jun-07 10:17 
Hi Gianni.

Could you please help me in converting this code for use in a Windows Form already implemented? Thank you.

As explained in my earlier post, I have already implemented a Visual C++ Form with an infinite loop that does a bunch of things. Now I would like to retrieve microphone input amplitude as well as FFT data utilizing Steven's code.

Do you have any idea on how to do this? I am just too stupid to change this dialog box and message scheme into the functions I want. I have already done quite a bit of research and reasonably understand how Steven's program works, using dialogbox and various messages, but still can't get my head around converting them. How did you convert them into callback FUNCTIONS and what should I use for parameters such as (WAVEHDR*) lParam?

One thing to note is that I do not want ONLY this program/features to be run as there will also be other things that have to be processed as well in the infinite loop.

Any help or direction will be much appreciated. Thank you very much.

Regards,
Jeff
GeneralWant to convert this in C# Pin
Indian Ocean7-Jan-07 3:13
Indian Ocean7-Jan-07 3:13 
GeneralRe: Want to convert this in C# Pin
Steven De Toni10-Jan-07 16:01
Steven De Toni10-Jan-07 16:01 
GeneralRe: Want to convert this in C# Pin
Tauhid Shaikh23-Sep-07 19:58
Tauhid Shaikh23-Sep-07 19:58 
GeneralRe: Want to convert this in C# Pin
osirisgothra7-Nov-07 2:37
osirisgothra7-Nov-07 2:37 
GeneralSmall bug for spectrum calculation Pin
mcanti2-Dec-06 1:19
mcanti2-Dec-06 1:19 
QuestionCompile ERROR in VC 2003? [modified] Pin
descartes5-Nov-06 23:33
descartes5-Nov-06 23:33 
AnswerRe: Compile ERROR in VC 2003? Pin
Estrayk11-Feb-07 7:13
Estrayk11-Feb-07 7:13 
GeneralRe: Compile ERROR in VC 2003? Pin
CarEnMDC11-Apr-07 18:03
CarEnMDC11-Apr-07 18:03 
QuestionJust a bit of help needed Pin
morfyh10-Oct-06 6:05
morfyh10-Oct-06 6:05 
AnswerRe: Just a bit of help needed Pin
Steven De Toni10-Oct-06 10:04
Steven De Toni10-Oct-06 10:04 
GeneralRe: Just a bit of help needed Pin
morfyh10-Oct-06 21:23
morfyh10-Oct-06 21:23 
QuestionModifications/improvement Pin
Irlande7818-Sep-06 3:17
Irlande7818-Sep-06 3:17 
NewsRe: Modifications/improvement Pin
MacGadger13-Oct-06 17:16
MacGadger13-Oct-06 17:16 
QuestionRe: Modifications/improvement Pin
Irlande7813-Oct-06 23:27
Irlande7813-Oct-06 23:27 
AnswerRe: Modifications/improvement Pin
Steven De Toni13-Oct-06 23:57
Steven De Toni13-Oct-06 23:57 
GeneralRe: Modifications/improvement Pin
Steven De Toni13-Oct-06 23:41
Steven De Toni13-Oct-06 23:41 
QuestionRe: Modifications/improvement Pin
Irlande7814-Oct-06 0:09
Irlande7814-Oct-06 0:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.