aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/ulaw.h
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-01-15 23:48:12 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-01-15 23:48:12 +0000
commit597c75ce7b9c35e5dd0ace49462bd02efcd2e5a1 (patch)
tree148de50e79eba09c6f90abf29b6509e0dbb264db /include/asterisk/ulaw.h
parentef642e2e7834df16533a3513c7efe663e0a791c8 (diff)
Repair // comments to /* */ comments (bug #3347)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4806 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/ulaw.h')
-rwxr-xr-xinclude/asterisk/ulaw.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asterisk/ulaw.h b/include/asterisk/ulaw.h
index 5bb8065fe..027d3df6a 100755
--- a/include/asterisk/ulaw.h
+++ b/include/asterisk/ulaw.h
@@ -14,18 +14,18 @@
#ifndef _ASTERISK_ULAW_H
#define _ASTERISK_ULAW_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_ulaw_init(void);
-//! converts signed linear to mulaw
+/*! converts signed linear to mulaw */
/*!
*/
extern unsigned char __ast_lin2mu[16384];
-//! help
+/*! help */
extern short __ast_mulaw[256];
#define AST_LIN2MU(a) (__ast_lin2mu[((unsigned short)(a)) >> 2])