Play real-time generated PCM data

I am developing a digital audio synthesizer on dsPIC.

Let's start by writing and testing algorithms in Matlab.

For the second phase Im, translating the algorithms into ANSI C (MinGW Compiler) for testing on a Windows PC, before porting to dsPIC.

The audio data will be uncompressed PCM samples. What are the options for playing PCM data generated in C? (preferably in real time)

+4
source share
1 answer

On Windows, you can use the waveOut API.

Here is a tutorial .

+4
source

All Articles