I'm manipulating .wav audio files in Android.
So far things are going well (I can record a .wav file from the mic, add echoes etc.), but I'd like to mimic the behaviour of sf_readf_double() and sf_writef_double as per libsndfile in C++ to implement more complex filters.
I have a com.sun.media.sound.WaveFileReader and WaveFileWriter objects and I'm getting at the audio data using

stream = wfr.getAudioInputStream(new File(inputAudioFileName));

which returns an AudioInputStream.
Is it just a case of reading 8 bytes from the stream at a time into a double or is there more to it than that? I'm a little confused as other filters I'm using seem to manipulate shorts rather than doubles.

link|improve this question

1  
Please use newlines to make your question clearer. – the_drow Jan 3 '11 at 23:40
feedback

1 Answer

up vote 1 down vote accepted

Try this:

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

Check this:

android-ndk

link|improve this answer
Thanks Leniel, but that's my own question. I've since abandoned the JNI route, so that's not much help. – Tom Medley Jan 4 '11 at 0:01
Oh... sorry, should have looked the asker! :) – Leniel Macaferi Jan 4 '11 at 0:02
Thanks for the ndk link, that looks pretty useful, although I have no experience with the ndk/jni. I'll have a look and see if I can get it working though. – Tom Medley Jan 4 '11 at 23:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.