annotate src/portaudio_20140130/bindings/java/jportaudio.dox @ 169:223a55898ab9 tip default

Add null config files
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 02 Mar 2020 14:03:47 +0000
parents e3d5853d5918
children
rev   line source
cannam@124 1 /**
cannam@124 2 @page java_binding JPortAudio Java Binding
cannam@124 3 @ingroup jportaudio
cannam@124 4
cannam@124 5 <i>Note: this page has not been reviewed, and may contain errors.</i>
cannam@124 6
cannam@124 7 @section java_draft DRAFT - IN PROGRESS
cannam@124 8
cannam@124 9 9/4/12 JPortAudio is very new and should be considered an "alpha" release.
cannam@124 10 The building of JPortAudio will eventually be integrated into the Makefile as an optional build.
cannam@124 11
cannam@124 12 Currently JPortAudio is only supported for Windows and Macintosh. Please contact us if you want to help with porting Linux.
cannam@124 13
cannam@124 14 For reference documentation of the JPortAudio API see: com.portaudio.PortAudio
cannam@124 15
cannam@124 16 For an example see: PlaySine.java
cannam@124 17
cannam@124 18 @section java_comp_windows Building JPortAudio on Windows
cannam@124 19
cannam@124 20 Build the Java code using the Eclipse project in "jportaudio". Export as "jportaudio.jar".
cannam@124 21
cannam@124 22 If you modify the JNI API then you will need to regenerate the JNI .h files using:
cannam@124 23
cannam@124 24 @code
cannam@124 25 cd bindings/java/scripts
cannam@124 26 make_header.bat
cannam@124 27 @endcode
cannam@124 28
cannam@124 29 Build the JNI DLL using the Visual Studio 2010 solution in "java/c/build/vs2010/PortAudioJNI".
cannam@124 30
cannam@124 31 @section java_use_windows Using JPortAudio on Windows
cannam@124 32
cannam@124 33 Put the "jportaudio.jar" in the classpath for your application.
cannam@124 34 Place the following libraries where they can be found, typically in the same folder as your application.
cannam@124 35
cannam@124 36 - portaudio_x86.dll
cannam@124 37 - portaudio_x64.dll
cannam@124 38 - jportaudio_x86.dll
cannam@124 39 - jportaudio_x64.dll
cannam@124 40
cannam@124 41 @section java_comp_max Building JPortAudio on Mac
cannam@124 42
cannam@124 43 These are notes from building JPortAudio on a Mac with 10.6.8 and XCode 4.
cannam@124 44
cannam@124 45 I created a target of type 'C' library.
cannam@124 46
cannam@124 47 I added the regular PortAudio frameworks plus the JavaVM framework.
cannam@124 48
cannam@124 49 I modified com_portaudio_PortAudio.h and com_portaudio_BlockingStream.h so that jni.h could found.
cannam@124 50
cannam@124 51 @code
cannam@124 52 #if defined(__APPLE__)
cannam@124 53 #include <JavaVM/jni.h>
cannam@124 54 #else
cannam@124 55 #include <jni.h>
cannam@124 56 #endif
cannam@124 57 @endcode
cannam@124 58
cannam@124 59 This is bad because those header files are autogenerated and will be overwritten.
cannam@124 60 We need a better solution for this.
cannam@124 61
cannam@124 62 I had trouble finding the "libjportaudio.jnilib". So I added a Build Phase that copied the library to "/Users/phil/Library/Java/Extensions".
cannam@124 63
cannam@124 64 On the Mac we can create a universal library for both 32 and 64-bit JVMs. So in the JAR file I will open "jportaudio" on Apple. ON WIndows I will continue to open "jportaudio_x64" and "jportaudio_x86".
cannam@124 65 */