Asterisk - The Open Source Telephony Project  18.5.0
Macros | Functions | Variables
codec_alaw.c File Reference

codec_alaw.c - translate between signed linear and alaw More...

#include "asterisk.h"
#include "asterisk/module.h"
#include "asterisk/config.h"
#include "asterisk/translate.h"
#include "asterisk/alaw.h"
#include "asterisk/utils.h"
#include "asterisk/slin.h"
#include "ex_alaw.h"
Include dependency graph for codec_alaw.c:

Go to the source code of this file.

Macros

#define BUFFER_SAMPLES   8096 /* size for the translation buffers */
 

Functions

static void __reg_module (void)
 
static void __unreg_module (void)
 
static int alawtolin_framein (struct ast_trans_pvt *pvt, struct ast_frame *f)
 decode frame into lin and fill output buffer. More...
 
struct ast_moduleAST_MODULE_SELF_SYM (void)
 
static int lintoalaw_framein (struct ast_trans_pvt *pvt, struct ast_frame *f)
 convert and store input samples in output buffer More...
 
static int load_module (void)
 
static int unload_module (void)
 

Variables

static struct ast_module_info __mod_info = { .name = AST_MODULE, .flags = AST_MODFLAG_DEFAULT , .description = "A-law Coder/Decoder" , .key = "This paragraph is copyright (c) 2006 by Digium, Inc. \In order for your module to load, it must return this \key via a function called \"key\". Any code which \includes this paragraph must be licensed under the GNU \General Public License version 2 or later (at your \option). In addition to Digium's general reservations \of rights, Digium expressly reserves the right to \allow other parties to license this paragraph under \different terms. Any use of Digium, Inc. trademarks or \logos (including \"Asterisk\" or \"Digium\") without \express written permission of Digium, Inc. is prohibited.\n" , .buildopt_sum = "30ef0c93b36035ec78c9cfd712d36d9b" , .support_level = AST_MODULE_SUPPORT_CORE, .load = load_module, .unload = unload_module, }
 
static struct ast_translator alawtolin
 
static const struct ast_module_infoast_module_info = &__mod_info
 
static struct ast_translator lintoalaw
 

Detailed Description

codec_alaw.c - translate between signed linear and alaw

Definition in file codec_alaw.c.

Macro Definition Documentation

◆ BUFFER_SAMPLES

#define BUFFER_SAMPLES   8096 /* size for the translation buffers */

Definition at line 38 of file codec_alaw.c.

Function Documentation

◆ __reg_module()

static void __reg_module ( void  )
static

Definition at line 143 of file codec_alaw.c.

◆ __unreg_module()

static void __unreg_module ( void  )
static

Definition at line 143 of file codec_alaw.c.

◆ alawtolin_framein()

static int alawtolin_framein ( struct ast_trans_pvt pvt,
struct ast_frame f 
)
static

decode frame into lin and fill output buffer.

Definition at line 45 of file codec_alaw.c.

References AST_ALAW, ast_frame::data, ast_trans_pvt::datalen, ast_trans_pvt::i16, ast_trans_pvt::outbuf, ast_frame::ptr, ast_frame::samples, and ast_trans_pvt::samples.

46 {
47  int i = f->samples;
48  unsigned char *src = f->data.ptr;
49  int16_t *dst = pvt->outbuf.i16 + pvt->samples;
50 
51  pvt->samples += i;
52  pvt->datalen += i * 2; /* 2 bytes/sample */
53 
54  while (i--)
55  *dst++ = AST_ALAW(*src++);
56 
57  return 0;
58 }
int datalen
actual space used in outbuf
Definition: translate.h:218
short int16_t
Definition: db.h:59
#define AST_ALAW(a)
Definition: alaw.h:84
int16_t * i16
Definition: translate.h:223
const char * src
union ast_trans_pvt::@327 outbuf
union ast_frame::@263 data

◆ AST_MODULE_SELF_SYM()

struct ast_module* AST_MODULE_SELF_SYM ( void  )

Definition at line 143 of file codec_alaw.c.

◆ lintoalaw_framein()

static int lintoalaw_framein ( struct ast_trans_pvt pvt,
struct ast_frame f 
)
static

convert and store input samples in output buffer

Definition at line 61 of file codec_alaw.c.

References AST_LIN2A, ast_trans_pvt::c, ast_frame::data, ast_trans_pvt::datalen, ast_trans_pvt::outbuf, ast_frame::ptr, ast_frame::samples, and ast_trans_pvt::samples.

62 {
63  int i = f->samples;
64  char *dst = pvt->outbuf.c + pvt->samples;
65  int16_t *src = f->data.ptr;
66 
67  pvt->samples += i;
68  pvt->datalen += i; /* 1 byte/sample */
69 
70  while (i--)
71  *dst++ = AST_LIN2A(*src++);
72 
73  return 0;
74 }
int datalen
actual space used in outbuf
Definition: translate.h:218
short int16_t
Definition: db.h:59
const char * src
union ast_trans_pvt::@327 outbuf
union ast_frame::@263 data
#define AST_LIN2A(a)
Definition: alaw.h:50

◆ load_module()

static int load_module ( void  )
static

Definition at line 124 of file codec_alaw.c.

References AST_MODFLAG_DEFAULT, AST_MODULE_INFO(), AST_MODULE_LOAD_DECLINE, AST_MODULE_LOAD_SUCCESS, AST_MODULE_SUPPORT_CORE, ast_register_translator, ASTERISK_GPL_KEY, and unload_module().

125 {
126  int res;
127 
130 
131  if (res) {
132  unload_module();
134  }
135 
137 }
#define ast_register_translator(t)
See __ast_register_translator()
Definition: translate.h:257
static struct ast_translator alawtolin
Definition: codec_alaw.c:76
Module has failed to load, may be in an inconsistent state.
Definition: module.h:78
static int unload_module(void)
Definition: codec_alaw.c:114
static struct ast_translator lintoalaw
Definition: codec_alaw.c:95

◆ unload_module()

static int unload_module ( void  )
static

Definition at line 114 of file codec_alaw.c.

References ast_unregister_translator().

Referenced by load_module().

115 {
116  int res;
117 
120 
121  return res;
122 }
int ast_unregister_translator(struct ast_translator *t)
Unregister a translator Unregisters the given tranlator.
Definition: translate.c:1333
static struct ast_translator alawtolin
Definition: codec_alaw.c:76
static struct ast_translator lintoalaw
Definition: codec_alaw.c:95

Variable Documentation

◆ __mod_info

struct ast_module_info __mod_info = { .name = AST_MODULE, .flags = AST_MODFLAG_DEFAULT , .description = "A-law Coder/Decoder" , .key = "This paragraph is copyright (c) 2006 by Digium, Inc. \In order for your module to load, it must return this \key via a function called \"key\". Any code which \includes this paragraph must be licensed under the GNU \General Public License version 2 or later (at your \option). In addition to Digium's general reservations \of rights, Digium expressly reserves the right to \allow other parties to license this paragraph under \different terms. Any use of Digium, Inc. trademarks or \logos (including \"Asterisk\" or \"Digium\") without \express written permission of Digium, Inc. is prohibited.\n" , .buildopt_sum = "30ef0c93b36035ec78c9cfd712d36d9b" , .support_level = AST_MODULE_SUPPORT_CORE, .load = load_module, .unload = unload_module, }
static

Definition at line 143 of file codec_alaw.c.

◆ alawtolin

struct ast_translator alawtolin
static

Definition at line 76 of file codec_alaw.c.

◆ ast_module_info

const struct ast_module_info* ast_module_info = &__mod_info
static

Definition at line 143 of file codec_alaw.c.

◆ lintoalaw

struct ast_translator lintoalaw
static

Definition at line 95 of file codec_alaw.c.