Hi!
I want to play an ultra sound but no sound is played.
Actually I'm on ubuntu 14.04 64 bits version.
Here is the code.
#include <SFML/Audio.hpp>
int main(int argc, char* argv[]) {
std::vector<sf::Int16> samples = {10000};
sf::SoundBuffer buffer;
buffer.loadFromSamples(samples.data(),samples.size(),1,44100);
sf::Sound sound;
sound.setBuffer(buffer);
sound.setLoop(true);
sound.play();
while (true) {}
return 0;
}
I've turn down the frequency to listen if it works.
std::vector<sf::Int16> samples = {10000};
This is a vector with only one element.
This single value is then looped causing a flat waveform - silence.