summaryrefslogtreecommitdiff
path: root/include/asterisk/ulaw.h
diff options
context:
space:
mode:
authorOlle Johansson <oej@edvina.net>2007-12-11 22:20:22 +0000
committerOlle Johansson <oej@edvina.net>2007-12-11 22:20:22 +0000
commitc76f72493a8b76a798d5d867f6b096fa41b78c25 (patch)
tree0a9803469fbf5f68d50c1ad88e82840333144ca0 /include/asterisk/ulaw.h
parent6711a5d567c1ba3e14caab84e37538d90c5505c9 (diff)
Doxygen updates, formatting.
misdn stuff needs a lot of doxygenification (Hello, Qwell :-) ) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@92423 65c4cc65-6c06-0410-ace0-fbb531ad65f3
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,