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 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691
|
/*
memfiles.c:
Copyright (C) 1991, 2001 Barry Vercoe, John ffitch, Richard Dobson
(C) 2005 Istvan Varga
This file is part of Csound.
The Csound Library is free software; you can redistribute it
and/or modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
Csound 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with Csound; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
02110-1301 USA
*/
#include "csoundCore.h" /* MEMFILES.C */
#include "soundio.h"
#include "pvfileio.h"
#include "convolve.h"
#include "lpc.h"
#include "pstream.h"
#include "namedins.h"
#include <sndfile.h>
#include <string.h>
#include <inttypes.h>
static int Load_Het_File_(CSOUND *csound, const char *filnam,
char **allocp, int32 *len)
{
FILE *f;
int length = 1024;
int i = 0;
int cc;
int16 x;
char *all;
char buffer[16];
//void *dummy = 0;
f = fopen(filnam, "r");
if (f==NULL) {
csound->Warning(csound, Str("failed to open file %s\n"), filnam);
return NOTOK;
}
csoundNotifyFileOpened(csound, filnam, CSFTYPE_HETRO, 0, 0);
all = (char *)csound->Malloc(csound, (size_t) length);
if (6!=fread(buffer, 1, 6, f)) { /* Skip HETRO */
csound->Warning(csound, Str("failed to read file %s\n"), filnam);
fclose(f);
return NOTOK;
}
//for (i=0; i<6; i++) getc(f); /* Skip HETRO */
ignore_value(fgets(buffer, 10, f)); /* number of partials */
x = atoi(buffer);
memcpy(&all[0], &x, sizeof(int16));
/* Read data until end, pack as int16 */
for (i=sizeof(int16);;i+=sizeof(int16)) {
int p = 0;
while ((cc=getc(f))!=',' && cc!='\n' && p<15) {
if (cc == EOF) {
goto out;
}
buffer[p++] = cc;
}
buffer[p]='\0';
/* Expand as necessary */
if (UNLIKELY(i>=length-4)) all = csound->ReAlloc(csound, all, length+=1024);
x = atoi(buffer);
memcpy(&all[i], &x, sizeof(int16));
}
out:
fclose(f); /* and close it */
*len = i;
all = csound->ReAlloc(csound, all, i);
*allocp = all;
return 0; /* return 0 for OK */
}
static MYFLT read_ieee(FILE* f, int *end)
{
char buff[120];
double x;
char *p = fgets(buff, 120, f);
if (p==NULL || feof(f)) {
*end = 1;
return FL(0.0);
}
x = cs_strtod(buff, NULL);
return (MYFLT)x;
/* union { */
/* double d; */
/* struct {int j,k;} n; */
/* int64_t i; */
/* } x; */
/* int sign=1, ex; */
/* int64_t man; */
/* int64_t bit = 1; */
/* char buff[32]; */
/* char *p; */
/* bit <<= 62; */
/* p = fgets(buff, 32, f); */
/* printf("... %s", buff); */
/* if (p==NULL || feof(f)) { */
/* printf("ending\n"); */
/* *end = 1; */
/* return FL(0.0); */
/* } */
/* if (strstr(p, "0x0p+0")) { */
/* return FL(0.0); */
/* } */
/* if (buff[0]=='-') sign=-1; */
/* p = strchr(buff, '.')+1; */
/* sscanf(p, "%lxp%d", &man, &ex); */
/* x.i = man; */
/* if (man!=(int64_t)0) x.i |= bit; */
/* x.d = ldexp(x.d, ex-1); */
/* if (sign<0) x.d =-x.d; */
/* return (MYFLT)x.d; */
}
static int Load_CV_File_(CSOUND *csound, const char *filnam,
char **allocp, int32 *len)
{
FILE *f;
int length = 4096;
unsigned int i = 0;
int j = 0;
MYFLT x;
char *all;
CVSTRUCT cvh = {0,0,0,0,0.0,0,0,0,0,{0}};
char buff[120];
char *p;
//void *dummy = 0;
f = fopen(filnam, "r");
csoundNotifyFileOpened(csound, filnam, CSFTYPE_CVANAL, 0, 0);
all = (char *)csound->Malloc(csound, (size_t) length);
ignore_value(fgets(buff, 120, f)); /* Skip CVANAL */
cvh.magic = CVMAGIC;
p = fgets(buff, 120, f);
if (UNLIKELY(p==NULL)) {
fclose(f);
return csoundInitError(csound, Str("Ill-formed CV file\n"));
}
cvh.headBsize = strtol(p, &p, 10);
cvh.dataBsize = strtol(p, &p, 10);
cvh.dataFormat = strtol(p, &p, 10);
cvh.samplingRate = (MYFLT)cs_strtod(p, &p);
cvh.src_chnls = strtol(p, &p, 10);
cvh.channel = strtol(p, &p, 10);
cvh.Hlen = strtol(p, &p, 10);
cvh.Format = strtol(p, &p, 10);
/* fscanf(f, "%d %d %d %g %d %d %d %d\n", */
/* &cvh.headBsize, &cvh.dataBsize, &cvh.dataFormat, */
/* &cvh.samplingRate, &cvh.src_chnls, &cvh.channel, */
/* &cvh.Hlen, &cvh.Format); */
cvh.headBsize = sizeof(int32)*8 + sizeof(MYFLT);
memcpy(&all[0], &cvh, sizeof(CVSTRUCT));
/* Read data until end, pack as MYFLTs */
for (i=sizeof(CVSTRUCT);;i+=sizeof(MYFLT)) {
/* Expand as necessary */
if (UNLIKELY(i>=length-sizeof(MYFLT)-4)) {
//printf("expanding from %p[%d] to\n", all, length);
all = csound->ReAlloc(csound, all, length+=4096);
//printf("i=%d %p[%d]\n", i, all, length);
} x = read_ieee(f, &j);
if (j) break;
memcpy(&all[i], &x, sizeof(MYFLT));
}
fclose(f); /* and close it */
//printf("length=%d i=%d\n", length, i);
*len = i;
all = csound->ReAlloc(csound, all, i);
*allocp = all;
return 0; /* return 0 for OK */
}
static int Load_LP_File_(CSOUND *csound, const char *filnam,
char **allocp, int32 *len)
{
FILE *f;
int length = 4096;
unsigned int i = 0;
int j = 0;
MYFLT x;
char *all, *p;
LPHEADER lph = {0,0,0,0,0.0,0.0,0.0,{0}};
char buff[120];
//void *dummy = 0;
f = fopen(filnam, "r");
csoundNotifyFileOpened(csound, filnam, CSFTYPE_LPC, 0, 0);
all = (char *)csound->Malloc(csound, (size_t) length);
for (i=0; i<6; i++) fgetc(f); /* Skip LPANAL */
if (UNLIKELY(4!=fscanf(f, "%d %d %d %d\n",
&lph.headersize, &lph.lpmagic, &lph.npoles, &lph.nvals))) {
fclose(f);
return csound->InitError(csound, Str("Ill-formed LPC file\n"));
}
ignore_value(fgets(buff, 120, f));
lph.framrate = (MYFLT)cs_strtod(buff, &p);
lph.srate = (MYFLT)cs_strtod(p, &p);
lph.duration = (MYFLT)cs_strtod(p, &p);
/* lph.text[0] = (char)strtol(p, &p, 0); */
/* lph.text[1] = (char)strtol(p, &p, 0); */
/* lph.text[2] = (char)strtol(p, &p, 0); */
/* lph.text[3] = (char)strtol(p, &p, 0); */
/* printf("LPHeader %d %d %d %d\n%f %f %f\n", */
/* lph.headersize, lph.lpmagic, lph.npoles, lph.nvals, */
/* lph.framrate, lph.srate, lph.duration); */
/* fscanf(f, "%f %f %f %.2x %.2x %.2x %.2x\n", */
/* &lph.framrate, &lph.srate, &lph.duration, */
/* &lph.text[0], &lph.text[1], &lph.text[2], &lph.text[3]); */
// This needs surgery if in/out different MYFLT sizes *** FIX ME ***
lph.headersize = sizeof(int32)*4+sizeof(MYFLT)*3;
memcpy(&all[0], &lph, lph.headersize);
/* Read data until end, pack as MYFLTs */
for (i=lph.headersize;;i+=sizeof(MYFLT)) {
/* Expand as necessary */
if (UNLIKELY(i>=length-sizeof(MYFLT)-8)) {
//printf("expanding from %p[%d] to\n", all, length);
all = csound->ReAlloc(csound, all, length+=4096);
//printf("i=%d %p[%d]\n", i, all, length);
}
x = read_ieee(f, &j);
if (j) break;
memcpy(&all[i], &x, sizeof(MYFLT));
}
fclose(f); /* and close it */
printf("length=%d i=%u\n", length, i);
*len = i;
all = csound->ReAlloc(csound, all, i);
*allocp = all;
return 0; /* return 0 for OK */
}
static int Load_File_(CSOUND *csound, const char *filnam,
char **allocp, int32 *len, int csFileType)
{
FILE *f;
//void *dummy = 0;
*allocp = NULL;
f = fopen(filnam, "rb");
if (UNLIKELY(f == NULL)) /* if cannot open the file */
return 1; /* return 1 */
if (csFileType==CSFTYPE_HETRO) {
char buff[8];
ignore_value(fgets(buff, 6, f));
if (strcmp(buff, "HETRO")==0) {
fclose(f);
return Load_Het_File_(csound, filnam, allocp, len);
}
}
else if (csFileType==CSFTYPE_CVANAL) {
char buff[8];
ignore_value(fgets(buff, 7, f));
if (strcmp(buff, "CVANAL")==0) {
fclose(f);
return Load_CV_File_(csound, filnam, allocp, len);
}
}
else if (csFileType==CSFTYPE_LPC) {
char buff[8];
ignore_value(fgets(buff, 7, f));
if (strcmp(buff, "LPANAL")==0) {
fclose(f);
return Load_LP_File_(csound, filnam, allocp, len);
}
}
/* notify the host if it asked */
csoundNotifyFileOpened(csound, filnam, csFileType, 0, 0);
fseek(f, 0L, SEEK_END); /* then get its length */
*len = (int32) ftell(f);
fseek(f, 0L, SEEK_SET);
if (UNLIKELY(*len < 1L))
goto err_return;
*allocp = csound->Malloc(csound, (size_t) (*len + 1)); /* alloc as reqd */
if (UNLIKELY(fread(*allocp, (size_t) 1, /* read file in */
(size_t) (*len), f) != (size_t) (*len)))
goto err_return;
fclose(f); /* and close it */
(*allocp)[*len] = '\0'; /* add sentinel */
return 0; /* return 0 for OK */
err_return:
if (*allocp != NULL) {
csound->Free(csound, *allocp);
*allocp = NULL;
}
fclose(f);
return 1;
}
/* Backwards-compatible wrapper for ldmemfile2().
Please use ldmemfile2() or ldmemfile2withCB() in all new code instead.
MEMFIL *ldmemfile(CSOUND *csound, const char *filnam)
{
return ldmemfile2withCB(csound, filnam, CSFTYPE_UNKNOWN, NULL);
}
*/
/* Takes an additional parameter specifying the type of the file being opened.
The type constants are defined in the enumeration CSOUND_FILETYPES.
Use ldmemfile2() to load file without additional processing.
MEMFIL *ldmemfile2(CSOUND *csound, const char *filnam, int csFileType)
{
return ldmemfile2withCB(csound, filnam, csFileType, NULL);
}
*/
/* This version of ldmemfile2 allows you to specify a callback procedure
to process the file's data after it is loaded. This method ensures that
your procedure is only called once even if the file is "loaded" multiple
times by several opcodes. callback can be NULL.
Callback signature: int myfunc(CSOUND* csound, MEMFIL* mfp)
Callback return value: OK (0) or NOTOK (-1)
*/
MEMFIL *ldmemfile2withCB(CSOUND *csound, const char *filnam, int csFileType,
int (*callback)(CSOUND*, MEMFIL*))
{ /* read an entire file into memory and log it */
MEMFIL *mfp, *last = NULL; /* share the file with all subsequent requests*/
char *allocp = NULL; /* if not fullpath, look in current directory,*/
int32 len = 0; /* then SADIR (if defined). */
char *pathnam; /* Used by adsyn, pvoc, and lpread */
mfp = csound->memfiles;
while (mfp != NULL) { /* Checking chain */
if (strcmp(mfp->filename, filnam) == 0) /* if match */
return mfp; /* we have it */
last = mfp;
mfp = mfp->next;
}
/* Add new file description */
mfp = (MEMFIL*) csound->Calloc(csound, sizeof(MEMFIL));
if (last != NULL)
last->next = mfp;
else
csound->memfiles = mfp;
mfp->next = NULL;
strNcpy(mfp->filename, filnam, 256);
pathnam = csoundFindInputFile(csound, filnam, "SADIR");
if (UNLIKELY(pathnam == NULL)) {
csoundMessage(csound, Str("cannot load %s\n"), filnam);
delete_memfile(csound, filnam);
return NULL;
}
if (UNLIKELY(Load_File_(csound, pathnam, &allocp, &len, csFileType) != 0)) {
/* loadfile */
csoundMessage(csound, Str("cannot load %s, or SADIR undefined\n"),
pathnam);
csound->Free(csound, pathnam);
delete_memfile(csound, filnam);
return NULL;
}
/* init the struct */
mfp->beginp = allocp;
mfp->endp = allocp + len;
mfp->length = len;
if (callback != NULL) {
if (callback(csound, mfp) != OK) {
csoundMessage(csound, Str("error processing file %s\n"), filnam);
csound->Free(csound, pathnam);
delete_memfile(csound, filnam);
return NULL;
}
}
csoundMessage(csound, Str("file %s (%ld bytes) loaded into memory\n"),
pathnam, (long) len);
csound->Free(csound, pathnam);
return mfp; /* rtn new slotadr */
}
/* clear the memfile array, & free all allocated space */
void rlsmemfiles(CSOUND *csound)
{
MEMFIL *mfp = csound->memfiles, *nxt;
while (mfp != NULL) {
nxt = mfp->next;
csound->Free(csound, mfp->beginp); /* free the space */
csound->Free(csound, mfp);
mfp = nxt;
}
csound->memfiles = NULL;
}
int delete_memfile(CSOUND *csound, const char *filnam)
{
MEMFIL *mfp, *prv;
prv = NULL;
mfp = csound->memfiles;
while (mfp != NULL) {
if (strcmp(mfp->filename, filnam) == 0)
break;
prv = mfp;
mfp = mfp->next;
}
if (mfp == NULL)
return -1;
if (prv == NULL)
csound->memfiles = mfp->next;
else
prv->next = mfp->next;
csound->Free(csound, mfp->beginp);
csound->Free(csound, mfp);
return 0;
}
/* ------------------------------------------------------------------------ */
/* despite basic parity in analysis and synthesis,
we still have to rescale the amplitudes
by 32768 to fit Csound's notion of 0dBFS.
Note we do NOT try to rescale to match the old .pv format.
*/
/* custom version of ldmemfile();
enables pvfileio funcs to apply byte-reversal if needed.
NB: filename size in MEMFIL struct was only 64; now 256...
*/
/* RWD NB PVOCEX format always 32bit, so no MYFLTs here! */
static int pvx_err_msg(CSOUND *csound, const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
csound->ErrMsgV(csound, Str("PVOCEX_LoadFile(): error:\n "), fmt, args);
va_end(args);
return -1;
}
int PVOCEX_LoadFile(CSOUND *csound, const char *fname, PVOCEX_MEMFILE *p)
{
PVOCDATA pvdata;
WAVEFORMATEX fmt;
PVOCEX_MEMFILE *pp;
int i, j, rc = 0, pvx_id, hdr_size, name_size;
int32 mem_wanted;
int32 totalframes, framelen;
float *pFrame;
if (UNLIKELY(fname == NULL || fname[0] == '\0')) {
memset(p, 0, sizeof(PVOCEX_MEMFILE));
return pvx_err_msg(csound, Str("Empty or NULL file name"));
}
/* is this file already loaded ? */
pp = csound->pvx_memfiles;
while (pp != NULL && strcmp(pp->filename, fname) != 0)
pp = pp->nxt;
if (pp != NULL) {
memcpy(p, pp, sizeof(PVOCEX_MEMFILE));
return 0;
}
hdr_size = ((int) sizeof(PVOCEX_MEMFILE) + 7) & (~7);
name_size = ((int) strlen(fname) + 8) & (~7);
memset(p, 0, sizeof(PVOCEX_MEMFILE));
memset(&pvdata, 0, sizeof(PVOCDATA));
memset(&fmt, 0, sizeof(WAVEFORMATEX));
pvx_id = csound->PVOC_OpenFile(csound, fname, &pvdata, &fmt);
if (UNLIKELY(pvx_id < 0)) {
return pvx_err_msg(csound, Str("unable to open pvocex file %s: %s"),
fname, csound->PVOC_ErrorString(csound));
}
framelen = 2 * pvdata.nAnalysisBins;
/* also, accept only 32bit floats for now */
if (UNLIKELY(pvdata.wWordFormat != PVOC_IEEE_FLOAT)) {
return pvx_err_msg(csound, Str("pvoc-ex file %s is not 32bit floats"),
fname);
}
/* FOR NOW, accept only PVOC_AMP_FREQ: later, we can convert */
/* NB Csound knows no other: frameFormat is not read anywhere! */
if (UNLIKELY(pvdata.wAnalFormat != PVOC_AMP_FREQ)) {
return pvx_err_msg(csound, Str("pvoc-ex file %s not in AMP_FREQ format"),
fname);
}
/* ignore the window spec until we can use it! */
totalframes = csound->PVOC_FrameCount(csound, pvx_id);
if (UNLIKELY(totalframes <= 0)) {
return pvx_err_msg(csound, Str("pvoc-ex file %s is empty!"), fname);
}
mem_wanted = totalframes * 2 * pvdata.nAnalysisBins * sizeof(float);
/* try for the big block first! */
pp = (PVOCEX_MEMFILE*) csound->Malloc(csound, (size_t) (hdr_size + name_size)
+ (size_t) mem_wanted);
memset((void*) pp, 0, (size_t) (hdr_size + name_size));
pp->filename = (char*) ((uintptr_t) pp + (uintptr_t) hdr_size);
pp->nxt = csound->pvx_memfiles;
pp->data = (float*) ((uintptr_t) pp + (uintptr_t) (hdr_size + name_size));
strcpy(pp->filename, fname);
/* despite using pvocex infile, and pvocex-style resynth, we ~still~
have to rescale to Csound's internal range! This is because all pvocex
calculations assume +-1 floatsam i/o.
It seems preferable to do this here, rather than force the user
to do so. Csound might change one day...
*/
for (pFrame = pp->data, i = 0; i < totalframes; i++) {
rc = csound->PVOC_GetFrames(csound, pvx_id, pFrame, 1);
if (UNLIKELY(rc != 1))
break; /* read error, but may still have something to use */
/* scale amps to Csound range, to fit fsig */
for (j = 0; j < framelen; j += 2) {
pFrame[j] *= (float) csound->e0dbfs;
}
pFrame += framelen;
}
csound->PVOC_CloseFile(csound, pvx_id);
if (UNLIKELY(rc < 0)) {
csound->Free(csound, pp);
return pvx_err_msg(csound, Str("error reading pvoc-ex file %s"), fname);
}
if (UNLIKELY(i < totalframes)) {
csound->Free(csound, pp);
return pvx_err_msg(csound, Str("error reading pvoc-ex file %s "
"after %d frames"), fname, i);
}
pp->srate = (MYFLT) fmt.nSamplesPerSec;
if (UNLIKELY(pp->srate != csound->esr)) { /* & chk the data */
csound->Warning(csound, Str("%s's srate = %8.0f, orch's srate = %8.0f"),
fname, pp->srate, csound->esr);
}
pp->nframes = (uint32) totalframes;
pp->format = PVS_AMP_FREQ;
pp->fftsize = 2 * (pvdata.nAnalysisBins - 1);
pp->overlap = pvdata.dwOverlap;
pp->winsize = pvdata.dwWinlen;
pp->chans = fmt.nChannels;
switch ((pv_wtype) pvdata.wWindowType) {
case PVOC_HAMMING:
pp->wintype = PVS_WIN_HAMMING;
break;
case PVOC_HANN:
pp->wintype = PVS_WIN_HANN;
break;
case PVOC_KAISER:
pp->wintype = PVS_WIN_KAISER;
break;
default:
/* deal with all other possibilities later! */
pp->wintype = PVS_WIN_HAMMING;
break;
}
/* link into PVOC-EX memfile chain */
csound->pvx_memfiles = pp;
csound->Message(csound, Str("file %s (%"PRIi32" bytes) loaded into memory\n"),
fname, mem_wanted);
memcpy(p, pp, sizeof(PVOCEX_MEMFILE));
return 0;
}
/* ------------------------------------------------------------------------ */
/**
* Load an entire sound file into memory.
* 'fileName' is the file name (searched in the current directory first,
* then search path defined by SSDIR, then SFDIR), and sfinfo (optional,
* may be NULL) stores the default parameters for opening a raw file.
* On success, a pointer to an SNDMEMFILE structure (see csoundCore.h) is
* returned, and sound file parameters are stored in sfinfo (assuming that
* it is not NULL).
* Multiple calls of csoundLoadSoundFile() with the same file name will
* share the same SNDMEMFILE structure, and the file is loaded only once
* from disk.
* The return value is NULL if an error occurs (the contents of sfinfo may
* be undefined in this case).
*/
SNDMEMFILE *csoundLoadSoundFile(CSOUND *csound, const char *fileName, void *sfi)
{
SF_INFO *sfinfo = sfi;
SNDFILE *sf;
void *fd;
SNDMEMFILE *p = NULL;
SF_INFO tmp;
if (UNLIKELY(fileName == NULL || fileName[0] == '\0'))
return NULL;
/* check if file is already loaded */
if (csound->sndmemfiles != NULL) {
p = cs_hash_table_get(csound, csound->sndmemfiles, (char*)fileName);
}
else {
csound->sndmemfiles = cs_hash_table_create(csound);
}
if (p != NULL) {
/* if file was loaded earlier: */
if (sfinfo != NULL) {
memset(sfinfo, 0, sizeof(SF_INFO));
sfinfo->frames = (sf_count_t) p->nFrames;
sfinfo->samplerate = ((int) p->sampleRate + 0.5);
sfinfo->channels = p->nChannels;
sfinfo->format = FORMAT2SF(p->sampleFormat) | TYPE2SF(p->fileType);
}
return p;
}
/* open file */
if (sfinfo == NULL) {
memset(&tmp, 0, sizeof(SF_INFO));
sfinfo = &tmp;
}
fd = csound->FileOpen2(csound, &sf, CSFILE_SND_R, fileName, sfinfo,
"SFDIR;SSDIR", CSFTYPE_UNKNOWN_AUDIO, 0);
if (UNLIKELY(fd == NULL)) {
csound->ErrorMsg(csound,
Str("csoundLoadSoundFile(): failed to open '%s' %s"),
fileName, Str(sf_strerror(NULL)));
return NULL;
}
p = (SNDMEMFILE*)
csound->Malloc(csound, sizeof(SNDMEMFILE)
+ (size_t) sfinfo->frames * sizeof(float));
/* set parameters */
p->name = (char*) csound->Malloc(csound, strlen(fileName) + 1);
strcpy(p->name, fileName);
p->fullName = (char*) csound->Malloc(csound,
strlen(csound->GetFileName(fd)) + 1);
strcpy(p->fullName, csound->GetFileName(fd));
p->sampleRate = (double) sfinfo->samplerate;
p->nFrames = (size_t) sfinfo->frames;
p->nChannels = sfinfo->channels;
p->sampleFormat = SF2FORMAT(sfinfo->format);
p->fileType = SF2TYPE(sfinfo->format);
/* set defaults for sampler information */
p->loopMode = 0;
p->startOffs = 0.0;
p->loopStart = 0.0;
p->loopEnd = 0.0;
p->baseFreq = 1.0;
p->scaleFac = 1.0;
{
SF_INSTRUMENT lpd;
if (sf_command(sf, SFC_GET_INSTRUMENT, &lpd, sizeof(SF_INSTRUMENT))
!= 0) {
if (lpd.loop_count > 0 && lpd.loops[0].mode != SF_LOOP_NONE) {
/* set loop mode and loop points */
p->loopMode = (lpd.loops[0].mode == SF_LOOP_FORWARD ?
2 : (lpd.loops[0].mode == SF_LOOP_BACKWARD ? 3 : 4));
p->loopStart = (double) lpd.loops[0].start;
p->loopEnd = (double) lpd.loops[0].end;
}
else {
/* loop mode: off */
p->loopMode = 1;
}
p->baseFreq = pow(2.0, (double) (((int) lpd.basenote - 69) * 100
+ (int) lpd.detune) / 1200.0) * csound->A4;
p->scaleFac = pow(10.0, (double) lpd.gain * 0.05);
}
}
if (UNLIKELY((size_t) sf_readf_float(sf, &(p->data[0]), (sf_count_t) p->nFrames)
!= p->nFrames)) {
csound->FileClose(csound, fd);
csound->Free(csound, p->name);
csound->Free(csound, p->fullName);
csound->Free(csound, p);
csound->ErrorMsg(csound, Str("csoundLoadSoundFile(): error reading '%s'"),
fileName);
return NULL;
}
p->data[p->nFrames] = 0.0f;
csound->FileClose(csound, fd);
csound->Message(csound, "%s '%s' (sr = %d Hz, %d %s, %" PRId64 " %s) %s",
Str("File"), p->fullName, sfinfo->samplerate,
sfinfo->channels, Str("channel(s)"), (int64_t)sfinfo->frames,
Str("sample frames"),
Str("loaded into memory\n"));
/* link into database */
cs_hash_table_put(csound, csound->sndmemfiles, (char*)fileName, p);
/* return with pointer to file structure */
return p;
}
|