diff options
author | Guy Harris <guy@alum.mit.edu> | 2003-03-10 19:58:47 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2003-03-10 19:58:47 +0000 |
commit | 97e701ce15f5220882d7439dab44877a5825fede (patch) | |
tree | c0ce0fe1e8b45b5883e9963873a9f098786e4646 /g711.c | |
parent | b01ee2624c268438a591e9beec52545c9bf883c6 (diff) | |
download | wireshark-97e701ce15f5220882d7439dab44877a5825fede.tar.gz wireshark-97e701ce15f5220882d7439dab44877a5825fede.tar.bz2 wireshark-97e701ce15f5220882d7439dab44877a5825fede.zip |
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.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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); } |