Tagged Questions

3
votes
3answers
5k views

Any good C/C++ DSP library?

Which DSP library in C/C++ would you recommend? I will need it for real-time embedded systems. It'd be great to have sound signal processing accompany too, but not a mandatory. If you have knowledge ...
1
vote
4answers
706 views

C++ sin wave formula for pogo stick jumping

I need to create a pogo stick that jumps across the screen in arcs. I was thinking the best way to do this would be to move it on a sin wave. If the top of the wave is 1, the ground is 0 and the ...
1
vote
2answers
362 views

Which API should I use for playing audio on Windows?

There are many ways of playing sounds on Windows. Which are the differences, advantages and disavantages of each method? I know there are at least 5 methods: 1991 WinMM.dll/mmsys.dll PlaySound 1995 ...
1
vote
1answer
350 views

C++ boost wave, scoped macro

Is it possible to have scoped macros using custom defined macros through boost wave? I know it should a possible with C++0x however I am working with regular C++. If it is possible, can you provide ...
0
votes
2answers
318 views

Creating a Triangle wave from a Sine wave in C++

I am having trouble finding out how to form a triangle (not sawtooth) wave from a sine wave. I understand how to create it for a Square wave: if( sineValue >= 0 ) value = amp; else ...
0
votes
2answers
891 views

C++ - Play back a tone generated from a sinusoidal wave

Hey everyone, I'm currently trying to figure out how to play back a tone I have generated using a sinusoidal wave. Here's my code: #include <iostream> #include <OpenAL/al.h> #include ...