Repair // comments to /* */ comments (bug #3347)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4806 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer
2005-01-15 23:48:12 +00:00
parent df4a69f7ce
commit 160c04b793
32 changed files with 330 additions and 330 deletions

View File

@@ -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])