summaryrefslogtreecommitdiff
path: root/include/asterisk/alaw.h
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2005-01-15 23:48:12 +0000
committerMark Spencer <markster@digium.com>2005-01-15 23:48:12 +0000
commit160c04b7935f2d13671a2c16ed905eba475f06a5 (patch)
tree148de50e79eba09c6f90abf29b6509e0dbb264db /include/asterisk/alaw.h
parentdf4a69f7ced920665cd4858f43b5c1bbe31cd14c (diff)
Repair // comments to /* */ comments (bug #3347)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4806 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk/alaw.h')
-rwxr-xr-xinclude/asterisk/alaw.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asterisk/alaw.h b/include/asterisk/alaw.h
index 6861955bb..ed05e46b2 100755
--- a/include/asterisk/alaw.h
+++ b/include/asterisk/alaw.h
@@ -14,18 +14,18 @@
#ifndef _ASTERISK_ALAW_H
#define _ASTERISK_ALAW_H
-//! Init the ulaw conversion stuff
+/*! Init the ulaw conversion stuff */
/*!
* To init the ulaw to slinear conversion stuff, this needs to be run.
*/
extern void ast_alaw_init(void);
-//! converts signed linear to mulaw
+/*! converts signed linear to mulaw */
/*!
*/
extern unsigned char __ast_lin2a[8192];
-//! help
+/*! help */
extern short __ast_alaw[256];
#define AST_LIN2A(a) (__ast_lin2a[((unsigned short)(a)) >> 3])