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 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587
|
/* TODO
3: Adjust cmake
5: logging option
6: better information at end
7: supression of messages
*/
/*
srconv.c
Copyright (C) 2015 John ffitch after Erik de Castro Lopo
This file is associated with Csound.
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/*
* PROGRAM: srconv - sample rate converter
*
* COMMENTS: srconv takes at sample rate Rin and
* outputs them at sample rate Rout. optionally,
* the ratio (Rin / Rout) may be linearly time-varying
* according to a set of (time, ratio) pairs in an auxiliary file.
*
* flags:
*
* r = output sample rate (must be specified)
* R = input sample rate (must be specified)
* P = input sample rate / output sample rate
* Q = quality factor (1 to 5: default = 3)
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <limits.h>
#include <ctype.h>
#include <sndfile.h>
#include <samplerate.h>
#define IBUF (8192)
#define OBUF (8192)
#ifdef GNU_GETTEXT
# define Str(x) LocalizeString(x)
#else
# define Str(x) (x)
#endif
#define Str_noop(x) x
#if defined(__clang__) || defined(HAVE_GCC3)
# define LIKELY(x) __builtin_expect(!!(x),1)
# define UNLIKELY(x) __builtin_expect(!!(x),0)
#else
# define LIKELY(x) x
# define UNLIKELY(x) x
#endif
static int rewrt_hdr = 0, heartbeat = 0, ringbell = 0, peaks = SF_TRUE;
static int filetyp, outformat;
static char* outfilename = NULL;
static int block = 0;
#define FIND(MSG) \
{ \
if (*s == '\0') \
if (UNLIKELY(!(--argc) || (((s = *argv++) != NULL) && *s == '-'))) { \
dieu(MSG); return -1; \
} \
}
typedef struct {
sf_count_t frame;
double time;
double ratio;
} WARP;
static void usage(void);
static void heartbeater(void)
{
switch (heartbeat) {
default:
case 1:
fprintf(stderr, "%c\010","|/-\\"[block & 3]);
break;
case 2:
fprintf(stderr, ".");
break;
case 3:
{
int n;
fprintf(stderr, "%d%n", block, &n);
while (n--) fprintf(stderr, "\010");
}
break;
case 4:
fprintf(stderr, "\007");
}
++block;
return;
}
static char set_output_format(char c, char outformch, int *outformat)
{
if (UNLIKELY(outformat)) {
fprintf(stderr, Str("Sound format -%c has been overruled by -%c"),
outformch, c);
}
switch (c) {
case 'a':
*outformat = SF_FORMAT_ALAW; /* a-law soundfile */
break;
case 'c':
*outformat = SF_FORMAT_PCM_S8; /* signed 8-bit soundfile */
break;
case '8':
*outformat = SF_FORMAT_PCM_U8; /* unsigned 8-bit soundfile */
break;
case 'f':
*outformat = SF_FORMAT_FLOAT; /* float soundfile */
break;
case 's':
*outformat = SF_FORMAT_PCM_16; /* short_int soundfile*/
break;
case 'l':
*outformat = SF_FORMAT_PCM_32; /* long_int soundfile */
break;
case 'u':
*outformat = SF_FORMAT_ULAW; /* mu-law soundfile */
break;
case '3':
*outformat = SF_FORMAT_PCM_24; /* 24bit packed soundfile*/
break;
case 'e':
*outformat = SF_FORMAT_FLOAT; /* float sndfile (for rescaling) */
break;
default:
*outformat = 0;
fprintf(stderr, Str("srconv: unknown outout format '%c'\n"), c);
return outformch; /* do nothing */
};
return c;
}
static void dieu(char *s)
{
fprintf(stderr, "srconv: %s", s);
usage();
}
int main(int argc, char **argv)
{
SF_INFO sfinfo;
double
P = 0.0, /* Rin / Rout */
Rin = 0.0, /* input sampling rate */
Rout = 0.0; /* output sample rate */
int
i, /* index variables */
tvflg = 0, /* flag for time-varying time-scaling */
tvnxt = 0, /* counter for stepping thru time-var func */
tvlen, /* length of time-varying function */
Chans = 1, /* number of channels */
Q = 3; /* quality factor */
WARP *warp = NULL; /* fior time-varying convertion */
FILE *tvfp = NULL; /* time-vary function file */
char *infile = NULL, *bfile = NULL;
SNDFILE *inf = NULL;
SNDFILE *outf = NULL;
char c, *s;
const char *envoutyp;
char outformch = 's';
char err_msg[300];
sf_count_t flen;
outformat = SF_FORMAT_PCM_16;
filetyp = SF_FORMAT_WAV;
if ((envoutyp = getenv("SFOUTYP")) != NULL) {
if (strcmp(envoutyp, "AIFF") == 0)
filetyp = SF_FORMAT_AIFF;
else if (strcmp(envoutyp, "WAV") == 0)
filetyp = SF_FORMAT_WAV;
else if (strcmp(envoutyp, "IRCAM") == 0)
filetyp = SF_FORMAT_RAW;
/* Add new types here */
else {
snprintf(err_msg, 299, Str("%s not a recognized SFOUTYP env setting"),
envoutyp);
dieu(err_msg);
return -1;
}
}
/* call getopt to interpret commandline */
++argv;
while (--argc > 0) {
s = *argv++;
if (*s++ == '-') { /* read all flags: */
while ((c = *s++) != '\0') {
switch (c) {
case 'o':
FIND(Str("no outfilename"))
outfilename = s; /* soundout name */
for ( ; *s != '\0'; s++) ;
if (UNLIKELY(strcmp(outfilename, "stdin") == 0)) {
fprintf(stderr, Str("-o cannot be stdin"));
return -1;
}
break;
case 'A':
filetyp = SF_FORMAT_AIFF; /* AIFF output request*/
break;
case 'J':
filetyp = SF_FORMAT_RAW; /* IRCAM output request */
break;
case 'W':
filetyp = SF_FORMAT_WAV; /* WAV output request */
break;
case 'h':
filetyp = SF_FORMAT_RAW; /* skip sfheader */
break;
case 'c':
case '8':
case 'a':
case 'u':
case 's':
case 'l':
case '3':
case 'f':
outformch = set_output_format(c, outformch, &outformat);
break;
case 'R':
rewrt_hdr = 1;
break;
case 'H':
if (isdigit(*s)) {
int n;
sscanf(s, "%d%n", &heartbeat, &n);
s += n;
}
else heartbeat = 1;
break;
case 'N':
ringbell = 1; /* notify on completion */
break;
case 'K':
peaks = SF_FALSE;
break;
case 'Q':
FIND(Str("No Q argument"))
sscanf(s,"%d", &Q);
while (*++s);
break;
case 'P':
FIND(Str("No P argument"))
sscanf(s,"%lf", &P);
while (*++s);
break;
case 'r':
FIND(Str("No r argument"))
sscanf(s,"%lf", &Rout);
while (*++s);
break;
case 'i':
FIND(Str("No break file"))
tvflg = 1;
bfile = s;
while ((*s++)) {}; s--;
break;
default:
fprintf(stderr, Str("Looking at %c\n"), c);
usage(); /* this exits with error */
return -1;
}
}
}
else if (infile == NULL) {
infile = --s;
//printf(Str("Infile set to %s\n"), infile);
}
else {
fprintf(stderr, Str("Extra arguments: %s\n"), s);
usage();
return -1;
}
}
if (UNLIKELY(infile == NULL)) {
fprintf(stderr, Str("No input given\n"));
usage();
return -1;
}
switch (Q) {
case 5:
Q = SRC_SINC_BEST_QUALITY;
break;
case 4:
Q = SRC_SINC_MEDIUM_QUALITY;
break;
case 3:
default:
Q = SRC_SINC_FASTEST;
break;
case 2:
Q = SRC_ZERO_ORDER_HOLD;
break;
case 1:
Q = SRC_LINEAR;
break;
}
if (UNLIKELY((P != 0.0) && (Rout != 0.0))) {
strncpy(err_msg, Str("srconv: cannot specify both -r and -P"), 299);
goto err_rtn_msg;
}
if (UNLIKELY((inf = sf_open(infile, SFM_READ, &sfinfo)) == NULL)) {
fprintf(stderr, Str("error while opening %s"), infile);
return -1;
}
flen = sfinfo.frames;
Rin = sfinfo.samplerate;
Chans = sfinfo.channels;
if (P != 0.0)
Rout = Rin / P;
else if (Rout == 0.0)
Rout = Rin;
P = Rout/Rin;
//printf("P=%f, Rin=%f, Rout=%f\n", P, Rin, Rout);
if (tvflg) {
if (UNLIKELY((tvfp = fopen(bfile, "r")) == NULL)) {
strncpy(err_msg,
Str("srconv: cannot open time-vary function file"), 299);
goto err_rtn_msg1;
}
if (UNLIKELY(fscanf(tvfp, "%d", &tvlen) != 1)) {
strncpy(err_msg, Str("Read failure of warp file\n"), 299);
fclose(tvfp);
goto err_rtn_msg1;
}
if (UNLIKELY(tvlen <= 0)) {
fclose(tvfp);
strncpy(err_msg, Str("srconv: tvlen <= 0 "), 299);
goto err_rtn_msg1;
}
warp = (WARP*) calloc((tvlen+2), sizeof(WARP));
for (i = 0; i < tvlen; i++) {
if (UNLIKELY(fscanf(tvfp, "%lf %lf", &warp[i].time, &warp[i].ratio) != 2)) {
strncpy(err_msg, Str("srconv: too few x-y pairs "
"in time-vary function file"), 299);
fclose(tvfp);
goto err_rtn_msg1;
}
warp[i].frame = warp[i].time*Rin;
}
warp[tvlen].ratio = warp[tvlen-1].ratio;
warp[tvlen].frame = flen; warp[tvlen].time = flen/Rin;
tvlen++;
if (UNLIKELY(warp[0].frame != 0.0)) {
strncpy(err_msg, Str("srconv: first frame value "
"in time-vary function must be 0"), 299);
goto err_rtn_msg1;
}
/* for (i=0; i<tvlen;i++) */
/* printf("warp %d: time=%f frame=%d, ratio=%f\n", */
/* i, warp[i].time, warp[i].frame, warp[i].ratio); */
tvnxt = 1;
}
/* else { */
/* warp = (WARP*) malloc(2*sizeof(WARP)); */
/* warp[0].time = 0.0; warp[0].frame = 0; */
/* warp[0].ratio = P; */
/* warp[1].time = LONG_MAX; warp[1].frame = LONG_MAX; */
/* warp[0].ratio = P; */
/* tvlen = 2; */
/* } */
if (outformat == 0) outformat = SF_FORMAT_PCM_16;
if (filetyp == SF_FORMAT_RAW) rewrt_hdr = 0;
if (outfilename == NULL) {
if (filetyp == SF_FORMAT_WAV)
outfilename = "test.wav";
else if (filetyp == SF_FORMAT_AIFF)
outfilename = "test.aif";
else
outfilename = "test";
}
sfinfo.samplerate = (int) ((double) Rout + 0.5);
//printf("filetyp=%x outformat=%x\n", filetyp, outformat);
sfinfo.format = filetyp | outformat;
outf = sf_open(outfilename, SFM_WRITE, &sfinfo);
if (UNLIKELY(outf == NULL)) {
snprintf(err_msg, 299, Str("cannot open %s (%s)."),
outfilename, sf_strerror(outf));
goto err_rtn_msg1;
}
sf_command(outf, SFC_SET_CLIPPING, NULL, SF_TRUE);
sf_command(outf, SFC_SET_ADD_PEAK_CHUNK, NULL, peaks);
if (tvflg) {
SRC_STATE *state;
SRC_DATA data;
int err;
int C = (int)(0.01*Rin);
float* input = (float*)calloc(sizeof(float), C*Chans);
float* output = (float*)calloc(sizeof(float), C*Chans);
int count = 0, countin = 0;
double P0 = warp[0].ratio; /* Last ratio */
double P1 = warp[1].ratio; /* next ratio (at end of segment) */
sf_count_t CC = 0; /* index through segment */
sf_count_t N = warp[1].frame; /* Length of segment */
sf_count_t target = warp[1].frame; /* Count when at end */
if (C==0) C=1; /* avoid silly value for buffer sizes */
state = src_new(Q, Chans, &err); /* initialise */
if (UNLIKELY(state==NULL)) {
fprintf(stderr,
"Error: failed to initialise SRC -- %s\n", src_strerror(err));
sf_close(inf); sf_close(outf);
usage();
exit(1);
}
data.end_of_input = 0; /* Not end yet */
data.input_frames = 0; /* frames unprocessed */
data.data_in = input; /* input buffer */
data.src_ratio = P0; /* initial ratio */
data.data_out = output; /* output buffer */
data.output_frames = C; /* length of output buffer */
//printf("tvnxt=%d: P0, P1 = %f, %f N=%d target=%d\n",tvnxt,P0,P1,N,target);
for (;;) {
if (/*tvnxt < tvlen &&*/ countin >= target) {
/* printf("end of segment %d countin = %d target = %d\n", */
/* tvnxt-1, countin, target); */
P0 = P1;
P1 = warp[tvnxt+1].ratio;
CC = 0;
N = warp[tvnxt+1].frame - warp[tvnxt].frame;
target = warp[tvnxt+1].frame;
tvnxt++;
/* printf("tvnxt=%d: countin=%d, P0, P1 = %f, %f N=%d target=%d\n", */
/* tvnxt, countin, P0, P1, N, target); */
}
if (target==0) break;
data.src_ratio = P0+(P1-P0)*(double)CC/N;
/* printf("CC=%d, C=%d, ratio=%f P1=%f x/N=%f\n", */
/* CC, C, data.src_ratio, P1, (double)CC/N); */
if (data.input_frames==0) {
int cn = C;
if (target-CC<C) { cn=target-CC; printf("only %d left to eos\n", cn); }
if (cn!= (data.input_frames = sf_readf_float(inf, input, cn)))
data.end_of_input = SF_TRUE;
data.data_in = input;
CC += data.input_frames; countin += data.input_frames;
}
err = src_process(state, &data);
if (UNLIKELY(err)) {
fprintf(stderr, "srconv: error: %s\n", src_strerror(err));
sf_close(inf); sf_close(outf);
exit(1);
}
if (UNLIKELY(data.end_of_input && data.output_frames_gen == 0)) break;
sf_writef_float(outf, output, data.output_frames_gen);
if (rewrt_hdr)
sf_command(outf, SFC_UPDATE_HEADER_NOW, NULL, 0);
if (heartbeat) heartbeater();
count += data.output_frames_gen;
data.data_in += data.input_frames_used * Chans;
data.input_frames -= data.input_frames_used;
}
state = src_delete(state);
printf("wrote %d frames converting sr %.2f to %.2f\n", count, Rin, Rout);
sf_close(inf); sf_close(outf);
if (ringbell) fprintf(stderr, "\a");
free(input); free(output); free(warp);
exit(0);
}
else { /* Simpler case with large steops */
SRC_STATE *state;
SRC_DATA data;
int err;
int C = IBUF;
float* input = (float*)calloc(sizeof(float), C*Chans);
float* output = (float*)calloc(sizeof(float), C*Chans);
int count = 0;
state = src_new(Q, Chans, &err);
if (UNLIKELY(state==NULL)) {
fprintf(stderr,
"Error: failed to initialise SRC -- %s\n", src_strerror(err));
sf_close(inf); sf_close(outf);
usage();
exit(1);
}
data.end_of_input = 0; /* Not end yet */
data.input_frames = 0;
data.data_in = input;
data.src_ratio = P;
data.data_out = output;
data.output_frames = C;
for (;;) {
if (data.input_frames==0) {
if (C != (data.input_frames = sf_readf_float(inf, input, C)))
data.end_of_input = SF_TRUE;
data.data_in = input;
}
err = src_process(state, &data);
if (UNLIKELY(err)) {
fprintf(stderr, "srconv: error: %s\n", src_strerror(err));
sf_close(inf); sf_close(outf); free(input); free(output);
exit(1);
}
if (UNLIKELY(data.end_of_input && data.output_frames_gen == 0)) break;
sf_writef_float(outf, output, data.output_frames_gen);
if (UNLIKELY(rewrt_hdr))
sf_command(outf, SFC_UPDATE_HEADER_NOW, NULL, 0);
if (UNLIKELY(heartbeat)) heartbeater();
count += data.output_frames_gen;
data.data_in += data.input_frames_used * Chans;
data.input_frames -= data.input_frames_used;
}
state = src_delete(state);
printf("wrote %d frames converting sr %.2f to %.2f\n", count, Rin, Rout);
sf_close(inf); sf_close(outf); free(input); free(output);
if (ringbell) fprintf(stderr, "\a");
exit(0);
}
err_rtn_msg1:
sf_close(inf);
err_rtn_msg:
err_msg[255] = '\0';
fprintf(stderr, "%s", err_msg);
return -1;
}
static const char *usage_txt[] = {
Str_noop("usage: srconv [flags] infile\n\nflags:"),
Str_noop("-P num\tpitch transposition ratio (srate/r) [do not specify "
"both P and r]"),
Str_noop("-Q num\tquality factor (1 to 5: default = 3)"),
Str_noop("-i filnam\tbreak file"),
Str_noop("-r num\toutput sample rate (must be specified)"),
Str_noop("-o fnam\tsound output filename\n"),
Str_noop("-A\tcreate an AIFF format output soundfile"),
Str_noop("-J\tcreate an IRCAM format output soundfile"),
Str_noop("-W\tcreate a WAV format output soundfile"),
Str_noop("-c\t8-bit signed_char sound samples"),
Str_noop("-a\talaw sound samples"),
Str_noop("-8\t8-bit unsigned_char sound samples"),
Str_noop("-u\tulaw sound samples"),
Str_noop("-s\tshort_int sound samples"),
Str_noop("-l\tlong_int sound samples"),
Str_noop("-f\tfloat sound samples"),
Str_noop("-K\tDo not generate PEAK chunks"),
Str_noop("-R\tcontinually rewrite header while writing soundfile (WAV/AIFF)"),
Str_noop("-H#\tprint a heartbeat style 1, 2 or 3 at each soundfile write"),
Str_noop("-N\tnotify (ring the bell) when done"),
// Str_noop("-- fnam\tlog output to file"),
NULL
};
static void usage(void)
{
int i = -1;
while (usage_txt[++i] != NULL)
printf("%s\n", Str(usage_txt[i]));
}
|