Asterisk - The Open Source Telephony Project GIT-master-a358458
format_siren7.c
Go to the documentation of this file.
1/*
2 * Asterisk -- An open source telephony toolkit.
3 *
4 * Copyright (C) 1999 - 2008, Anthony Minessale and Digium, Inc.
5 * Anthony Minessale (anthmct@yahoo.com)
6 * Kevin P. Fleming <kpfleming@digium.com>
7 *
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.
13 *
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.
17 */
18
19/*! \file
20 *
21 * \brief ITU G.722.1 (Siren7, licensed from Polycom) format, 32kbps bitrate only
22 * \arg File name extensions: siren7
23 * \ingroup formats
24 */
25
26/*** MODULEINFO
27 <support_level>core</support_level>
28 ***/
29
30#include "asterisk.h"
31
32#include "asterisk/mod_format.h"
33#include "asterisk/module.h"
34#include "asterisk/endian.h"
36
37#define BUF_SIZE 80 /* 20 milliseconds == 80 bytes, 320 samples */
38#define SAMPLES_TO_BYTES(x) x / (320 / 80)
39#define BYTES_TO_SAMPLES(x) x * (320 / 80)
40
41static struct ast_frame *siren7read(struct ast_filestream *s, int *whennext)
42{
43 size_t res;
44
45 /* Send a frame from the file to the appropriate channel */
47 if ((res = fread(s->fr.data.ptr, 1, s->fr.datalen, s->f)) != s->fr.datalen) {
48 if (res) {
49 ast_log(LOG_WARNING, "Short read of %s data (expected %d bytes, read %zu): %s\n",
51 strerror(errno));
52 }
53 return NULL;
54 }
55 *whennext = s->fr.samples = BYTES_TO_SAMPLES(res);
56 return &s->fr;
57}
58
59static int siren7write(struct ast_filestream *fs, struct ast_frame *f)
60{
61 int res;
62
63 if ((res = fwrite(f->data.ptr, 1, f->datalen, fs->f)) != f->datalen) {
64 ast_log(LOG_WARNING, "Bad write (%d/%d): %s\n", res, f->datalen, strerror(errno));
65 return -1;
66 }
67 return 0;
68}
69
70static int siren7seek(struct ast_filestream *fs, off_t sample_offset, int whence)
71{
72 off_t offset = 0, min = 0, cur, max;
73
74 sample_offset = SAMPLES_TO_BYTES(sample_offset);
75
76 if ((cur = ftello(fs->f)) < 0) {
77 ast_log(AST_LOG_WARNING, "Unable to determine current position in siren7 filestream %p: %s\n", fs, strerror(errno));
78 return -1;
79 }
80
81 if (fseeko(fs->f, 0, SEEK_END) < 0) {
82 ast_log(AST_LOG_WARNING, "Unable to seek to end of siren7 filestream %p: %s\n", fs, strerror(errno));
83 return -1;
84 }
85
86 if ((max = ftello(fs->f)) < 0) {
87 ast_log(AST_LOG_WARNING, "Unable to determine max position in siren7 filestream %p: %s\n", fs, strerror(errno));
88 return -1;
89 }
90
91 if (whence == SEEK_SET)
92 offset = sample_offset;
93 else if (whence == SEEK_CUR || whence == SEEK_FORCECUR)
94 offset = sample_offset + cur;
95 else if (whence == SEEK_END)
96 offset = max - sample_offset;
97
98 if (whence != SEEK_FORCECUR)
99 offset = (offset > max) ? max : offset;
100
101 /* always protect against seeking past begining. */
102 offset = (offset < min) ? min : offset;
103
104 return fseeko(fs->f, offset, SEEK_SET);
105}
106
107static int siren7trunc(struct ast_filestream *fs)
108{
109 int fd;
110 off_t cur;
111
112 if ((fd = fileno(fs->f)) < 0) {
113 ast_log(AST_LOG_WARNING, "Unable to determine file descriptor for siren7 filestream %p: %s\n", fs, strerror(errno));
114 return -1;
115 }
116 if ((cur = ftello(fs->f)) < 0) {
117 ast_log(AST_LOG_WARNING, "Unable to determine current position in siren7 filestream %p: %s\n", fs, strerror(errno));
118 return -1;
119 }
120 /* Truncate file to current length */
121 return ftruncate(fd, cur);
122}
123
124static off_t siren7tell(struct ast_filestream *fs)
125{
126 return BYTES_TO_SAMPLES(ftello(fs->f));
127}
128
129static struct ast_format_def siren7_f = {
130 .name = "siren7",
131 .exts = "siren7",
132 .write = siren7write,
133 .seek = siren7seek,
134 .trunc = siren7trunc,
135 .tell = siren7tell,
136 .read = siren7read,
137 .buf_size = BUF_SIZE + AST_FRIENDLY_OFFSET,
138};
139
140static int load_module(void)
141{
145
147}
148
149static int unload_module(void)
150{
152}
153
154AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "ITU G.722.1 (Siren7, licensed from Polycom)",
155 .support_level = AST_MODULE_SUPPORT_CORE,
156 .load = load_module,
157 .unload = unload_module,
158 .load_pri = AST_MODPRI_APP_DEPEND
Asterisk main include file. File version handling, generic pbx functions.
#define ast_log
Definition: astobj2.c:42
Asterisk architecture endianess compatibility definitions.
#define min(a, b)
Definition: f2c.h:197
#define max(a, b)
Definition: f2c.h:198
#define SEEK_FORCECUR
Definition: file.h:51
const char * ast_format_get_name(const struct ast_format *format)
Get the name associated with a format.
Definition: format.c:334
Media Format Cache API.
struct ast_format * ast_format_siren7
Built-in cached siren7 format.
Definition: format_cache.c:216
static struct ast_format_def siren7_f
static int siren7trunc(struct ast_filestream *fs)
#define BYTES_TO_SAMPLES(x)
Definition: format_siren7.c:39
static int siren7write(struct ast_filestream *fs, struct ast_frame *f)
Definition: format_siren7.c:59
#define BUF_SIZE
Definition: format_siren7.c:37
static off_t siren7tell(struct ast_filestream *fs)
static struct ast_frame * siren7read(struct ast_filestream *s, int *whennext)
Definition: format_siren7.c:41
static int load_module(void)
static int siren7seek(struct ast_filestream *fs, off_t sample_offset, int whence)
Definition: format_siren7.c:70
static int unload_module(void)
#define SAMPLES_TO_BYTES(x)
Definition: format_siren7.c:38
#define AST_FRAME_SET_BUFFER(fr, _base, _ofs, _datalen)
#define AST_FRIENDLY_OFFSET
Offset into a frame's data buffer.
#define AST_LOG_WARNING
#define LOG_WARNING
int errno
Header for providers of file and format handling routines. Clients of these routines should include "...
int ast_format_def_unregister(const char *name)
Unregisters a file format.
Definition: file.c:162
#define ast_format_def_register(f)
Definition: mod_format.h:136
Asterisk module definitions.
@ AST_MODFLAG_LOAD_ORDER
Definition: module.h:317
#define AST_MODULE_INFO(keystr, flags_to_set, desc, fields...)
Definition: module.h:543
@ AST_MODPRI_APP_DEPEND
Definition: module.h:328
@ AST_MODULE_SUPPORT_CORE
Definition: module.h:121
#define ASTERISK_GPL_KEY
The text the key() function should return.
Definition: module.h:46
@ 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 NULL
Definition: resample.c:96
This structure is allocated by file.c in one chunk, together with buf_size and desc_size bytes of mem...
Definition: mod_format.h:101
struct ast_frame fr
frame produced by read, typically
Definition: mod_format.h:122
Each supported file format is described by the following structure.
Definition: mod_format.h:43
char name[80]
Definition: mod_format.h:44
struct ast_format * format
Definition: mod_format.h:48
struct ast_format * format
Data structure associated with a single frame of data.
struct ast_frame_subclass subclass
union ast_frame::@226 data