aboutsummaryrefslogtreecommitdiffstats
path: root/g711.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-03-10 19:58:47 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-03-10 19:58:47 +0000
commit612ef598de09557db74ac668031a55b096a01ccc (patch)
treec0ce0fe1e8b45b5883e9963873a9f098786e4646 /g711.c
parent3d6acf50745fdd22d925d3df44118ba60fe9aaf2 (diff)
From Albert Chin: get rid of some C++ comments in C89 code.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@7335 f5534014-38df-0310-8fa8-9805f1628bb7
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);
}