]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-8852 change stop condition in for loop
authorPiotr Gregor <piotrek.gregor@gmail.com>
Sat, 20 Feb 2016 18:02:16 +0000 (18:02 +0000)
committerPiotr Gregor <piotrek.gregor@gmail.com>
Sat, 20 Feb 2016 18:02:16 +0000 (18:02 +0000)
Now we use predefined table length instead
of hardcoded computation in stop condition
of for loop.

src/mod/applications/mod_avmd/fast_acosf.c

index 263b488076116f199f3fd38fc236d82fdce50868..6c990d25202a3a74dcf2c989a2cce9b66867057f 100644 (file)
@@ -29,7 +29,7 @@
 #define VARIA_DATA_MASK (0x87FFFFF8)
 #define CONST_DATA_MASK (0x38000000)
 
-#define ACOS_TABLE_LENGTH (1<<25)
+#define ACOS_TABLE_LENGTH (1 << 25)
 #define ACOS_TABLE_FILENAME "/tmp/acos_table.dat"
 
 typedef union {
@@ -65,7 +65,7 @@ extern void compute_table(void)
 
     acos_table_file = fopen(ACOS_TABLE_FILENAME, "w");
 
-    for (i = 0; i < (1 << 25); i++) {
+    for (i = 0; i < ACOS_TABLE_LENGTH; i++) {
         f = acosf(float_from_index(i));
         ret = fwrite(&f, sizeof(f), 1, acos_table_file);
         assert(ret != 0);