views:

228

answers:

4

I'm working on an audio application, written in C. I need to provide live audio playback under Windows. I need to decide which audio API to use. I'm planning to use the basic waveOut API, but I wanted to check to see what the community here recommends.

I want code that will Just Work on any recent version of Windows, with no need to install libraries; and I want minimal latency.

I don't need or want any "effects", I just need to faithfully play whatever wave samples the application generates.

My understanding is that most of the professional audio applications on Windows use ASIO, which gives excellent low latency, but I don't want ASIO because I want my code to Just Work and most people don't have ASIO pre-installed on their computers. (At a later date I may go back and also add ASIO as an option, but I'm going for the most general solution first.)

Is there anything out there that would be better than waveOut for my purposes, or is that the best choice?

+2  A: 

http://www.tutorialhero.com/tutorial-57152-low_level_digital_audio_api.php

This link will might be help you. anyway. thanks.

http://msdn.microsoft.com/en-us/library/dd370784(VS.85).aspx

This is the link where microsoft people will explain you about your question. Read it once.

Sikender
+6  A: 

It depends on what you are trying to do. The basic waveOut audio API is better for streaming audio. It lets you queue up several buffers and have them automatically played in succession. But if audio is playing and you want to change it, or add something to it, that's relatively hard.

DirectX audio is better for event based audio. You can have several things playing at the same time without having to do the mixing yourself. You can add or remove little pieces of audio easily - like playing a sound when the user pulls the trigger on his gun. But streaming (i.e. playing 1 buffer after another) is harder.

waveOut is designed to facilitate playing audio that is constant, like a .mp3 file. DirectX is designed for audio that is intermittent, like feedback in a game.

ASIO is like the worst of waveOut and DirectX in terms of difficulty of programming. And it's not that stable. Applications typically can't share the audio device. But it gives you the lowest latency access to that audio hardware.

ASIO also gives you a way to synchronize playback on multiple devices.

If you don't need to be able to change what is going to be played right before it is played, and you don't need to synchronize multiple devices then you don't need ASIO.

John Knoeller
@John Knoeller and what about XAudio2?
Jader Dias
A: 

in addition to the options mentioned by John Knoeller, there is WASAPI which allows for much lower latencies than WaveOut, but unfortunately is only available from Windows Vista onwards.

Mark Heath
A: 

Having written a DirectSound streaming application myself, I certainly recommend it for low-latency and ease of use. Also, it enables you to set a higher quality format for playback on legacy editions of Windows.

George Edison