aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/alaw.h
diff options
context:
space:
mode:
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])