libsndfile

Undefined Symbol: _sf_open (Simple audio stuff on OSX)

I'm trying to get into C++ programming, and I'm quite struggling against the little details. Right now, I'm trying to get the snippet below to work, and apparently it will compile, but not link. (error message is a the bottom of this post) I'm using libsndfile to open audio files, and the linker doesn't seem to find the corrent library ...

How do I access functions from libsndfile-1.dll in MSVC?

Hi,   I'm having trouble getting libsndfile-1.dll to work in my MSVC project. I can load the library and retrieve the version string from the dll by calling sf_command() from my code. However, I can't seem to get sf__open() to return a SNDFILE pointer. I've also noticed that I can't get fopen() to return a FILE pointer either (maybe th...

Package libsndfile-dev has no installation candidate

I am trying to install "libsndfile-dev". I do the following: sudo apt-get install libsndfile-dev As the result I get the following: Reading package lists... Done Building dependency tree Reading state information... Done Package libsndfile-dev is a virtual package provided by: libsndfile1-dev 1.0.17-4ubuntu0.8.10.2 You shoul...

What should I use in Android when porting C++ code written with libsndfile?

I'm porting a small (<10 classes) C++ project to Java. The project manipulates sound files, and in C++ does this using libsndfile. The code includes stuff like: const int channels = audioFileInfo.channels; ... sf_readf_double( audioFile, inputBuffer, MAX_ECHO ); ... sf_writef_double( outputAudioFile, &currentAudioBuffer[WINDOW_SIZE * ch...