mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2025-04-05 07:20:55 +00:00
Some compile time bug fixes.
This commit is contained in:
parent
af0522461d
commit
304936e612
3 changed files with 12 additions and 1 deletions
|
@ -1,3 +1,11 @@
|
|||
2003-07-22 Josh Green <jgreen@users.sourceforge.net>
|
||||
|
||||
* src/fluid_midishare.c: Added include of header "config.h" as
|
||||
per Albert Graef's request.
|
||||
* src/fluid_voice.c (fluid_voice_optimize_sample): Moved a
|
||||
variable declaration to the beginning of function, it was
|
||||
causing problems with at least one user.
|
||||
|
||||
2003-06-28 Josh Green <jgreen@users.sourceforge.net>
|
||||
|
||||
* src/fluid_defsfont.c: Moved call to fluid_voice_optimize_sample
|
||||
|
|
|
@ -29,6 +29,8 @@
|
|||
* 03/06/03 : Adapdation for FluidSynth API
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#if MIDISHARE_SUPPORT
|
||||
|
||||
#include "fluid_midi.h"
|
||||
|
|
|
@ -1976,6 +1976,7 @@ int fluid_voice_optimize_sample(fluid_sample_t* s)
|
|||
signed short peak_max = 0;
|
||||
signed short peak_min = 0;
|
||||
signed short peak;
|
||||
fluid_real_t normalized_amplitude_during_loop;
|
||||
double result;
|
||||
int i;
|
||||
|
||||
|
@ -2012,7 +2013,7 @@ int fluid_voice_optimize_sample(fluid_sample_t* s)
|
|||
*/
|
||||
|
||||
/* 16 bits => 96+4=100 dB dynamic range => 0.00001 */
|
||||
fluid_real_t normalized_amplitude_during_loop=((fluid_real_t)peak)/32768.;
|
||||
normalized_amplitude_during_loop = ((fluid_real_t)peak)/32768.;
|
||||
result = FLUID_NOISE_FLOOR / normalized_amplitude_during_loop;
|
||||
|
||||
/* Store in sample */
|
||||
|
|
Loading…
Reference in a new issue