mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-19 00:00:09 +00:00
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:
@@ -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])
|
||||
|
||||
Reference in New Issue
Block a user