[xiph-commits] r10607 - trunk/speex/libspeex
jm at svn.xiph.org
jm at svn.xiph.org
Fri Dec 16 03:30:06 PST 2005
Author: jm
Date: 2005-12-16 03:30:03 -0800 (Fri, 16 Dec 2005)
New Revision: 10607
Modified:
trunk/speex/libspeex/pseudofloat.h
Log:
removed C++ style comments
Modified: trunk/speex/libspeex/pseudofloat.h
===================================================================
--- trunk/speex/libspeex/pseudofloat.h 2005-12-16 00:31:01 UTC (rev 10606)
+++ trunk/speex/libspeex/pseudofloat.h 2005-12-16 11:30:03 UTC (rev 10607)
@@ -61,13 +61,13 @@
return (spx_float_t) {0,0};
while (x>32767)
{
- //x >>= 1;
+ /*x >>= 1;*/
x *= .5;
e++;
}
while (x<16383)
{
- //x <<= 1;
+ /*x <<= 1;*/
x *= 2;
e--;
}
@@ -103,7 +103,7 @@
r.e-=1;
}
}
- //printf ("%f + %f = %f\n", REALFLOAT(a), REALFLOAT(b), REALFLOAT(r));
+ /*printf ("%f + %f = %f\n", REALFLOAT(a), REALFLOAT(b), REALFLOAT(r));*/
return r;
}
@@ -124,7 +124,7 @@
r.e-=1;
}
}
- //printf ("%f * %f = %f\n", REALFLOAT(a), REALFLOAT(b), REALFLOAT(r));
+ /*printf ("%f * %f = %f\n", REALFLOAT(a), REALFLOAT(b), REALFLOAT(r));*/
return r;
}
More information about the commits
mailing list