From: <jpg...@us...> - 2007-05-22 12:17:02
|
Revision: 980 http://svn.sourceforge.net/iaxclient/?rev=980&view=rev Author: jpgrayson Date: 2007-05-22 05:17:03 -0700 (Tue, 22 May 2007) Log Message: ----------- Fix problem with the visual studio compiler not appreciating the magnitude of the floating point constant -9e99f. Modified Paths: -------------- trunk/lib/audio_encode.c Modified: trunk/lib/audio_encode.c =================================================================== --- trunk/lib/audio_encode.c 2007-05-21 21:37:10 UTC (rev 979) +++ trunk/lib/audio_encode.c 2007-05-22 12:17:03 UTC (rev 980) @@ -25,7 +25,7 @@ #include "codec_ilbc.h" #endif -float iaxc_silence_threshold = -9e99f; +float iaxc_silence_threshold = -99.0f; static float input_level = 0.0f; static float output_level = 0.0f; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |