/*************************************************************************** * * * LinuxSampler - modular, streaming capable sampler * * * * Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck * * Copyright (C) 2005, 2006 Christian Schoenebeck * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the Free Software * * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * * MA 02111-1307 USA * ***************************************************************************/ // i.e. OSX people using the xcode project file will avoid inclusion of // config.h here and rather use their manually maintained version.h #ifndef OVERRIDE_CONFIG_H # include #endif #ifndef CONFIG_GLOBAL_ATTENUATION_DEFAULT # error "Configuration macro CONFIG_GLOBAL_ATTENUATION_DEFAULT not defined!" #endif // CONFIG_GLOBAL_ATTENUATION_DEFAULT // this is the sampler global volume coefficient that should be obeyed by all // sampler engine implementations double GLOBAL_VOLUME = CONFIG_GLOBAL_ATTENUATION_DEFAULT;