aboutsummaryrefslogtreecommitdiffstats
path: root/g711.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-03-10 19:58:47 +0000
committerGuy Harris <guy@alum.mit.edu>2003-03-10 19:58:47 +0000
commit97e701ce15f5220882d7439dab44877a5825fede (patch)
treec0ce0fe1e8b45b5883e9963873a9f098786e4646 /g711.c
parentb01ee2624c268438a591e9beec52545c9bf883c6 (diff)
From Albert Chin: get rid of some C++ comments in C89 code.
svn path=/trunk/; revision=7335
Diffstat (limited to 'g711.c')
-rw-r--r--g711.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/g711.c b/g711.c
index 0cfe354f6f..8d0b419898 100644
--- a/g711.c
+++ b/g711.c
@@ -1,5 +1,5 @@
/*
- * $Id: g711.c,v 1.2 2003/03/06 21:57:17 guy Exp $
+ * $Id: g711.c,v 1.3 2003/03/10 19:58:47 guy Exp $
*
* This source code is a product of Sun Microsystems, Inc. and is provided
* for unrestricted use. Users may copy or modify this source code without
@@ -152,7 +152,7 @@ alaw2linear(
{
int t;
int seg;
- //printf(" vrednost a_val %X ", a_val);
+ /*printf(" vrednost a_val %X ", a_val);*/
a_val ^= 0x55;
t = (a_val & QUANT_MASK) << 4;
@@ -168,7 +168,7 @@ alaw2linear(
t += 0x108;
t <<= seg - 1;
}
- //printf("izracunan int %d in njegov hex %X \n", t,t);
+ /*printf("izracunan int %d in njegov hex %X \n", t,t);*/
return ((a_val & SIGN_BIT) ? t : -t);
}