added library folder + changed win build file for jnilib

This commit is contained in:
wirsing
2014-08-14 17:00:46 -07:00
parent 6b545888e0
commit 46e47ed994
4 changed files with 16 additions and 7 deletions
@@ -562,7 +562,7 @@ JNIEXPORT jintArray JNICALL Java_processing_sound_MethClaInterface_soundFilePlay
{ amp, rate },
{ Methcla::Value(str),
Methcla::Value(loop),
Methcla::Value(cue) }
Methcla::Value(int(cue)) }
);
auto pan = request.synth(
@@ -627,7 +627,7 @@ JNIEXPORT jintArray JNICALL Java_processing_sound_MethClaInterface_soundFilePlay
{ amp, rate },
{ Methcla::Value(str),
Methcla::Value(loop),
Methcla::Value(cue) }
Methcla::Value(int(cue)) }
);
auto after = request.synth(
@@ -1228,7 +1228,7 @@ JNIEXPORT jlong JNICALL Java_processing_sound_MethClaInterface_fft(JNIEnv *env,
METHCLA_PLUGINS_FFT_URI,
Methcla::NodePlacement::after(m_nodeId[0]),
{},
{Methcla::Value(fftSize)}
{Methcla::Value(int(fftSize))}
);
request.mapOutput(m_nodeId[0], 0, in_bus);