Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/speexdsp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjm <jm@0101bb08-14d6-0310-b084-bc0e0c8e3800>2006-09-08 13:58:21 +0400
committerjm <jm@0101bb08-14d6-0310-b084-bc0e0c8e3800>2006-09-08 13:58:21 +0400
commit3a2222946eaa5cc316d0c0b220b7e3341f9e0da9 (patch)
tree223fc87ab6dc3fd509a07b8492daa04927798fa9 /libspeex/nb_celp.c
parent011fd80c9da4b9de386e974a9f8710220f60c27f (diff)
Adding the "f" suffix to float constants (path by Michael Jerris).
git-svn-id: http://svn.xiph.org/trunk/speex@11835 0101bb08-14d6-0310-b084-bc0e0c8e3800
Diffstat (limited to 'libspeex/nb_celp.c')
-rw-r--r--libspeex/nb_celp.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/libspeex/nb_celp.c b/libspeex/nb_celp.c
index 234ac2d..0a13c2e 100644
--- a/libspeex/nb_celp.c
+++ b/libspeex/nb_celp.c
@@ -87,14 +87,14 @@ const spx_word16_t exc_gain_quant_scal1[2]={11546, 17224};
#else
-const float exc_gain_quant_scal3_bound[7]={0.112338, 0.236980, 0.369316, 0.492054, 0.637471, 0.828874, 1.132784};
-const float exc_gain_quant_scal3[8]={0.061130, 0.163546, 0.310413, 0.428220, 0.555887, 0.719055, 0.938694, 1.326874};
-const float exc_gain_quant_scal1_bound[1]={0.87798};
-const float exc_gain_quant_scal1[2]={0.70469, 1.05127};
-
-#define LSP_MARGIN .002
-#define LSP_DELTA1 .2
-#define LSP_DELTA2 .05
+const float exc_gain_quant_scal3_bound[7]={0.112338f, 0.236980f, 0.369316f, 0.492054f, 0.637471f, 0.828874f, 1.132784f};
+const float exc_gain_quant_scal3[8]={0.061130f, 0.163546f, 0.310413f, 0.428220f, 0.555887f, 0.719055f, 0.938694f, 1.326874f};
+const float exc_gain_quant_scal1_bound[1]={0.87798f};
+const float exc_gain_quant_scal1[2]={0.70469f, 1.05127f};
+
+#define LSP_MARGIN .002f
+#define LSP_DELTA1 .2f
+#define LSP_DELTA2 .05f
#endif