*ASIO Audio Test signal generator specifications

*ASIO is a trademark of Steinberg Media Technologies GmbH



The goal was to produce a generator of audio frequency sine wave signals of the highest possible quality that may be used as a frequency standard for testing all components in the path of the signal. A very thorough specification follows, with the aim to increase the usefulness of the signal generator for sound engineers.


Valid HTML 4.0 Transitional




The sine wave generator

In the quest to create "the perfect wave", the floating point calculations that produce the sine wave employ 80 bits of internal precision. A continous sine wave may be generated at frequencies up to half the sample rate (Nyquist limit). They begin with a fade up and end with a fade down, both equal to some number of whole cycles. (In the end, the frequency can only be as accurate as the clock used by the sound card, but its accuracy will allow one to determine the acuracy of the clock.)

The tone burst is a perfectly symmetrical series of whole waves so as to end up with a negligible DC component. Whatever DC remains is removed, so that for any given frequency of 10 seconds duration or less, the DC level is guaranteed to be 0. The actual DC level before correction is pre-calculated on a sample by sample basis. DC correction is not applied to signals of a duration greater than 10 seconds.



The sweep wave generator

The sweep generator employs a swept sine wave function and does not include DC correction. You may choose between a linear or a logarithmic sweep. It can sweep up or down. The samples are generated in real time - as in the case with the sine wave generator - directly into the the sound card's buffers with no pre-buffering. The minimum frequency is 10 Hz and the maximum frequency is 22050 Hz. Attenuation values allowed are the same as for the tone burst generator. The minimum sweep duration is 0.01 seconds and the maximum is 60 seconds. Duration is rounded up to the nearest multiple of sound buffer's sample size. A linear taper is applied to the end of the signal, of a duration equal to the sound card's buffer sample size. During taper down, the frequency is held at the ending frequency requested.


The white noise generator

The latest version (2.20) has a white Gaussian noise generator. The pseudo-random number generator employs the "Mother-Of-All" generator invented by George Marsaglia and provides an excellent even distribution. The code for this can be found at http://www.agner.org/random/. The overlaid Gaussian window is a codification of the Box–Muller transform in its basic form to provide a zero-centered normal distribution of the samples. The output was thoroughly tested to ensure uniform distribution with a Gaussian curve.


The pink noise generator

The pink noise generator employs an algorithm by Andrew Simper of Vellocet, a C++ implementation derived from the code provided by the following people mainly from the music-dsp mailing list: Allan Herriman, James McCartney, Phil Burk and Paul Kellet and the web page by Robin Whittle: http://www.firstpr.com.au/dsp/pink-noise/

Warning - pink noise contains frequencies below the range of hearing that may damage your speakers at very high levels. Turn down the bass if you want to pump up the sound, or watch your speaker cones for excessive movement.

From Wikipedia: "Pink noise, also known as 1/f noise, is a signal or process with a frequency spectrum such that the power spectral density is proportional to the reciprocal of the frequency. There is equal energy in all octaves (or similar log bundles). In terms of power at a constant bandwidth, 1/f noise falls off at 3 dB per octave. At high enough frequencies 1/f noise is never dominant. (White noise is equal energy per hertz.) 1/f noise occurs in many physical, biological and economic systems." Below are images showing spectral views of the signals produced by the Audio Test Signal Generator


Valid HTML 4.0 Transitional



Note to programmers

The basic algorithm for generating a sine wave couldn't be simpler: sample = amplitude * sin(phaseAngle), but I managed to make it so complicated that it took considerable time to develop this. The difficulties sprang from the desire to generate signals in real time without pre-buffering, and ensuring that the tapers begin and end exactly at the zero crossing. It is not always easy to predict where to find the zero crossing with a broad range of frequencies and durations. With a real time signal, we need to know in advance at what sample number in which buffer load of data it is to be found. DC correction in real time also added to the challenges.