Asterisk - The Open Source Telephony Project GIT-master-27fb039
Loading...
Searching...
No Matches
Data Structures | Macros | Functions | Variables
codec_g722.c File Reference

codec_g722.c - translate between signed linear and ITU G.722-64kbps More...

#include "asterisk.h"
#include "asterisk/linkedlists.h"
#include "asterisk/module.h"
#include "asterisk/config.h"
#include "asterisk/translate.h"
#include "asterisk/utils.h"
#include "g722/g722.h"
#include "asterisk/slin.h"
#include "ex_g722.h"
Include dependency graph for codec_g722.c:

Go to the source code of this file.

Data Structures

struct  g722_decoder_pvt
 
struct  g722_encoder_pvt
 

Macros

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

Functions

static void __reg_module (void)
 
static void __unreg_module (void)
 
struct ast_moduleAST_MODULE_SELF_SYM (void)
 
static int g722tolin16_new (struct ast_trans_pvt *pvt)
 
static int g722tolin_framein (struct ast_trans_pvt *pvt, struct ast_frame *f)
 
static int g722tolin_new (struct ast_trans_pvt *pvt)
 init a new instance of g722_encoder_pvt.
 
static int lin16tog722_new (struct ast_trans_pvt *pvt)
 
static int lintog722_framein (struct ast_trans_pvt *pvt, struct ast_frame *f)
 
static int lintog722_new (struct ast_trans_pvt *pvt)
 init a new instance of g722_encoder_pvt.
 
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 = "ITU G.722-64kbps G722 Transcoder" , .key = ASTERISK_GPL_KEY , .buildopt_sum = AST_BUILDOPT_SUM, .support_level = AST_MODULE_SUPPORT_CORE, .load = load_module, .unload = unload_module, }
 
static const struct ast_module_infoast_module_info = &__mod_info
 
static struct ast_translator g722tolin
 
static struct ast_translator g722tolin16
 
static struct ast_translator lin16tog722
 
static struct ast_translator lintog722
 

Detailed Description

codec_g722.c - translate between signed linear and ITU G.722-64kbps

Author
Matthew Fredrickson cresl.nosp@m.in@d.nosp@m.igium.nosp@m..com
Russell Bryant russe.nosp@m.ll@d.nosp@m.igium.nosp@m..com

Definition in file codec_g722.c.

Macro Definition Documentation

◆ BUF_SHIFT

#define BUF_SHIFT   5

Definition at line 49 of file codec_g722.c.

◆ BUFFER_SAMPLES

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

Definition at line 48 of file codec_g722.c.

Function Documentation

◆ __reg_module()

static void __reg_module ( void  )
static

Definition at line 254 of file codec_g722.c.

◆ __unreg_module()

static void __unreg_module ( void  )
static

Definition at line 254 of file codec_g722.c.

◆ AST_MODULE_SELF_SYM()

struct ast_module * AST_MODULE_SELF_SYM ( void  )

Definition at line 254 of file codec_g722.c.

◆ g722tolin16_new()

static int g722tolin16_new ( struct ast_trans_pvt pvt)
static

Definition at line 94 of file codec_g722.c.

95{
96 struct g722_decoder_pvt *tmp = pvt->pvt;
97
98 g722_decode_init(&tmp->g722, 64000, 0);
99
100 return 0;
101}
g722_decode_state_t * g722_decode_init(g722_decode_state_t *s, int rate, int options)
g722_decode_state_t g722
Definition codec_g722.c:62

References g722_decoder_pvt::g722, g722_decode_init(), and ast_trans_pvt::pvt.

◆ g722tolin_framein()

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

Definition at line 103 of file codec_g722.c.

104{
105 struct g722_decoder_pvt *tmp = pvt->pvt;
106 int out_samples;
107 int in_samples;
108
109 /* g722_decode expects the samples to be in the invalid samples / 2 format */
110 in_samples = f->samples / 2;
111
112 out_samples = g722_decode(&tmp->g722, &pvt->outbuf.i16[pvt->samples * sizeof(int16_t)],
113 (uint8_t *) f->data.ptr, in_samples);
114
115 pvt->samples += out_samples;
116
117 pvt->datalen += (out_samples * sizeof(int16_t));
118
119 return 0;
120}
int g722_decode(g722_decode_state_t *s, int16_t amp[], const uint8_t g722_data[], int len)
union ast_frame::@239 data
union ast_trans_pvt::@308 outbuf
int datalen
actual space used in outbuf
Definition translate.h:218
int16_t * i16
Definition translate.h:223

References ast_frame::data, ast_trans_pvt::datalen, g722_decoder_pvt::g722, g722_decode(), ast_trans_pvt::i16, ast_trans_pvt::outbuf, ast_frame::ptr, ast_trans_pvt::pvt, ast_frame::samples, and ast_trans_pvt::samples.

◆ g722tolin_new()

static int g722tolin_new ( struct ast_trans_pvt pvt)
static

init a new instance of g722_encoder_pvt.

Definition at line 85 of file codec_g722.c.

86{
87 struct g722_decoder_pvt *tmp = pvt->pvt;
88
90
91 return 0;
92}
@ G722_SAMPLE_RATE_8000
Definition g722.h:45

References g722_decoder_pvt::g722, g722_decode_init(), G722_SAMPLE_RATE_8000, and ast_trans_pvt::pvt.

◆ lin16tog722_new()

static int lin16tog722_new ( struct ast_trans_pvt pvt)
static

Definition at line 75 of file codec_g722.c.

76{
77 struct g722_encoder_pvt *tmp = pvt->pvt;
78
79 g722_encode_init(&tmp->g722, 64000, 0);
80
81 return 0;
82}
g722_encode_state_t * g722_encode_init(g722_encode_state_t *s, int rate, int options)
g722_encode_state_t g722
Definition codec_g722.c:58

References g722_encoder_pvt::g722, g722_encode_init(), and ast_trans_pvt::pvt.

◆ lintog722_framein()

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

Definition at line 122 of file codec_g722.c.

123{
124 struct g722_encoder_pvt *tmp = pvt->pvt;
125 int outlen;
126
127 outlen = g722_encode(&tmp->g722, (&pvt->outbuf.ui8[pvt->datalen]),
128 (int16_t *) f->data.ptr, f->samples);
129
130 pvt->samples += outlen * 2;
131
132 pvt->datalen += outlen;
133
134 return 0;
135}
int g722_encode(g722_encode_state_t *s, uint8_t g722_data[], const int16_t amp[], int len)
uint8_t * ui8
Definition translate.h:224

References ast_frame::data, ast_trans_pvt::datalen, g722_encoder_pvt::g722, g722_encode(), ast_trans_pvt::outbuf, ast_frame::ptr, ast_trans_pvt::pvt, ast_frame::samples, ast_trans_pvt::samples, and ast_trans_pvt::ui8.

◆ lintog722_new()

static int lintog722_new ( struct ast_trans_pvt pvt)
static

init a new instance of g722_encoder_pvt.

Definition at line 66 of file codec_g722.c.

67{
68 struct g722_encoder_pvt *tmp = pvt->pvt;
69
71
72 return 0;
73}

References g722_encoder_pvt::g722, g722_encode_init(), G722_SAMPLE_RATE_8000, and ast_trans_pvt::pvt.

◆ load_module()

static int load_module ( void  )
static

Definition at line 233 of file codec_g722.c.

234{
235 int res = 0;
236
241
242 if (res) {
245 }
246
248}
static struct ast_translator g722tolin16
Definition codec_g722.c:179
static struct ast_translator lin16tog722
Definition codec_g722.c:200
static struct ast_translator lintog722
Definition codec_g722.c:158
static struct ast_translator g722tolin
Definition codec_g722.c:137
static int unload_module(void)
Definition codec_g722.c:221
@ AST_MODULE_LOAD_SUCCESS
Definition module.h:70
@ AST_MODULE_LOAD_DECLINE
Module has failed to load, may be in an inconsistent state.
Definition module.h:78
#define ast_register_translator(t)
See __ast_register_translator()
Definition translate.h:258

References AST_MODULE_LOAD_DECLINE, AST_MODULE_LOAD_SUCCESS, ast_register_translator, g722tolin, g722tolin16, lin16tog722, lintog722, and unload_module().

◆ unload_module()

static int unload_module ( void  )
static

Definition at line 221 of file codec_g722.c.

222{
223 int res = 0;
224
229
230 return res;
231}
int ast_unregister_translator(struct ast_translator *t)
Unregister a translator Unregisters the given translator.
Definition translate.c:1350

References ast_unregister_translator(), g722tolin, g722tolin16, lin16tog722, and lintog722.

Referenced by load_module().

Variable Documentation

◆ __mod_info

struct ast_module_info __mod_info = { .name = AST_MODULE, .flags = AST_MODFLAG_DEFAULT , .description = "ITU G.722-64kbps G722 Transcoder" , .key = ASTERISK_GPL_KEY , .buildopt_sum = AST_BUILDOPT_SUM, .support_level = AST_MODULE_SUPPORT_CORE, .load = load_module, .unload = unload_module, }
static

Definition at line 254 of file codec_g722.c.

◆ ast_module_info

const struct ast_module_info* ast_module_info = &__mod_info
static

Definition at line 254 of file codec_g722.c.

◆ g722tolin

struct ast_translator g722tolin
static

Definition at line 137 of file codec_g722.c.

137 {
138 .name = "g722tolin",
139 .src_codec = {
140 .name = "g722",
141 .type = AST_MEDIA_TYPE_AUDIO,
142 .sample_rate = 16000,
143 },
144 .dst_codec = {
145 .name = "slin",
146 .type = AST_MEDIA_TYPE_AUDIO,
147 .sample_rate = 8000,
148 },
149 .format = "slin",
150 .newpvt = g722tolin_new, /* same for both directions */
151 .framein = g722tolin_framein,
152 .sample = g722_sample,
153 .desc_size = sizeof(struct g722_decoder_pvt),
154 .buffer_samples = BUFFER_SAMPLES / sizeof(int16_t),
155 .buf_size = BUFFER_SAMPLES,
156};
@ AST_MEDIA_TYPE_AUDIO
Definition codec.h:32
#define BUFFER_SAMPLES
Definition codec_g722.c:48
static int g722tolin_framein(struct ast_trans_pvt *pvt, struct ast_frame *f)
Definition codec_g722.c:103
static int g722tolin_new(struct ast_trans_pvt *pvt)
init a new instance of g722_encoder_pvt.
Definition codec_g722.c:85
static struct ast_frame * g722_sample(void)
Definition ex_g722.h:36

Referenced by load_module(), and unload_module().

◆ g722tolin16

struct ast_translator g722tolin16
static

Definition at line 179 of file codec_g722.c.

179 {
180 .name = "g722tolin16",
181 .src_codec = {
182 .name = "g722",
183 .type = AST_MEDIA_TYPE_AUDIO,
184 .sample_rate = 16000,
185 },
186 .dst_codec = {
187 .name = "slin",
188 .type = AST_MEDIA_TYPE_AUDIO,
189 .sample_rate = 16000,
190 },
191 .format = "slin16",
192 .newpvt = g722tolin16_new, /* same for both directions */
193 .framein = g722tolin_framein,
194 .sample = g722_sample,
195 .desc_size = sizeof(struct g722_decoder_pvt),
196 .buffer_samples = BUFFER_SAMPLES / sizeof(int16_t),
197 .buf_size = BUFFER_SAMPLES,
198};
static int g722tolin16_new(struct ast_trans_pvt *pvt)
Definition codec_g722.c:94

Referenced by load_module(), and unload_module().

◆ lin16tog722

struct ast_translator lin16tog722
static

Definition at line 200 of file codec_g722.c.

200 {
201 .name = "lin16tog722",
202 .src_codec = {
203 .name = "slin",
204 .type = AST_MEDIA_TYPE_AUDIO,
205 .sample_rate = 16000,
206 },
207 .dst_codec = {
208 .name = "g722",
209 .type = AST_MEDIA_TYPE_AUDIO,
210 .sample_rate = 16000,
211 },
212 .format = "g722",
213 .newpvt = lin16tog722_new, /* same for both directions */
214 .framein = lintog722_framein,
215 .sample = slin16_sample,
216 .desc_size = sizeof(struct g722_encoder_pvt),
217 .buffer_samples = BUFFER_SAMPLES * 2,
218 .buf_size = BUFFER_SAMPLES,
219};
static int lintog722_framein(struct ast_trans_pvt *pvt, struct ast_frame *f)
Definition codec_g722.c:122
static int lin16tog722_new(struct ast_trans_pvt *pvt)
Definition codec_g722.c:75
static struct ast_frame * slin16_sample(void)
Definition slin.h:81

Referenced by load_module(), and unload_module().

◆ lintog722

struct ast_translator lintog722
static

Definition at line 158 of file codec_g722.c.

158 {
159 .name = "lintog722",
160 .src_codec = {
161 .name = "slin",
162 .type = AST_MEDIA_TYPE_AUDIO,
163 .sample_rate = 8000,
164 },
165 .dst_codec = {
166 .name = "g722",
167 .type = AST_MEDIA_TYPE_AUDIO,
168 .sample_rate = 16000,
169 },
170 .format = "g722",
171 .newpvt = lintog722_new, /* same for both directions */
172 .framein = lintog722_framein,
173 .sample = slin8_sample,
174 .desc_size = sizeof(struct g722_encoder_pvt),
175 .buffer_samples = BUFFER_SAMPLES * 2,
176 .buf_size = BUFFER_SAMPLES,
177};
static int lintog722_new(struct ast_trans_pvt *pvt)
init a new instance of g722_encoder_pvt.
Definition codec_g722.c:66
static struct ast_frame * slin8_sample(void)
Definition slin.h:64

Referenced by load_module(), and unload_module().