aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/ulaw.h
diff options
context:
space:
mode:
authoroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2007-12-11 22:20:22 +0000
committeroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2007-12-11 22:20:22 +0000
commitc7aed6ea2b8ae6c4e57e0d334969c5f639bbf6fa (patch)
tree0a9803469fbf5f68d50c1ad88e82840333144ca0 /include/asterisk/ulaw.h
parentbf3d4cdd5e60d91b081b7d86ce2b651e39d194d7 (diff)
Doxygen updates, formatting.
misdn stuff needs a lot of doxygenification (Hello, Qwell :-) ) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@92423 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/ulaw.h')
-rw-r--r--include/asterisk/ulaw.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/include/asterisk/ulaw.h b/include/asterisk/ulaw.h
index 1ac079d54..0f3eae58b 100644
--- a/include/asterisk/ulaw.h
+++ b/include/asterisk/ulaw.h
@@ -24,7 +24,6 @@
#define _ASTERISK_ULAW_H
-/*! Init the ulaw conversion stuff */
/*!
* To init the ulaw to slinear conversion stuff, this needs to be run.
*/
@@ -35,9 +34,7 @@ void ast_ulaw_init(void);
#define AST_ULAW_TAB_SIZE (32768 / AST_ULAW_STEP + 1)
#define AST_ULAW_SIGN_BIT 0x80
-/*! converts signed linear to mulaw */
-/*!
- */
+/*! \brief converts signed linear to mulaw */
#ifndef G711_NEW_ALGORITHM
extern unsigned char __ast_lin2mu[16384];
#else
@@ -57,7 +54,7 @@ extern short __ast_mulaw[256];
__ast_lin2mu[((mag) + AST_ULAW_STEP / 2) >> AST_ULAW_BIT_LOSS]
-/*! convert signed linear sample to sign-magnitude pair for u-Law */
+/*! \brief convert signed linear sample to sign-magnitude pair for u-Law */
static inline void ast_ulaw_get_sign_mag(short sample, unsigned *sign, unsigned *mag)
{
/* It may look illogical to retrive the sign this way in both cases,