aboutsummaryrefslogtreecommitdiffstats
path: root/alsoftrc.sample
Commit message (Expand)AuthorAgeFilesLines
* Update config file commentsChris Robinson2014-03-091-17/+29
* Use OpenDataFile to load soundfonts relative to data directoriesChris Robinson2014-02-271-1/+7
* Add a note that absolute paths may be used for hrtf_tablesChris Robinson2014-02-271-0/+1
* Fix a config option commentChris Robinson2014-02-231-3/+2
* Move the default hrtf table to an external fileChris Robinson2014-02-231-1/+1
* Search system-dependant data paths for relative hrtf table filenamesChris Robinson2014-02-231-3/+7
* Update MIDI config option textsChris Robinson2014-01-171-2/+9
* Update the midi soundfont config optionChris Robinson2013-12-161-2/+2
* Add a config option for specifying the default MIDI soundfontChris Robinson2013-11-281-0/+10
* Implement the Compressor effectChris Robinson2013-10-031-1/+1
* /** * Copyright 2011 JogAmp Community. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are * permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, this list of * conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, this list * of conditions and the following disclaimer in the documentation and/or other materials * provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY JogAmp Community ``AS IS'' AND ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JogAmp Community OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * The views and conclusions contained in the software and documentation are those of the * authors and should not be interpreted as representing official policies, either expressed * or implied, of JogAmp Community. */ #ifndef NEWT_COMMON_H #define NEWT_COMMON_H 1 #include <jni.h> #include <stdlib.h> void NewtCommon_init(JNIEnv *env); const char * NewtCommon_GetStaticStringMethod(JNIEnv *jniEnv, jclass clazz, jmethodID jGetStrID, char *dest, int destSize, const char *altText); jchar* NewtCommon_GetNullTerminatedStringChars(JNIEnv* env, jstring str); void NewtCommon_FatalError(JNIEnv *env, const char* msg, ...); void NewtCommon_throwNewRuntimeException(JNIEnv *env, const char* msg, ...); /** * * 1) Init static jvmHandle, jvmVersion and clazz references * from an early initialization call w/ valid 'JNIEnv * env' NewtCommon_init(env); * * 2) Use current thread JNIEnv or attach current thread to JVM, generating new JNIEnv * int asDaemon = 0; int shallBeDetached = 0; JNIEnv* env = NewtCommon_GetJNIEnv(asDaemon, &shallBeDetached); if(NULL==env) { DBG_PRINT("drawRect: null JNIEnv\n"); return; } * * 3) Use JNIEnv .. * .. your JNIEnv code here .. * * 4) Detach thread from JVM if requ
* Revert the default stereo layout back to -90 and +90 degreesChris Robinson2012-03-121-1/+1
* Document the hrtf_tables config optionChris Robinson2012-03-111-0/+6
* Enforce range limits on periods and period_size.Chris Robinson2012-03-041-2/+3
* Update the layout config option namesChris Robinson2012-03-011-5/+5
* Recognize "none" to disable the default reverbChris Robinson2012-02-191-4/+4
* Remove mention of the environment variables from alsoftrc.sampleChris Robinson2012-02-191-9/+1
* Separate the format config option into channels and sample-typeChris Robinson2012-02-151-21/+17
* Add config options for card- and device-specific prefixes in ALSA device namesChris Robinson2012-02-111-0/+14
* Change the default stereo speaker positions to match the stereo channel posit...Chris Robinson2012-02-041-1/+1
* Fix typo in the "CarpetedHallway" reverb presetChris Robinson2012-02-011-1/+1
* Fix a typoChris Robinson2012-01-241-1/+1
* Add a default-reverb config option, and rename __ALSOFT_FORCE_REVERB to matchChris Robinson2012-01-201-0/+11
* Change the default output format to 32-bit floatChris Robinson2012-01-171-1/+1
* Update some config option descriptionsChris Robinson2011-12-201-9/+9
* Use a string to specify the resampler config optionChris Robinson2011-12-201-4/+4
* Update a config file commentChris Robinson2011-09-181-3/+3
* Add an option to trap device errors in a debuggerChris Robinson2011-09-101-0/+8
* Add an option to trap context errors in a debuggerChris Robinson2011-09-101-0/+8
* Use the string ID instead of numeral index to reference the ALSA cardChris Robinson2011-08-191-2/+2
* Add options to specify alternate ALSA device prefixesChris Robinson2011-08-191-0/+12
* Add an option to emulate EAX reverb using standard reverbChris Robinson2011-07-201-0/+6
* Add a config option to boost reverb outputChris Robinson2011-07-201-0/+12
* Update the default drivers config option commentChris Robinson2011-06-221-1/+1
* Update alsoftrc.sampleChris Robinson2011-05-181-11/+7
* Add mmdevapi to alsoftrc.sampleChris Robinson2011-05-171-1/+1
* Re-enable duplication for stereo soundsChris Robinson2011-05-151-8/+7