2018-01-26 11:52:34 -08:00
|
|
|
%include "../common_top.i"
|
2015-08-05 19:43:31 +03:00
|
|
|
|
2018-01-26 11:52:34 -08:00
|
|
|
/* BEGIN Java syntax ------------------------------------------------------- */
|
|
|
|
#ifdef SWIGJAVA
|
|
|
|
%include "arrays_java.i"
|
2015-08-05 19:43:31 +03:00
|
|
|
|
2015-09-07 19:00:30 +03:00
|
|
|
%typemap(jni) (uint16_t *buffer, int len) "jshortArray";
|
|
|
|
%typemap(jtype) (uint16_t *buffer, int len) "short[]";
|
|
|
|
%typemap(jstype) (uint16_t *buffer, int len) "short[]";
|
2015-09-01 15:52:35 +03:00
|
|
|
|
2015-09-07 19:00:30 +03:00
|
|
|
%typemap(javain) (uint16_t *buffer, int len) "$javainput";
|
2015-09-01 15:52:35 +03:00
|
|
|
|
2015-09-07 19:00:30 +03:00
|
|
|
%typemap(in) (uint16_t *buffer, int len) {
|
2015-09-01 15:52:35 +03:00
|
|
|
$1 = (uint16_t *) JCALL2(GetShortArrayElements, jenv, $input, NULL);
|
|
|
|
$2 = JCALL1(GetArrayLength, jenv, $input);
|
|
|
|
}
|
|
|
|
|
2015-09-07 19:00:30 +03:00
|
|
|
%typemap(freearg) (uint16_t *buffer, int len) {
|
2015-09-01 15:52:35 +03:00
|
|
|
JCALL3(ReleaseShortArrayElements, jenv, $input, (jshort *)$1, 0);
|
|
|
|
}
|
|
|
|
|
2015-09-07 19:00:30 +03:00
|
|
|
%typemap(jni) (int numberOfSamples, uint16_t *buffer) "jshortArray";
|
|
|
|
%typemap(jtype) (int numberOfSamples, uint16_t *buffer) "short[]";
|
|
|
|
%typemap(jstype) (int numberOfSamples, uint16_t *buffer) "short[]";
|
2015-09-01 15:52:35 +03:00
|
|
|
|
2015-09-07 19:00:30 +03:00
|
|
|
%typemap(javain) (int numberOfSamples, uint16_t *buffer) "$javainput";
|
2015-09-01 15:52:35 +03:00
|
|
|
|
2015-09-07 19:00:30 +03:00
|
|
|
%typemap(in) (int numberOfSamples, uint16_t *buffer) {
|
2015-09-01 15:52:35 +03:00
|
|
|
$2 = (uint16_t *) JCALL2(GetShortArrayElements, jenv, $input, NULL);
|
|
|
|
$1 = JCALL1(GetArrayLength, jenv, $input);
|
|
|
|
}
|
|
|
|
|
2015-09-07 19:00:30 +03:00
|
|
|
%typemap(freearg) (int numberOfSamples, uint16_t *buffer) {
|
2015-09-01 15:52:35 +03:00
|
|
|
JCALL3(ReleaseShortArrayElements, jenv, $input, (jshort *)$2, 0);
|
|
|
|
}
|
|
|
|
|
2018-01-26 11:52:34 -08:00
|
|
|
JAVA_JNI_LOADLIBRARY(javaupm_mic)
|
|
|
|
#endif
|
|
|
|
/* END Java syntax */
|
2015-11-23 17:04:32 +02:00
|
|
|
|
2018-01-26 11:52:34 -08:00
|
|
|
/* BEGIN Javascript syntax ------------------------------------------------- */
|
|
|
|
#ifdef SWIGJAVASCRIPT
|
|
|
|
%include "../carrays_uint16_t.i"
|
|
|
|
#endif
|
|
|
|
/* END Javascript syntax */
|
|
|
|
|
|
|
|
/* BEGIN Python syntax ----------------------------------------------------- */
|
|
|
|
#ifdef SWIGPYTHON
|
|
|
|
%include "../carrays_uint16_t.i"
|
|
|
|
#endif
|
|
|
|
/* END Python syntax */
|
|
|
|
|
|
|
|
/* BEGIN Common SWIG syntax ------------------------------------------------- */
|
|
|
|
%{
|
|
|
|
#include "mic.hpp"
|
|
|
|
%}
|
|
|
|
%include "mic.hpp"
|
|
|
|
/* END Common SWIG syntax */
|