2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (c) 2004 - 2005, inAccess Networks
6 * Michael Manousos <manousos@inaccessnetworks.com>
8 * See http://www.asterisk.org for more information about
9 * the Asterisk project. Please do not directly contact
10 * any of the maintainers of this project for assistance;
11 * the project provides a web site, mailing lists and IRC
12 * channels for your use.
14 * This program is free software, distributed under the terms of
15 * the GNU General Public License Version 2. See the LICENSE file
16 * at the top of the source tree.
21 * \brief Headerless G.726 (16/24/32/40kbps) data format for Asterisk.
23 * File name extensions:
24 * \arg 40 kbps: g726-40
25 * \arg 32 kbps: g726-32
26 * \arg 24 kbps: g726-24
27 * \arg 16 kbps: g726-16
33 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
36 #include <netinet/in.h>
37 #include <arpa/inet.h>
44 #include "asterisk/lock.h"
45 #include "asterisk/options.h"
46 #include "asterisk/channel.h"
47 #include "asterisk/file.h"
48 #include "asterisk/logger.h"
49 #include "asterisk/sched.h"
50 #include "asterisk/module.h"
51 #include "asterisk/endian.h"
58 /* We can only read/write chunks of FRAME_TIME ms G.726 data */
59 #define FRAME_TIME 10 /* 10 ms size */
61 #define BUF_SIZE (5*FRAME_TIME) /* max frame size in bytes ? */
62 /* Frame sizes in bytes */
63 static int frame_size[4] = {
71 int rate; /* RATE_* defines */
75 * Rate dependant format functions (open, rewrite)
77 static int g726_open(struct ast_filestream *tmp, int rate)
79 struct g726_desc *s = (struct g726_desc *)tmp->private;
81 ast_debug(1, "Created filestream G.726-%dk.\n", 40 - s->rate * 8);
85 static int g726_40_open(struct ast_filestream *s)
87 return g726_open(s, RATE_40);
90 static int g726_32_open(struct ast_filestream *s)
92 return g726_open(s, RATE_32);
95 static int g726_24_open(struct ast_filestream *s)
97 return g726_open(s, RATE_24);
100 static int g726_16_open(struct ast_filestream *s)
102 return g726_open(s, RATE_16);
105 static int g726_40_rewrite(struct ast_filestream *s, const char *comment)
107 return g726_open(s, RATE_40);
110 static int g726_32_rewrite(struct ast_filestream *s, const char *comment)
112 return g726_open(s, RATE_32);
115 static int g726_24_rewrite(struct ast_filestream *s, const char *comment)
117 return g726_open(s, RATE_24);
120 static int g726_16_rewrite(struct ast_filestream *s, const char *comment)
122 return g726_open(s, RATE_16);
126 * Rate independent format functions (read, write)
129 static struct ast_frame *g726_read(struct ast_filestream *s, int *whennext)
132 struct g726_desc *fs = (struct g726_desc *)s->private;
134 /* Send a frame from the file to the appropriate channel */
135 s->fr.frametype = AST_FRAME_VOICE;
136 s->fr.subclass = AST_FORMAT_G726;
138 AST_FRAME_SET_BUFFER(&s->fr, s->buf, AST_FRIENDLY_OFFSET, frame_size[fs->rate]);
139 s->fr.samples = 8 * FRAME_TIME;
140 if ((res = fread(s->fr.data, 1, s->fr.datalen, s->f)) != s->fr.datalen) {
142 ast_log(LOG_WARNING, "Short read (%d) (%s)!\n", res, strerror(errno));
145 *whennext = s->fr.samples;
149 static int g726_write(struct ast_filestream *s, struct ast_frame *f)
152 struct g726_desc *fs = (struct g726_desc *)s->private;
154 if (f->frametype != AST_FRAME_VOICE) {
155 ast_log(LOG_WARNING, "Asked to write non-voice frame!\n");
158 if (f->subclass != AST_FORMAT_G726) {
159 ast_log(LOG_WARNING, "Asked to write non-G726 frame (%d)!\n",
163 if (f->datalen % frame_size[fs->rate]) {
164 ast_log(LOG_WARNING, "Invalid data length %d, should be multiple of %d\n",
165 f->datalen, frame_size[fs->rate]);
168 if ((res = fwrite(f->data, 1, f->datalen, s->f)) != f->datalen) {
169 ast_log(LOG_WARNING, "Bad write (%d/%d): %s\n",
170 res, frame_size[fs->rate], strerror(errno));
176 static int g726_seek(struct ast_filestream *fs, off_t sample_offset, int whence)
181 static int g726_trunc(struct ast_filestream *fs)
186 static off_t g726_tell(struct ast_filestream *fs)
191 static const struct ast_format f[] = {
195 .format = AST_FORMAT_G726,
196 .open = g726_40_open,
197 .rewrite = g726_40_rewrite,
203 .buf_size = BUF_SIZE + AST_FRIENDLY_OFFSET,
204 .desc_size = sizeof(struct g726_desc),
209 .format = AST_FORMAT_G726,
210 .open = g726_32_open,
211 .rewrite = g726_32_rewrite,
217 .buf_size = BUF_SIZE + AST_FRIENDLY_OFFSET,
218 .desc_size = sizeof(struct g726_desc),
223 .format = AST_FORMAT_G726,
224 .open = g726_24_open,
225 .rewrite = g726_24_rewrite,
231 .buf_size = BUF_SIZE + AST_FRIENDLY_OFFSET,
232 .desc_size = sizeof(struct g726_desc),
237 .format = AST_FORMAT_G726,
238 .open = g726_16_open,
239 .rewrite = g726_16_rewrite,
245 .buf_size = BUF_SIZE + AST_FRIENDLY_OFFSET,
246 .desc_size = sizeof(struct g726_desc),
248 { .format = 0 } /* terminator */
251 static int load_module(void)
255 for (i = 0; f[i].format ; i++) {
256 if (ast_format_register(&f[i])) { /* errors are fatal */
257 ast_log(LOG_WARNING, "Failed to register format %s.\n", f[i].name);
264 static int unload_module(void)
268 for (i = 0; f[i].format ; i++) {
269 if (ast_format_unregister(f[i].name))
270 ast_log(LOG_WARNING, "Failed to unregister format %s.\n", f[i].name);
275 AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Raw G.726 (16/24/32/40kbps) data");