-
Notifications
You must be signed in to change notification settings - Fork 16
/
makeann.c
212 lines (186 loc) · 5.59 KB
/
makeann.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
/*
* Copyright (c) 2004-2006 Maxim Sobolev <[email protected]>
* Copyright (c) 2006-2007 Sippy Software, Inc., http://www.sippysoft.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
*/
#include "config.h"
#include <stdint.h>
#if defined(HAVE_ERR_H)
#include <err.h>
#else
#include "rtpp_util.h"
#endif
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/socket.h>
#include "g711.h"
#ifdef ENABLE_G729
#include "g729_encoder.h"
#define G729_ENABLED 1
#else
#define G729_ENABLED 0
#endif
#ifdef ENABLE_GSM
#include "gsm.h"
#define GSM_ENABLED 1
#else
#define GSM_ENABLED 0
#endif
#include "rtp.h"
#if BYTE_ORDER == BIG_ENDIAN
#define LE16_2_HOST(x) \
((((uint16_t)(x)) >> 8) & 0xff) | ((((uint16_t)(x)) & 0xff) << 8)
#else
#define LE16_2_HOST(x) (x)
#endif
static void
usage(void)
{
fprintf(stderr, "usage: makeann [-l limit [-L]] infile [outfile_template]\n");
exit(1);
}
struct efile {
FILE *f;
rtp_type_t pt;
int enabled;
char path[PATH_MAX + 1];
};
int main(int argc, char **argv)
{
FILE *infile;
uint8_t lawbuf[160];
int16_t slbuf[160];
int i, j, k, rsize, wsize, loop, limit, rlimit, ch;
#ifdef ENABLE_G729
G729_CTX *ctx_g729;
#endif
#ifdef ENABLE_GSM
gsm ctx_gsm;
#endif
const char *template;
struct efile efiles[] = {{NULL, RTP_PCMU, 1}, {NULL, RTP_GSM, GSM_ENABLED},
{NULL, RTP_G729, G729_ENABLED}, {NULL, RTP_PCMA, 1}, {NULL, -1, 0}};
loop = 0;
limit = -1;
while ((ch = getopt(argc, argv, "l:L")) != -1)
switch (ch) {
case 'l':
limit = atoi(optarg);
break;
case 'L':
loop = 1;
break;
case '?':
default:
usage();
}
argc -= optind;
argv += optind;
if (argc < 1 || argc > 2)
usage();
if (loop != 0 && limit == -1)
errx(1, "limit have to be specified in the loop mode");
if (argc == 2)
template = argv[1];
else
template = argv[0];
#ifdef ENABLE_G729
ctx_g729 = g729_encoder_new();
if (ctx_g729 == NULL)
errx(1, "can't create G.729 encoder");
#endif
#ifdef ENABLE_GSM
ctx_gsm = gsm_create();
if (ctx_gsm == NULL)
errx(1, "can't create GSM encoder");
#endif
infile = fopen(argv[0], "r");
if (infile == NULL)
err(1, "can't open %s for reading", argv[0]);
for (k = 0; efiles[k].pt != -1; k++) {
if (efiles[k].enabled == 0)
continue;
sprintf(efiles[k].path, "%s.%d", template, efiles[k].pt);
efiles[k].f = fopen(efiles[k].path, "w");
if (efiles[k].f == NULL)
err(1, "can't open %s for writing", efiles[k].path);
}
for (rlimit = limit; limit == -1 || rlimit > 0; rlimit -= i) {
rsize = (limit == -1 || rlimit > 160) ? 160 : rlimit;
i = fread(slbuf, sizeof(slbuf[0]), rsize, infile);
if (i < rsize && feof(infile) && loop != 0) {
rewind(infile);
i += fread(slbuf + i, sizeof(slbuf[0]), rsize - i, infile);
}
if (i == 0)
break;
for (j = 0; j < 160; j++) {
if (j < i)
slbuf[j] = LE16_2_HOST(slbuf[j]);
else
slbuf[j] = 0;
}
for (k = 0; efiles[k].pt != -1; k++) {
if (efiles[k].enabled == 0)
continue;
switch (efiles[k].pt) {
case RTP_PCMU:
SL2ULAW(lawbuf, slbuf, i);
wsize = i;
break;
case RTP_PCMA:
SL2ALAW(lawbuf, slbuf, i);
wsize = i;
break;
#ifdef ENABLE_G729
case RTP_G729:
for (j = 0; j < 2; j++)
g729_encode_frame(ctx_g729, &(slbuf[j * 80]), &(lawbuf[j * 10]));
wsize = 20;
break;
#endif
#ifdef ENABLE_GSM
case RTP_GSM:
gsm_encode(ctx_gsm, slbuf, lawbuf);
wsize = 33;
break;
#endif
default:
abort();
}
if (fwrite(lawbuf, sizeof(lawbuf[0]), wsize, efiles[k].f) < wsize)
errx(1, "can't write to %s", efiles[k].path);
}
}
fclose(infile);
for (k = 0; efiles[k].pt != -1; k++) {
if (efiles[k].enabled == 0)
continue;
fclose(efiles[k].f);
}
return 0;
}