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 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434
|
/* melder_audiofiles.cpp
*
* Copyright (C) 1992-2011 Paul Boersma & David Weenink, 2007 Erez Volk (for FLAC)
*
* 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., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/*
* pb 2002/12/16 corrected bug for cases in which format chunk follows data chunk in WAV file
* pb 2003/09/12 Sound Designer II files
* pb 2004/05/14 support for reading 24-bit and 32-bit audio files
* pb 2004/11/12 writeShortToAudio can write single channels of stereo signal
* pb 2004/11/15 fast reading of 16-bit audio files
* pb 2006/12/13 32-bit IEEE float audio files
* pb 2007/01/24 better error message for DVI ADPCM
* Erez Volk 2007/03 FLAC reading
* Erez Volk 2007/05/14 FLAC writing
* pb 2007/05/17 corrected stereo FLAC writing
* Erez Volk 2007/06/02 MP3 reading
* pb 2007/10/05 FSOpenResFile
* pb 2008/01/19 double
* pb 2010/12/23 support for multi-channel sound files
* pb 2011/04/05 C++
* pb 2011/05/03 fix WAV files with negative data chunk sizes
*/
#include "melder.h"
#include "abcio.h"
#include "math.h"
#include "flac_FLAC_metadata.h"
#include "flac_FLAC_stream_decoder.h"
#include "flac_FLAC_stream_encoder.h"
#include "mp3.h"
#if defined (macintosh)
#include <Resources.h>
#endif
/***** WRITING *****/
#ifndef WAVE_FORMAT_PCM
#define WAVE_FORMAT_PCM 0x0001
#endif
#define WAVE_FORMAT_IEEE_FLOAT 0x0003
#define WAVE_FORMAT_ALAW 0x0006
#define WAVE_FORMAT_MULAW 0x0007
#define WAVE_FORMAT_DVI_ADPCM 0x0011
void MelderFile_writeAudioFileHeader (MelderFile file, int audioFileType, long sampleRate, long numberOfSamples, int numberOfChannels, int numberOfBitsPerSamplePoint) {
try {
FILE *f = file -> filePointer;
if (f == NULL) return;
const int numberOfBytesPerSamplePoint = (numberOfBitsPerSamplePoint + 7) / 8;
switch (audioFileType) {
case Melder_AIFF: {
try {
long dataSize = numberOfSamples * numberOfBytesPerSamplePoint * numberOfChannels;
/* Form Chunk: contains all other chunks. */
if (fwrite ("FORM", 1, 4, f) != 4) Melder_throw ("Error in file while trying to write the FORM statement.");
binputi4 (4 + (8 + 4) + (8 + 18) + (8 + 8 + dataSize), f); // the size of the Form Chunk
if (fwrite ("AIFF", 1, 4, f) != 4) Melder_throw ("Error in file while trying to write the AIFF file type.");
/* Format Version Chunk: 8 + 4 bytes. */
if (fwrite ("FVER", 1, 4, f) != 4) Melder_throw ("Error in file while trying to write the FVER statement.");
binputi4 (4, f); // the size of what follows
binputi4 (0xA2805140, f); // time of version
/* Common Chunk: 8 + 18 bytes. */
if (fwrite ("COMM", 1, 4, f) != 4) Melder_throw ("Error in file while trying to write the COMM statement.");
binputi4 (18, f); // the size of what follows
binputi2 (numberOfChannels, f);
binputi4 (numberOfSamples, f);
binputi2 (numberOfBitsPerSamplePoint, f);
binputr10 (sampleRate, f);
/* Sound Data Chunk: 8 + 8 bytes + samples. */
if (fwrite ("SSND", 1, 4, f) != 4) Melder_throw ("Error in file while trying to write the SSND statement.");
binputi4 (8 + dataSize, f); // the size of what follows
binputi4 (0, f); // offset
binputi4 (0, f); // block size
} catch (MelderError) {
Melder_throw ("AIFF header not written.");
}
} break;
case Melder_AIFC: {
try {
long dataSize = numberOfSamples * numberOfBytesPerSamplePoint * numberOfChannels;
/* Form Chunk: contains all other chunks. */
if (fwrite ("FORM", 1, 4, f) != 4) Melder_throw ("Error in file while trying to write the FORM statement.");
binputi4 (4 + (8 + 4) + (8 + 24) + (8 + 8 + dataSize), f); // the size of the Form Chunk
if (fwrite ("AIFC", 1, 4, f) != 4) Melder_throw ("Error in file while trying to write the AIFC file type.");
/* Format Version Chunk: 8 + 4 bytes. */
if (fwrite ("FVER", 1, 4, f) != 4) Melder_throw ("Error in file while trying to write the FVER statement.");
binputi4 (4, f); // the size of what follows
binputi4 (0xA2805140, f); // time of version
/* Common Chunk: 8 + 24 bytes. */
if (fwrite ("COMM", 1, 4, f) != 4) Melder_throw ("Error in file while trying to write the COMM statement.");
binputi4 (24, f); // the size of what follows
binputi2 (numberOfChannels, f);
binputi4 (numberOfSamples, f);
binputi2 (numberOfBitsPerSamplePoint, f);
binputr10 (sampleRate, f);
if (fwrite ("NONE", 1, 4, f) != 4) Melder_throw ("Error in file while trying to write the compression type.");
binputi2 (0, f); // name of compression
/* Sound Data Chunk: 8 + 8 bytes + samples. */
if (fwrite ("SSND", 1, 4, f) != 4) Melder_throw ("Error in file while trying to write the SSND statement.");
binputi4 (8 + dataSize, f); // the size of what follows
binputi4 (0, f); // offset
binputi4 (0, f); // block size
} catch (MelderError) {
Melder_throw ("AIFC header not written.");
}
} break;
case Melder_WAV: {
try {
long dataSize = numberOfSamples * numberOfBytesPerSamplePoint * numberOfChannels;
/* RIFF Chunk: contains all other chunks. */
if (fwrite ("RIFF", 1, 4, f) != 4) Melder_throw ("Error in file while trying to write the RIFF statement.");
binputi4LE (4 + (12 + 16) + (4 + dataSize), f);
if (fwrite ("WAVE", 1, 4, f) != 4) Melder_throw ("Error in file while trying to write the WAV file type.");
/* Format Chunk: 8 + 16 bytes. */
if (fwrite ("fmt ", 1, 4, f) != 4) Melder_throw ("Error in file while trying to write the FMT statement.");
binputi4LE (16, f);
binputi2LE (WAVE_FORMAT_PCM, f);
binputi2LE (numberOfChannels, f);
binputi4LE (sampleRate, f); // number of samples per second
binputi4LE (sampleRate * numberOfBytesPerSamplePoint * numberOfChannels, f); // average number of bytes per second
binputi2LE (numberOfBytesPerSamplePoint * numberOfChannels, f); // block alignment
binputi2LE (numberOfBitsPerSamplePoint, f);
/* Data Chunk: 8 bytes + samples. */
if (fwrite ("data", 1, 4, f) != 4) Melder_throw ("Error in file while trying to write the DATA statement.");
binputi4LE (dataSize, f);
} catch (MelderError) {
Melder_throw ("WAV header not written.");
}
} break;
case Melder_NEXT_SUN: {
try {
if (fwrite (".snd", 1, 4, f) != 4) Melder_throw ("Error in file while trying to write the .snd file type tag.");
binputi4 (32, f); // length of header
binputi4 (numberOfSamples * 2 * numberOfChannels, f); // length of data
binputi4 (3, f); // 16-bits linear, not mu-law or A-law
binputi4 (sampleRate, f);
binputi4 (numberOfChannels, f);
binputi4 (0, f);
binputi4 (0, f);
} catch (MelderError) {
Melder_throw ("NeXT/Sun header not written.");
}
} break;
case Melder_NIST: {
try {
char header [1024];
memset (header, 0, 1024);
sprintf (header, "NIST_1A\n 1024\n"
"channel_count -i %d\n"
"sample_count -i %ld\n"
"sample_n_bytes -i %d\n"
"sample_byte_format -s2 01\n" /* 01=LE 10=BE */
"sample_coding -s3 pcm\n"
"sample_rate -i %ld\n"
"sample_min -i -32768\n"
"sample_max -i 32767\n"
"end_head\n", numberOfChannels, numberOfSamples, numberOfBytesPerSamplePoint, sampleRate);
if (fwrite (header, 1, 1024, f) != 1024) Melder_throw ("Error in file while trying to write the NIST header.");
} catch (MelderError) {
Melder_throw ("NIST header not written.");
}
} break;
case Melder_SOUND_DESIGNER_TWO: {
Melder_throw ("Cannot yet write Sound Designer II files.");
} break;
case Melder_FLAC: {
try {
FLAC__StreamEncoder *encoder = NULL;
if (numberOfChannels > (int) FLAC__MAX_CHANNELS)
Melder_throw ("FLAC files cannot have more than 8 channels.");
if ((encoder = FLAC__stream_encoder_new ()) == NULL)
Melder_throw ("Error creating FLAC stream encoder.");
FLAC__stream_encoder_set_bits_per_sample (encoder, numberOfBitsPerSamplePoint);
FLAC__stream_encoder_set_channels (encoder, numberOfChannels);
FLAC__stream_encoder_set_sample_rate (encoder, sampleRate);
FLAC__stream_encoder_set_total_samples_estimate (encoder, numberOfSamples);
if (FLAC__stream_encoder_init_FILE (encoder, file -> filePointer, NULL, NULL) != FLAC__STREAM_ENCODER_INIT_STATUS_OK) {
FLAC__stream_encoder_delete (encoder);
Melder_throw ("Error creating FLAC stream encoder");
}
file -> flacEncoder = encoder; // only after we know it's correct (for MelderFile_close)
file -> outputEncoding = kMelder_textOutputEncoding_FLAC; // only after we know it's correct (for MelderFile_close)
} catch (MelderError) {
Melder_throw ("FLAC header not written.");
}
} break;
default: Melder_throw ("Unknown audio file type ", audioFileType, ".");
}
} catch (MelderError) {
Melder_throw ("16-bit audio file header not written.");
}
}
void MelderFile_writeAudioFileTrailer (MelderFile file, int audioFileType, long sampleRate, long numberOfSamples, int numberOfChannels, int numberOfBitsPerSamplePoint) {
(void) sampleRate;
bool shouldPadTheDataToAnEvenNumberOfBytes = audioFileType == Melder_WAV;
bool numberOfSamplesIsOdd = (numberOfSamples & 1) != 0;
bool numberOfChannelsIsOdd = (numberOfChannels & 1) != 0;
int numberOfBytesPerSamplePoint = (numberOfBitsPerSamplePoint + 7) / 8;
bool numberOfBytesPerSamplePointIsOdd = (numberOfBytesPerSamplePoint & 1) != 0;
bool needToPadOneByte = shouldPadTheDataToAnEvenNumberOfBytes && numberOfSamplesIsOdd && numberOfChannelsIsOdd && numberOfBytesPerSamplePointIsOdd;
if (needToPadOneByte && file -> filePointer)
binputi1 (0, file -> filePointer);
}
static const wchar *audioFileTypeString [] = { L"none", L"AIFF", L"AIFC", L"WAV", L"NeXT/Sun", L"NIST", L"Sound Designer II", L"FLAC", L"MP3" };
const wchar * Melder_audioFileTypeString (int audioFileType) { return audioFileType > Melder_NUMBER_OF_AUDIO_FILE_TYPES ? L"unknown" : audioFileTypeString [audioFileType]; }
static const wchar *macAudioFileType [1+Melder_NUMBER_OF_AUDIO_FILE_TYPES]
= { L"", L"AIFF", L"AIFC", L"WAVE", L"ULAW", L"NIST", L"Sd2f", L"FLAC", L"MP3" };
const wchar * Melder_macAudioFileType (int audioFileType) { return macAudioFileType [audioFileType]; }
static const wchar *winAudioFileExtension [1+Melder_NUMBER_OF_AUDIO_FILE_TYPES]
= { L"", L".aiff", L".aifc", L".wav", L".au", L".nist", L".sd2", L".flac", L".mp3" };
const wchar * Melder_winAudioFileExtension (int audioFileType) { return winAudioFileExtension [audioFileType]; }
static int defaultAudioFileEncoding16 [1+Melder_NUMBER_OF_AUDIO_FILE_TYPES]
= { 0, Melder_LINEAR_16_BIG_ENDIAN, Melder_LINEAR_16_BIG_ENDIAN, Melder_LINEAR_16_LITTLE_ENDIAN,
Melder_LINEAR_16_BIG_ENDIAN, Melder_LINEAR_16_LITTLE_ENDIAN, Melder_LINEAR_16_BIG_ENDIAN,
Melder_FLAC_COMPRESSION_16, Melder_MPEG_COMPRESSION_16 };
static int defaultAudioFileEncoding24 [1+Melder_NUMBER_OF_AUDIO_FILE_TYPES]
= { 0, Melder_LINEAR_24_BIG_ENDIAN, Melder_LINEAR_24_BIG_ENDIAN, Melder_LINEAR_24_LITTLE_ENDIAN,
Melder_LINEAR_24_BIG_ENDIAN, Melder_LINEAR_24_LITTLE_ENDIAN, Melder_LINEAR_24_BIG_ENDIAN,
Melder_FLAC_COMPRESSION_24, Melder_MPEG_COMPRESSION_24 };
static int defaultAudioFileEncoding32 [1+Melder_NUMBER_OF_AUDIO_FILE_TYPES]
= { 0, Melder_LINEAR_32_BIG_ENDIAN, Melder_LINEAR_32_BIG_ENDIAN, Melder_LINEAR_32_LITTLE_ENDIAN,
Melder_LINEAR_32_BIG_ENDIAN, Melder_LINEAR_32_LITTLE_ENDIAN, Melder_LINEAR_32_BIG_ENDIAN,
Melder_FLAC_COMPRESSION_32, Melder_MPEG_COMPRESSION_32 };
int Melder_defaultAudioFileEncoding (int audioFileType, int numberOfBitsPerSamplePoint) {
return
numberOfBitsPerSamplePoint == 16 ? defaultAudioFileEncoding16 [audioFileType] :
numberOfBitsPerSamplePoint == 24 ? defaultAudioFileEncoding24 [audioFileType] :
defaultAudioFileEncoding32 [audioFileType];
}
void MelderFile_writeAudioFile (MelderFile file, int audioFileType, const short *buffer, long sampleRate, long numberOfSamples, int numberOfChannels, int numberOfBitsPerSamplePoint) {
try {
autoMelderFile mfile = MelderFile_create (file, macAudioFileType [audioFileType], L"PpgB", winAudioFileExtension [audioFileType]);
MelderFile_writeAudioFileHeader (file, audioFileType, sampleRate, numberOfSamples, numberOfChannels, numberOfBitsPerSamplePoint);
MelderFile_writeShortToAudio (file, numberOfChannels, defaultAudioFileEncoding16 [audioFileType], buffer, numberOfSamples);
MelderFile_writeAudioFileTrailer (file, audioFileType, sampleRate, numberOfSamples, numberOfChannels, numberOfBitsPerSamplePoint);
mfile.close ();
} catch (MelderError) {
Melder_throw ("16-bit audio file not written.");
}
}
/***** READING *****/
int Melder_bytesPerSamplePoint (int encoding) {
return
encoding == Melder_LINEAR_16_BIG_ENDIAN || encoding == Melder_LINEAR_16_LITTLE_ENDIAN ? 2 :
encoding == Melder_LINEAR_24_BIG_ENDIAN || encoding == Melder_LINEAR_24_LITTLE_ENDIAN ? 3 :
encoding == Melder_LINEAR_32_BIG_ENDIAN || encoding == Melder_LINEAR_32_LITTLE_ENDIAN ||
encoding == Melder_IEEE_FLOAT_32_BIG_ENDIAN || encoding == Melder_IEEE_FLOAT_32_LITTLE_ENDIAN ? 4 :
1;
}
static int ulaw2linear [] =
{ -32124, -31100, -30076, -29052, -28028, -27004, -25980, -24956,
-23932, -22908, -21884, -20860, -19836, -18812, -17788, -16764,
-15996, -15484, -14972, -14460, -13948, -13436, -12924, -12412,
-11900, -11388, -10876, -10364, -9852, -9340, -8828, -8316,
-7932, -7676, -7420, -7164, -6908, -6652, -6396, -6140,
-5884, -5628, -5372, -5116, -4860, -4604, -4348, -4092,
-3900, -3772, -3644, -3516, -3388, -3260, -3132, -3004,
-2876, -2748, -2620, -2492, -2364, -2236, -2108, -1980,
-1884, -1820, -1756, -1692, -1628, -1564, -1500, -1436,
-1372, -1308, -1244, -1180, -1116, -1052, -988, -924,
-876, -844, -812, -780, -748, -716, -684, -652,
-620, -588, -556, -524, -492, -460, -428, -396,
-372, -356, -340, -324, -308, -292, -276, -260,
-244, -228, -212, -196, -180, -164, -148, -132,
-120, -112, -104, -96, -88, -80, -72, -64,
-56, -48, -40, -32, -24, -16, -8, 0,
32124, 31100, 30076, 29052, 28028, 27004, 25980, 24956,
23932, 22908, 21884, 20860, 19836, 18812, 17788, 16764,
15996, 15484, 14972, 14460, 13948, 13436, 12924, 12412,
11900, 11388, 10876, 10364, 9852, 9340, 8828, 8316,
7932, 7676, 7420, 7164, 6908, 6652, 6396, 6140,
5884, 5628, 5372, 5116, 4860, 4604, 4348, 4092,
3900, 3772, 3644, 3516, 3388, 3260, 3132, 3004,
2876, 2748, 2620, 2492, 2364, 2236, 2108, 1980,
1884, 1820, 1756, 1692, 1628, 1564, 1500, 1436,
1372, 1308, 1244, 1180, 1116, 1052, 988, 924,
876, 844, 812, 780, 748, 716, 684, 652,
620, 588, 556, 524, 492, 460, 428, 396,
372, 356, 340, 324, 308, 292, 276, 260,
244, 228, 212, 196, 180, 164, 148, 132,
120, 112, 104, 96, 88, 80, 72, 64,
56, 48, 40, 32, 24, 16, 8, 0
};
static short alaw2linear[] =
{
-5504, -5248, -6016, -5760, -4480, -4224, -4992, -4736,
-7552, -7296, -8064, -7808, -6528, -6272, -7040, -6784,
-2752, -2624, -3008, -2880, -2240, -2112, -2496, -2368,
-3776, -3648, -4032, -3904, -3264, -3136, -3520, -3392,
-22016, -20992, -24064, -23040, -17920, -16896, -19968, -18944,
-30208, -29184, -32256, -31232, -26112, -25088, -28160, -27136,
-11008, -10496, -12032, -11520, -8960, -8448, -9984, -9472,
-15104, -14592, -16128, -15616, -13056, -12544, -14080, -13568,
-344, -328, -376, -360, -280, -264, -312, -296,
-472, -456, -504, -488, -408, -392, -440, -424,
-88, -72, -120, -104, -24, -8, -56, -40,
-216, -200, -248, -232, -152, -136, -184, -168,
-1376, -1312, -1504, -1440, -1120, -1056, -1248, -1184,
-1888, -1824, -2016, -1952, -1632, -1568, -1760, -1696,
-688, -656, -752, -720, -560, -528, -624, -592,
-944, -912, -1008, -976, -816, -784, -880, -848,
5504, 5248, 6016, 5760, 4480, 4224, 4992, 4736,
7552, 7296, 8064, 7808, 6528, 6272, 7040, 6784,
2752, 2624, 3008, 2880, 2240, 2112, 2496, 2368,
3776, 3648, 4032, 3904, 3264, 3136, 3520, 3392,
22016, 20992, 24064, 23040, 17920, 16896, 19968, 18944,
30208, 29184, 32256, 31232, 26112, 25088, 28160, 27136,
11008, 10496, 12032, 11520, 8960, 8448, 9984, 9472,
15104, 14592, 16128, 15616, 13056, 12544, 14080, 13568,
344, 328, 376, 360, 280, 264, 312, 296,
472, 456, 504, 488, 408, 392, 440, 424,
88, 72, 120, 104, 24, 8, 56, 40,
216, 200, 248, 232, 152, 136, 184, 168,
1376, 1312, 1504, 1440, 1120, 1056, 1248, 1184,
1888, 1824, 2016, 1952, 1632, 1568, 1760, 1696,
688, 656, 752, 720, 560, 528, 624, 592,
944, 912, 1008, 976, 816, 784, 880, 848
};
static void Melder_checkAiffFile (FILE *f, int *numberOfChannels, int *encoding,
double *sampleRate, long *startOfData, long *numberOfSamples)
{
char data [8], chunkID [4];
bool commonChunkPresent = false, dataChunkPresent = false, isAifc = true;
int numberOfBitsPerSamplePoint;
/* Read header of AIFF(-C) file: 12 bytes. */
if (fread (data, 1, 4, f) < 4) Melder_throw ("File too small: no FORM statement.");
if (! strnequ (data, "FORM", 4)) Melder_throw ("Not an AIFF or AIFC file (FORM statement expected).");
if (fread (data, 1, 4, f) < 4) Melder_throw ("File too small: no size of FORM chunk.");
if (fread (data, 1, 4, f) < 4) Melder_throw ("File too small: no file type info (expected AIFF or AIFC).");
if (! strnequ (data, "AIFF", 4) && ! strnequ (data, "AIFC", 4)) Melder_throw ("Not an AIFF or AIFC file (wrong file type info).");
if (strnequ (data, "AIFF", 4)) isAifc = false;
/* Search for Common Chunk and Data Chunk. */
while (fread (chunkID, 1, 4, f) == 4) {
long chunkSize = bingeti4 (f);
if (chunkSize & 1) ++ chunkSize; // round up to nearest even number
/* IN SOUND FILES PRODUCED BY THE SGI'S soundeditor PROGRAM, */
/* THE COMMON CHUNK HAS A chunkSize OF 18 INSTEAD OF 38, */
/* ALTHOUGH THE COMMON CHUNK CONTAINS */
/* THE 20-BYTE SEQUENCE "\016not compressed\0". */
/* START FIX OF FOREIGN BUG */
if(strnequ(chunkID,"NONE",4)&&
(chunkSize==(14<<24)+('n'<<16)+('o'<<8)+'t'||chunkSize==('t'<<24)+('o'<<16)+('n'<<8)+14))
{Melder_casual("Ha! a buggy SGI \"soundeditor\" file...");for(long i=1;i<=20/*diff*/-8/*header*/;i++)fread(data,1,1,f);continue;}
/* FINISH FIX OF FOREIGN BUG */
if (strnequ (chunkID, "COMM", 4)) {
/*
* Found a Common Chunk.
*/
commonChunkPresent = true;
*numberOfChannels = bingeti2 (f);
if (*numberOfChannels < 1) Melder_throw ("Too few sound channels (", *numberOfChannels, ").");
*numberOfSamples = bingeti4 (f);
if (*numberOfSamples <= 0) Melder_throw ("Too few samples ", *numberOfSamples, ").");
numberOfBitsPerSamplePoint = bingeti2 (f);
if (numberOfBitsPerSamplePoint > 32) Melder_throw ("Too many bits per sample (", numberOfBitsPerSamplePoint, "; the maximum is 32).");
*encoding =
numberOfBitsPerSamplePoint > 24 ? Melder_LINEAR_32_BIG_ENDIAN :
numberOfBitsPerSamplePoint > 16 ? Melder_LINEAR_24_BIG_ENDIAN :
numberOfBitsPerSamplePoint > 8 ? Melder_LINEAR_16_BIG_ENDIAN :
Melder_LINEAR_8_SIGNED;
*sampleRate = bingetr10 (f);
if (*sampleRate <= 0.0) Melder_throw ("Wrong sampling frequency (", *sampleRate, " Hz).");
if (isAifc) {
/*
* Read compression data; should be "NONE" or "sowt".
*/
if (fread (data, 1, 4, f) < 4) Melder_throw ("File too small: no compression info.");
if (! strnequ (data, "NONE", 4) && ! strnequ (data, "sowt", 4)) {
data [4] = '\0';
Melder_throw ("Cannot read compressed AIFC files (compression type ", data, ").");
}
if (strnequ (data, "sowt", 4))
*encoding =
numberOfBitsPerSamplePoint > 24 ? Melder_LINEAR_32_LITTLE_ENDIAN :
numberOfBitsPerSamplePoint > 16 ? Melder_LINEAR_24_LITTLE_ENDIAN :
numberOfBitsPerSamplePoint > 8 ? Melder_LINEAR_16_LITTLE_ENDIAN :
Melder_LINEAR_8_SIGNED;
/*
* Read rest of compression info.
*/
for (long i = 23; i <= chunkSize; i ++)
if (fread (data, 1, 1, f) < 1)
Melder_throw ("File too small: expected chunk of ", chunkSize, " bytes, but found ", i + 22, ".");
}
} else if (strnequ (chunkID, "SSND", 4)) {
/*
* Found a Data Chunk.
*/
dataChunkPresent = true;
*startOfData = ftell (f) + 8; // ignore "offset" (4 bytes) and "blocksize" (4 bytes)
if (commonChunkPresent) break; // optimization: do not read whole data chunk if we have already read the common chunk
} else // ignore Version Chunk and unknown chunks
for (long i = 1; i <= chunkSize; i ++)
if (fread (data, 1, 1, f) < 1)
Melder_throw ("File too small: expected ", chunkSize, " bytes, but found ", i, ".");
}
if (! commonChunkPresent) Melder_throw ("Found no Common Chunk.");
if (! dataChunkPresent) Melder_throw ("Found no Data Chunk.");
}
static void Melder_checkWavFile (FILE *f, int *numberOfChannels, int *encoding,
double *sampleRate, long *startOfData, long *numberOfSamples)
{
char data [8], chunkID [4];
bool formatChunkPresent = false, dataChunkPresent = false;
int numberOfBitsPerSamplePoint = -1;
long dataChunkSize = -1;
if (fread (data, 1, 4, f) < 4) Melder_throw ("File too small: no RIFF statement.");
if (! strnequ (data, "RIFF", 4)) Melder_throw ("Not a WAV file (RIFF statement expected).");
if (fread (data, 1, 4, f) < 4) Melder_throw ("File too small: no size of RIFF chunk.");
if (fread (data, 1, 4, f) < 4) Melder_throw ("File too small: no file type info (expected WAVE statement).");
if (! strnequ (data, "WAVE", 4) && ! strnequ (data, "CDDA", 4))
Melder_throw (L"Not a WAVE or CD audio file (wrong file type info).");
/* Search for Format Chunk and Data Chunk. */
while (fread (chunkID, 1, 4, f) == 4) {
long chunkSize = bingeti4LE (f);
if (Melder_debug == 23) {
Melder_warning (Melder_integer (chunkID [0]), L" ", Melder_integer (chunkID [1]), L" ",
Melder_integer (chunkID [2]), L" ", Melder_integer (chunkID [3]), L" ", Melder_integer (chunkSize));
}
if (strnequ (chunkID, "fmt ", 4)) {
/*
* Found a Format Chunk.
*/
int winEncoding = bingeti2LE (f);
formatChunkPresent = true;
*numberOfChannels = bingeti2LE (f);
if (*numberOfChannels < 1) Melder_throw ("Too few sound channels (", *numberOfChannels, ").");
*sampleRate = (double) bingeti4LE (f);
if (*sampleRate <= 0.0) Melder_throw ("Wrong sampling frequency (", *sampleRate, " Hz).");
(void) bingeti4LE (f); // avgBytesPerSec
(void) bingeti2LE (f); // blockAlign
numberOfBitsPerSamplePoint = bingeti2LE (f);
if (numberOfBitsPerSamplePoint == 0)
numberOfBitsPerSamplePoint = 16; // the default
else if (numberOfBitsPerSamplePoint < 4)
Melder_throw ("Too few bits per sample (", numberOfBitsPerSamplePoint, "; the minimum is 4).");
else if (numberOfBitsPerSamplePoint > 32)
Melder_throw ("Too few bits per sample (", numberOfBitsPerSamplePoint, "; the maximum is 32).");
switch (winEncoding) {
case WAVE_FORMAT_PCM:
*encoding =
numberOfBitsPerSamplePoint > 24 ? Melder_LINEAR_32_LITTLE_ENDIAN :
numberOfBitsPerSamplePoint > 16 ? Melder_LINEAR_24_LITTLE_ENDIAN :
numberOfBitsPerSamplePoint > 8 ? Melder_LINEAR_16_LITTLE_ENDIAN :
Melder_LINEAR_8_UNSIGNED;
break;
case WAVE_FORMAT_IEEE_FLOAT:
*encoding = Melder_IEEE_FLOAT_32_LITTLE_ENDIAN;
break;
case WAVE_FORMAT_ALAW:
*encoding = Melder_ALAW;
break;
case WAVE_FORMAT_MULAW:
*encoding = Melder_MULAW;
break;
case WAVE_FORMAT_DVI_ADPCM:
Melder_throw ("Cannot read lossy compressed audio files (this one is DVI ADPCM).\n"
"Please use uncompressed audio files. If you must open this file,\n"
"please use an audio converter program to convert it first to normal (PCM) WAV format\n"
"(Praat may have difficulty analysing the poor recording, though).");
default:
Melder_throw ("Unsupported Windows audio encoding %d.", winEncoding);
}
if (chunkSize & 1) chunkSize ++;
for (long i = 17; i <= chunkSize; i ++)
if (fread (data, 1, 1, f) < 1) Melder_throw ("File too small: expected ", chunkSize, " bytes in fmt chunk, but found ", i, ".");
} else if (strnequ (chunkID, "data", 4)) {
/*
* Found a Data Chunk.
*/
dataChunkPresent = true;
dataChunkSize = chunkSize;
*startOfData = ftell (f);
if (chunkSize & 1) chunkSize ++;
if (chunkSize < 0) { // incorrect data chunk (sometimes -44); assume that the data run till the end of the file
fseek (f, 0, SEEK_END);
long endOfData = ftell (f);
dataChunkSize = chunkSize = endOfData - *startOfData;
fseek (f, *startOfData, SEEK_SET);
}
if (Melder_debug == 23) {
for (long i = 1; i <= chunkSize; i ++)
if (fread (data, 1, 1, f) < 1) Melder_throw ("File too small: expected ", chunkSize, " bytes of data, but found ", i, ".");
} else {
if (formatChunkPresent) break; // OPTIMIZATION: do not read the whole data chunk if we have already read the format chunk
}
} else { // ignore other chunks
if (chunkSize & 1) chunkSize ++;
for (long i = 1; i <= chunkSize; i ++)
if (fread (data, 1, 1, f) < 1)
Melder_throw ("File too small: expected ", chunkSize, " bytes, but found ", i, ".");
}
}
if (! formatChunkPresent) Melder_throw (L"Found no Format Chunk.");
if (! dataChunkPresent) Melder_throw (L"Found no Data Chunk.");
Melder_assert (numberOfBitsPerSamplePoint != -1 && dataChunkSize != -1);
*numberOfSamples = dataChunkSize / *numberOfChannels / ((numberOfBitsPerSamplePoint + 7) / 8);
}
static void Melder_checkNextSunFile (FILE *f, int *numberOfChannels, int *encoding,
double *sampleRate, long *startOfData, long *numberOfSamples)
{
char tag [4];
fread (tag, 1, 4, f);
if (strncmp (tag, ".snd", 4)) Melder_throw ("Not a Sun audio file.");
*startOfData = bingeti4 (f);
if (*startOfData < 24 || *startOfData > 320)
Melder_throw ("Cannot read header of audio file. Length ", *startOfData, ".");
long dataSize = bingeti4 (f);
if (dataSize <= 0) {
/*
* Incorrect information. Get it from file length.
*/
long save = ftell (f);
fseek (f, 0, SEEK_END);
dataSize = ftell (f) - *startOfData;
fseek (f, save, SEEK_SET);
}
long sunEncoding = bingeti4 (f);
switch (sunEncoding) {
case 1: *encoding = Melder_MULAW; break;
case 2: *encoding = Melder_LINEAR_8_SIGNED; break;
case 3: *encoding = Melder_LINEAR_16_BIG_ENDIAN; break;
case 27: *encoding = Melder_ALAW; break;
default: Melder_throw ("Cannot translate audio file encoding ", sunEncoding, ".");
}
*sampleRate = bingeti4 (f);
if (*sampleRate <= 0) Melder_throw ("Impossible sampling frequency ", *sampleRate, " Hz.");
*numberOfChannels = bingeti4 (f);
if (*numberOfChannels < 1)
Melder_throw ("Wrong number of channels in audio file (", *numberOfChannels, ").");
*numberOfSamples = dataSize / Melder_bytesPerSamplePoint (*encoding) / *numberOfChannels;
long skip = *startOfData - 24;
while (skip -- > 0) (void) fgetc (f);
}
static int nistGetValue (const char *header, const char *object, double *rval, char *sval) {
char obj [30], type [10];
const char *match = strstr (header, object);
if (! match) return 0;
if (sscanf (match, "%s%s%s", obj, type, sval) != 3) return 0;
if (strequ (type, "-i") || strequ (type, "-r")) *rval = atof (sval);
else if (strncmp (type, "-s", 2)) return 0;
return 1;
}
static void Melder_checkNistFile (FILE *f, int *numberOfChannels, int *encoding,
double *sampleRate, long *startOfData, long *numberOfSamples)
{
char header [1024], sval [100];
double rval;
int numberOfBytesPerSamplePoint;
if (fread (header, 1, 1024, f) != 1024)
Melder_throw ("Cannot read NISTheader.");
if (! strnequ (header, "NIST_1A", 7))
Melder_throw ("Not a NIST sound file.");
*startOfData = atol (header + 9);
if (! nistGetValue (header, "sample_count", & rval, sval) || rval < 1)
Melder_throw ("Incorrect number of samples in NIST file.");
*numberOfSamples = rval;
if (! nistGetValue (header, "sample_n_bytes", & rval, sval) || rval < 1 || rval > 2)
Melder_throw ("Incorrect number of bytes per sample (should be 1 or 2).");
numberOfBytesPerSamplePoint = rval;
if (! nistGetValue (header, "channel_count", & rval, sval) || rval < 1)
Melder_throw ("Incorrect number of channels.");
*numberOfChannels = rval;
if (! nistGetValue (header, "sample_rate", sampleRate, sval) || *sampleRate < 1)
Melder_throw ("Incorrect sampling frequency ", *sampleRate, " Hz.");
*encoding = Melder_LINEAR_16_BIG_ENDIAN;
if (nistGetValue (header, "sample_byte_format", & rval, sval) && strequ (sval, "01"))
*encoding = Melder_LINEAR_16_LITTLE_ENDIAN;
if (numberOfBytesPerSamplePoint == 1)
*encoding = Melder_LINEAR_8_SIGNED;
if (nistGetValue (header, "sample_coding", & rval, sval)) {
if (strnequ (sval, "ulaw", 4))
*encoding = Melder_MULAW;
else if (strstr (sval, "embedded-shorten-v"))
if (nistGetValue (header, "database_id", & rval, sval) && strequ (sval, "POLYPHONE-NL"))
*encoding = Melder_POLYPHONE;
else
*encoding = Melder_SHORTEN;
else if (strnequ (sval, "alaw", 4)) // must be after previous, because some files have "alaw,embedded..."
*encoding = Melder_ALAW;
}
}
#ifdef macintosh
static double Melder_getNumberFromStrResource (int resourceID) {
Handle han = Get1Resource ('STR ', resourceID);
if (! han)
Melder_throw ("Resource ", resourceID, " not found.");
char *pstring = (char *) (*han);
int length = (unsigned char) pstring [0];
char string [256];
strncpy (string, & pstring [1], length);
string [length] = 0;
ReleaseResource (han);
return atof (string);
}
static void MelderFile_checkSoundDesignerTwoFile (MelderFile file, int *numberOfChannels, int *encoding,
double *sampleRate, long *startOfData, long *numberOfSamples)
{
int path = -1;
try {
FSRef fsRef;
Melder_fileToMach (file, & fsRef);
path = FSOpenResFile (& fsRef, fsRdPerm); // open resource fork; that's where the header info is
if (path == -1)
Melder_throw ("Cannot open resource fork.");
int sampleSize = 0;
try {
sampleSize = Melder_getNumberFromStrResource (1000);
} catch (MelderError) {
Melder_throw ("Sample size not read.");
}
if (sampleSize < 1 || sampleSize > 4)
Melder_throw ("Wrong sample size (", sampleSize, "; should be between 1 and 4).");
*encoding =
sampleSize == 1 ? Melder_LINEAR_8_SIGNED :
sampleSize == 2 ? Melder_LINEAR_16_BIG_ENDIAN :
sampleSize == 3 ? Melder_LINEAR_24_BIG_ENDIAN :
Melder_LINEAR_32_BIG_ENDIAN;
try {
*sampleRate = Melder_getNumberFromStrResource (1001);
} catch (MelderError) {
Melder_throw (L"Sampling frequency not read.");
}
if (*sampleRate <= 0.0)
Melder_throw ("Wrong sampling frequency (", *sampleRate, " Hz).");
try {
*numberOfChannels = Melder_getNumberFromStrResource (1002);
} catch (MelderError) {
Melder_throw ("Channel number not read.");
}
if (*numberOfChannels != 1 && *numberOfChannels != 2)
Melder_throw ("Wrong number of channels: ", *numberOfChannels);
*numberOfSamples = MelderFile_length (file) / sampleSize / *numberOfChannels;
if (*numberOfSamples <= 0)
Melder_throw ("No samples in file.");
*startOfData = 0;
if (path != -1) CloseResFile (path);
} catch (MelderError) {
if (path != -1) CloseResFile (path);
Melder_throw (L"Sound Designer II file not read.");
}
}
#endif
static void Melder_checkFlacFile (MelderFile file, int *numberOfChannels, int *encoding,
double *sampleRate, long *startOfData, long *numberOfSamples)
{
FLAC__StreamMetadata metadata;
FLAC__StreamMetadata_StreamInfo *info;
if (! FLAC__metadata_get_streaminfo (Melder_peekWcsToUtf8 (Melder_fileToPath (file)), & metadata)) // FIXME: not Unicode-compatible on Windows.
Melder_throw ("Invalid FLAC file");
info = & metadata. data. stream_info;
*numberOfChannels = info -> channels;
*encoding = Melder_FLAC_COMPRESSION_16;
*sampleRate = (double) info -> sample_rate;
*startOfData = 0; // meaningless: libFLAC does the I/O
*numberOfSamples = info -> total_samples; // FIXME: may lose bits above LONG_MAX
if ((FLAC__uint64) *numberOfSamples != info -> total_samples)
Melder_throw ("FLAC file too long.");
}
static void Melder_checkMp3File (FILE *f, int *numberOfChannels, int *encoding,
double *sampleRate, long *startOfData, long *numberOfSamples)
{
MP3_FILE mp3f = mp3f_new ();
mp3f_set_file (mp3f, f);
if (! mp3f_analyze (mp3f)) {
mp3f_delete (mp3f);
Melder_throw ("Cannot analyze MP3 file");
}
*encoding = Melder_MPEG_COMPRESSION_16;
*numberOfChannels = mp3f_channels (mp3f);
*sampleRate = mp3f_frequency (mp3f);
*numberOfSamples = mp3f_samples (mp3f);
if ((MP3F_OFFSET)*numberOfSamples != mp3f_samples (mp3f))
Melder_throw ("MP3 file too long.");
*startOfData = 0; // meaningless
mp3f_delete (mp3f);
}
int MelderFile_checkSoundFile (MelderFile file, int *numberOfChannels, int *encoding,
double *sampleRate, long *startOfData, long *numberOfSamples)
{
char data [16];
FILE *f = file -> filePointer;
if (f == NULL || fread (data, 1, 16, f) < 16) return 0;
rewind (f);
if (strnequ (data, "FORM", 4) && strnequ (data + 8, "AIFF", 4)) {
Melder_checkAiffFile (f, numberOfChannels, encoding, sampleRate, startOfData, numberOfSamples);
return Melder_AIFF;
}
if (strnequ (data, "FORM", 4) && strnequ (data + 8, "AIFC", 4)) {
Melder_checkAiffFile (f, numberOfChannels, encoding, sampleRate, startOfData, numberOfSamples);
return Melder_AIFC;
}
if (strnequ (data, "RIFF", 4) && (strnequ (data + 8, "WAVE", 4) || strnequ (data + 8, "CDDA", 4))) {
Melder_checkWavFile (f, numberOfChannels, encoding, sampleRate, startOfData, numberOfSamples);
return Melder_WAV;
}
if (strnequ (data, ".snd", 4)) {
Melder_checkNextSunFile (f, numberOfChannels, encoding, sampleRate, startOfData, numberOfSamples);
return Melder_NEXT_SUN;
}
if (strnequ (data, "NIST_1A", 7)) {
Melder_checkNistFile (f, numberOfChannels, encoding, sampleRate, startOfData, numberOfSamples);
return Melder_NIST;
}
if (strnequ (data, "fLaC", 4)) {
Melder_checkFlacFile (file, numberOfChannels, encoding, sampleRate, startOfData, numberOfSamples);
return Melder_FLAC;
}
if (mp3_recognize (16, data)) {
Melder_checkMp3File (f, numberOfChannels, encoding, sampleRate, startOfData, numberOfSamples);
return Melder_MP3;
}
#ifdef macintosh
if (MelderFile_getMacType (file) == 'Sd2f') {
MelderFile_checkSoundDesignerTwoFile (file, numberOfChannels, encoding, sampleRate, startOfData, numberOfSamples);
return Melder_SOUND_DESIGNER_TWO;
}
#endif
return 0; // not a recognized sound file
}
/* libFLAC works through callbacks, so we need a context struct. */
typedef struct {
FILE *file;
int numberOfChannels;
long numberOfSamples;
double *channels [FLAC__MAX_CHANNELS];
} MelderDecodeFlacContext;
/* The same goes for MP3 */
typedef struct {
int numberOfChannels;
long numberOfSamples;
double *channels [2];
} MelderDecodeMp3Context;
static FLAC__StreamDecoderReadStatus Melder_DecodeFlac_read (const FLAC__StreamDecoder *decoder,
FLAC__byte buffer [], size_t *bytes, void *client_data)
{
MelderDecodeFlacContext *c = (MelderDecodeFlacContext *) client_data;
(void) decoder;
if (*bytes <= 0)
return FLAC__STREAM_DECODER_READ_STATUS_ABORT;
*bytes = fread (buffer, sizeof (FLAC__byte), *bytes, c -> file);
if (ferror (c -> file))
return FLAC__STREAM_DECODER_READ_STATUS_ABORT;
if (*bytes == 0)
return FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM;
return FLAC__STREAM_DECODER_READ_STATUS_CONTINUE;
}
static FLAC__StreamDecoderWriteStatus Melder_DecodeFlac_convert (const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 *const buffer[], void *client_data)
{
MelderDecodeFlacContext *c = (MelderDecodeFlacContext *) client_data;
const FLAC__FrameHeader *header = & frame -> header;
long count = header -> blocksize;
double multiplier;
(void) decoder;
switch (header -> bits_per_sample) {
case 8: multiplier = (1.0f / 128); break;
case 16: multiplier = (1.0f / 32768); break;
case 24: multiplier = (1.0f / 8388608); break;
case 32: multiplier = (1.0f / 32768 / 65536); break;
default: return FLAC__STREAM_DECODER_WRITE_STATUS_ABORT;
}
for (long i = 0; i < c -> numberOfChannels; ++ i) {
const FLAC__int32 *input = buffer [i];
double *output = c -> channels [i];
for (long j = 0; j < count; ++ j)
output [j] = ((long) input [j]) * multiplier;
c -> channels [i] += count;
}
return FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE;
}
static void Melder_DecodeMp3_convert (const MP3F_SAMPLE *channels [MP3F_MAX_CHANNELS], long count, void *context) {
MelderDecodeMp3Context *c = (MelderDecodeMp3Context *) context;
const MP3F_SAMPLE *input;
double *output;
for (long i = 0; i < c -> numberOfChannels; ++ i) {
input = channels [i];
output = c -> channels [i];
for (long j = 0; j < count; ++ j)
output [j] = mp3f_sample_to_float (input [j]);
c -> channels [i] += count;
}
}
static void Melder_DecodeFlac_error (const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data) {
(void) decoder;
(void) client_data;
Melder_warning ("FLAC decoder error: ", FLAC__StreamDecoderErrorStatusString [status]);
}
static void Melder_readFlacFile (FILE *f, int numberOfChannels, double **buffer, long numberOfSamples) {
FLAC__StreamDecoder *decoder;
MelderDecodeFlacContext c;
int result = 0;
c.file = f;
c.numberOfChannels = numberOfChannels;
for (int ichan = 1; ichan <= numberOfChannels; ichan ++) {
c.channels [ichan - 1] = & buffer [ichan] [1];
}
c.numberOfSamples = numberOfSamples;
if ((decoder = FLAC__stream_decoder_new ()) == NULL)
goto end;
if (FLAC__stream_decoder_init_stream (decoder,
Melder_DecodeFlac_read,
NULL, NULL, NULL, NULL,
Melder_DecodeFlac_convert, NULL,
Melder_DecodeFlac_error, &c) != FLAC__STREAM_DECODER_INIT_STATUS_OK)
goto end;
result = FLAC__stream_decoder_process_until_end_of_stream (decoder);
FLAC__stream_decoder_finish (decoder);
end:
if (decoder) FLAC__stream_decoder_delete (decoder);
if (result == 0)
Melder_throw ("Error decoding FLAC file.");
}
static void Melder_readMp3File (FILE *f, int numberOfChannels, double **buffer, long numberOfSamples) {
MelderDecodeMp3Context c;
int result = 0;
c.numberOfChannels = numberOfChannels;
for (int ichan = 1; ichan <= numberOfChannels; ichan ++) {
c.channels [ichan - 1] = & buffer [ichan] [1];
}
c.numberOfSamples = numberOfSamples;
MP3_FILE mp3f = mp3f_new ();
mp3f_set_file (mp3f, f);
mp3f_set_callback (mp3f, Melder_DecodeMp3_convert, &c);
result = mp3f_read (mp3f, numberOfSamples);
mp3f_delete (mp3f);
if (result == 0)
Melder_throw ("Error decoding MP3 file.");
}
void Melder_readAudioToFloat (FILE *f, int numberOfChannels, int encoding, double **buffer, long numberOfSamples) {
try {
switch (encoding) {
case Melder_LINEAR_8_SIGNED: {
try {
for (long isamp = 1; isamp <= numberOfSamples; isamp ++) {
for (long ichan = 1; ichan <= numberOfChannels; ichan ++) {
int8_t value;
if (fread (& value, 1, 1, f) < 1) throw MelderError ();
buffer [ichan] [isamp] = value * (1.0 / 128);
}
}
} catch (MelderError) {
Melder_clearError ();
Melder_warning ("File too small (", numberOfChannels, "-channel 8-bit).\nMissing samples set to zero.");
}
} break;
case Melder_LINEAR_8_UNSIGNED:
try {
for (long isamp = 1; isamp <= numberOfSamples; isamp ++) {
for (long ichan = 1; ichan <= numberOfChannels; ichan ++) {
buffer [ichan] [isamp] = bingetu1 (f) * (1.0 / 128) - 1.0; therror
}
}
} catch (MelderError) {
Melder_clearError ();
Melder_warning ("File too small (", numberOfChannels, "-channel 8-bit).\nMissing samples set to zero.");
}
break;
case Melder_LINEAR_16_BIG_ENDIAN: {
try {
const int numberOfBytesPerSamplePerChannel = 2;
if (numberOfChannels > (int) sizeof (double) / numberOfBytesPerSamplePerChannel) {
for (long isamp = 1; isamp <= numberOfSamples; isamp ++) {
for (long ichan = 1; ichan <= numberOfChannels; ichan ++) {
buffer [ichan] [isamp] = bingeti2 (f) * (1.0 / 32768); therror
}
}
} else { // optimize
long numberOfBytes = numberOfChannels * numberOfSamples * numberOfBytesPerSamplePerChannel;
unsigned char *bytes = (unsigned char *) & buffer [numberOfChannels] [numberOfSamples] + sizeof (double) - numberOfBytes;
if (fread (bytes, 1, numberOfBytes, f) < numberOfBytes) throw MelderError (); // read 16-bit data into last quarter of buffer
if (numberOfChannels == 1) {
for (long isamp = 1; isamp <= numberOfSamples; isamp ++) {
unsigned char byte1 = * bytes ++, byte2 = * bytes ++;
long value = (int16_t) (((uint16_t) byte1 << 8) | (uint16_t) byte2);
buffer [1] [isamp] = value * (1.0 / 32768);
}
} else {
for (long isamp = 1; isamp <= numberOfSamples; isamp ++) {
for (long ichan = 1; ichan <= numberOfChannels; ichan ++) {
unsigned char byte1 = * bytes ++, byte2 = * bytes ++;
long value = (int16_t) (((uint16_t) byte1 << 8) | (uint16_t) byte2);
buffer [ichan] [isamp] = value * (1.0 / 32768);
}
}
}
}
} catch (MelderError) {
Melder_clearError ();
Melder_warning (L"File too small (", numberOfChannels, "-channel 16-bit).\nMissing samples set to zero.");
}
} break;
case Melder_LINEAR_16_LITTLE_ENDIAN: {
try {
const int numberOfBytesPerSamplePerChannel = 2;
if (numberOfChannels > (int) sizeof (double) / numberOfBytesPerSamplePerChannel) {
for (long isamp = 1; isamp <= numberOfSamples; isamp ++) {
for (long ichan = 1; ichan <= numberOfChannels; ichan ++) {
buffer [ichan] [isamp] = bingeti2LE (f) * (1.0 / 32768); therror
}
}
} else { // optimize
long numberOfBytes = numberOfChannels * numberOfSamples * numberOfBytesPerSamplePerChannel;
unsigned char *bytes = (unsigned char *) & buffer [numberOfChannels] [numberOfSamples] + sizeof (double) - numberOfBytes;
if (fread (bytes, 1, numberOfBytes, f) < numberOfBytes) throw MelderError (); // read 16-bit data into last quarter of buffer
if (numberOfChannels == 1) {
for (long isamp = 1; isamp <= numberOfSamples; isamp ++) {
unsigned char byte1 = * bytes ++, byte2 = * bytes ++;
long value = (int16_t) (((uint16_t) byte2 << 8) | (uint16_t) byte1);
buffer [1] [isamp] = value * (1.0 / 32768);
}
} else {
for (long isamp = 1; isamp <= numberOfSamples; isamp ++) {
for (long ichan = 1; ichan <= numberOfChannels; ichan ++) {
unsigned char byte1 = * bytes ++, byte2 = * bytes ++;
long value = (int16_t) (((uint16_t) byte2 << 8) | (uint16_t) byte1);
buffer [ichan] [isamp] = value * (1.0 / 32768);
}
}
}
}
} catch (MelderError) {
Melder_clearError ();
Melder_warning ("File too small (", numberOfChannels, "-channel 16-bit).\nMissing samples set to zero.");
}
} break;
case Melder_LINEAR_24_BIG_ENDIAN: {
try {
const int numberOfBytesPerSamplePerChannel = 3;
if (numberOfChannels > (int) sizeof (double) / numberOfBytesPerSamplePerChannel) {
for (long isamp = 1; isamp <= numberOfSamples; isamp ++) {
for (long ichan = 1; ichan <= numberOfChannels; ichan ++) {
buffer [ichan] [isamp] = bingeti3 (f) * (1.0 / 8388608); therror
}
}
} else { // optimize
long numberOfBytes = numberOfChannels * numberOfSamples * numberOfBytesPerSamplePerChannel;
unsigned char *bytes = (unsigned char *) & buffer [numberOfChannels] [numberOfSamples] + sizeof (double) - numberOfBytes;
if (fread (bytes, 1, numberOfBytes, f) < numberOfBytes) throw MelderError (); // read 24-bit data into last three-eigths of buffer
if (numberOfChannels == 1) {
for (long isamp = 1; isamp <= numberOfSamples; isamp ++) {
unsigned char byte1 = * bytes ++, byte2 = * bytes ++, byte3 = * bytes ++;
uint32_t unsignedValue = ((uint32_t) byte1 << 16) | ((uint32_t) byte2 << 8) | (uint32_t) byte3;
if ((byte1 & 128) != 0) unsignedValue |= 0xFF000000;
buffer [1] [isamp] = (int32_t) unsignedValue * (1.0 / 8388608);
}
} else {
for (long isamp = 1; isamp <= numberOfSamples; isamp ++) {
for (long ichan = 1; ichan <= numberOfChannels; ichan ++) {
unsigned char byte1 = * bytes ++, byte2 = * bytes ++, byte3 = * bytes ++;
uint32_t unsignedValue = ((uint32_t) byte1 << 16) | ((uint32_t) byte2 << 8) | (uint32_t) byte3;
if ((byte1 & 128) != 0) unsignedValue |= 0xFF000000;
buffer [ichan] [isamp] = (int32_t) unsignedValue * (1.0 / 8388608);
}
}
}
}
} catch (MelderError) {
Melder_clearError ();
Melder_warning ("File too small (", numberOfChannels, "-channel 24-bit).\nMissing samples set to zero.");
}
} break;
case Melder_LINEAR_24_LITTLE_ENDIAN: {
try {
const int numberOfBytesPerSamplePerChannel = 3;
if (numberOfChannels > (int) sizeof (double) / numberOfBytesPerSamplePerChannel) {
for (long isamp = 1; isamp <= numberOfSamples; isamp ++) {
for (long ichan = 1; ichan <= numberOfChannels; ichan ++) {
buffer [ichan] [isamp] = bingeti3LE (f) * (1.0 / 8388608); therror
}
}
} else { // optimize
long numberOfBytes = numberOfChannels * numberOfSamples * numberOfBytesPerSamplePerChannel;
unsigned char *bytes = (unsigned char *) & buffer [numberOfChannels] [numberOfSamples] + sizeof (double) - numberOfBytes;
if (fread (bytes, 1, numberOfBytes, f) < numberOfBytes) throw MelderError (); // read 24-bit data into last three-eights of buffer
if (numberOfChannels == 1) {
for (long isamp = 1; isamp <= numberOfSamples; isamp ++) {
unsigned char byte1 = * bytes ++, byte2 = * bytes ++, byte3 = * bytes ++;
uint32_t unsignedValue = ((uint32_t) byte3 << 16) | ((uint32_t) byte2 << 8) | (uint32_t) byte1;
if ((byte3 & 128) != 0) unsignedValue |= 0xFF000000;
buffer [1] [isamp] = (int32_t) unsignedValue * (1.0 / 8388608);
}
} else {
for (long isamp = 1; isamp <= numberOfSamples; isamp ++) {
for (long ichan = 1; ichan <= numberOfChannels; ichan ++) {
unsigned char byte1 = * bytes ++, byte2 = * bytes ++, byte3 = * bytes ++;
uint32_t unsignedValue = ((uint32_t) byte3 << 16) | ((uint32_t) byte2 << 8) | (uint32_t) byte1;
if ((byte3 & 128) != 0) unsignedValue |= 0xFF000000;
buffer [ichan] [isamp] = (int32_t) unsignedValue * (1.0 / 8388608);
}
}
}
}
} catch (MelderError) {
Melder_clearError ();
Melder_warning ("File too small (", numberOfChannels, "-channel 24-bit).\nMissing samples set to zero.");
}
} break;
case Melder_LINEAR_32_BIG_ENDIAN:
try {
for (long isamp = 1; isamp <= numberOfSamples; isamp ++) {
for (long ichan = 1; ichan <= numberOfChannels; ichan ++) {
buffer [ichan] [isamp] = bingeti4 (f) * (1.0 / 32768 / 65536); therror
}
}
} catch (MelderError) {
Melder_clearError ();
Melder_warning ("File too small (", numberOfChannels, "-channel 32-bit).\nMissing samples set to zero.");
}
break;
case Melder_LINEAR_32_LITTLE_ENDIAN:
try {
for (long isamp = 1; isamp <= numberOfSamples; isamp ++) {
for (long ichan = 1; ichan <= numberOfChannels; ichan ++) {
buffer [ichan] [isamp] = bingeti4LE (f) * (1.0 / 32768 / 65536); therror
}
}
} catch (MelderError) {
Melder_clearError ();
Melder_warning ("File too small (", numberOfChannels, "-channel 32-bit).\nMissing samples set to zero.");
}
break;
case Melder_IEEE_FLOAT_32_BIG_ENDIAN:
try {
for (long isamp = 1; isamp <= numberOfSamples; isamp ++) {
for (long ichan = 1; ichan <= numberOfChannels; ichan ++) {
buffer [ichan] [isamp] = bingetr4 (f); therror
}
}
} catch (MelderError) {
Melder_clearError ();
Melder_warning ("File too small (", numberOfChannels, "-channel 32-bit floating point).\nMissing samples set to zero.");
}
break;
case Melder_IEEE_FLOAT_32_LITTLE_ENDIAN:
try {
for (long isamp = 1; isamp <= numberOfSamples; isamp ++) {
for (long ichan = 1; ichan <= numberOfChannels; ichan ++) {
buffer [ichan] [isamp] = bingetr4LE (f); therror
}
}
} catch (MelderError) {
Melder_clearError ();
Melder_warning ("File too small (", numberOfChannels, "-channel 32-bit floating point).\nMissing samples set to zero.");
}
break;
case Melder_MULAW:
try {
for (long isamp = 1; isamp <= numberOfSamples; isamp ++) {
for (long ichan = 1; ichan <= numberOfChannels; ichan ++) {
buffer [ichan] [isamp] = ulaw2linear [bingetu1 (f)] * (1.0 / 32768); therror
}
}
} catch (MelderError) {
Melder_clearError ();
Melder_warning ("File too small (", numberOfChannels, "-channel 8-bit " "-law).\nMissing samples set to zero.");
}
break;
case Melder_ALAW:
try {
for (long isamp = 1; isamp <= numberOfSamples; isamp ++) {
for (long ichan = 1; ichan <= numberOfChannels; ichan ++) {
buffer [ichan] [isamp] = alaw2linear [bingetu1 (f)] * (1.0 / 32768); therror
}
}
} catch (MelderError) {
Melder_clearError ();
Melder_warning ("File too small (", numberOfChannels, "-channel 8-bit A-law).\nMissing samples set to zero.");
}
break;
case Melder_FLAC_COMPRESSION_16:
case Melder_FLAC_COMPRESSION_24:
case Melder_FLAC_COMPRESSION_32:
Melder_readFlacFile (f, numberOfChannels, buffer, numberOfSamples);
break;
case Melder_MPEG_COMPRESSION_16:
case Melder_MPEG_COMPRESSION_24:
case Melder_MPEG_COMPRESSION_32:
Melder_readMp3File (f, numberOfChannels, buffer, numberOfSamples);
break;
default:
Melder_throw ("Unknown encoding %d.", encoding);
}
} catch (MelderError) {
Melder_throw ("Audio samples not read from file.");
}
}
void Melder_readAudioToShort (FILE *f, int numberOfChannels, int encoding, short *buffer, long numberOfSamples) {
try {
long n = numberOfSamples * numberOfChannels, i;
static const unsigned short byteSwapTest = 3 * 256 + 1;
switch (encoding) {
case Melder_LINEAR_8_SIGNED:
for (i = 0; i < n; i ++) {
signed char value;
if (! fread (& value, 1, 1, f)) Melder_throw ("File too small (mono 8-bit).");
buffer [i] = value * 256;
}
break;
case Melder_LINEAR_8_UNSIGNED:
for (i = 0; i < n; i ++) {
buffer [i] = bingetu1 (f) * 256L - 32768;
}
break;
case Melder_LINEAR_16_BIG_ENDIAN:
fread (buffer, sizeof (short), n, f);
if (* (unsigned char *) & byteSwapTest == 1) {
for (i = 0; i < n; i ++) {
unsigned short value = buffer [i];
buffer [i] = (value >> 8) + (value << 8);
}
}
break;
case Melder_LINEAR_16_LITTLE_ENDIAN:
fread (buffer, sizeof (short), n, f);
if (* (unsigned char *) & byteSwapTest == 3) {
for (i = 0; i < n; i ++) {
unsigned short value = buffer [i];
buffer [i] = (value >> 8) + (value << 8);
}
}
break;
case Melder_LINEAR_24_BIG_ENDIAN:
for (i = 0; i < n; i ++) {
buffer [i] = bingeti3 (f) / 256; // BUG: truncation; not ideal
}
break;
case Melder_LINEAR_24_LITTLE_ENDIAN:
for (i = 0; i < n; i ++) {
buffer [i] = bingeti3LE (f) / 256; // BUG: truncation; not ideal
}
break;
case Melder_LINEAR_32_BIG_ENDIAN:
for (i = 0; i < n; i ++) {
buffer [i] = bingeti4 (f) / 65536; // BUG: truncation; not ideal
}
break;
case Melder_LINEAR_32_LITTLE_ENDIAN:
for (i = 0; i < n; i ++) {
buffer [i] = bingeti4LE (f) / 65536; // BUG: truncation; not ideal
}
break;
case Melder_IEEE_FLOAT_32_BIG_ENDIAN:
for (i = 0; i < n; i ++) {
buffer [i] = bingetr4 (f) * 32768; // BUG: truncation; not ideal
}
break;
case Melder_IEEE_FLOAT_32_LITTLE_ENDIAN:
for (i = 0; i < n; i ++) {
buffer [i] = bingetr4LE (f) * 32768; // BUG: truncation; not ideal
}
break;
case Melder_MULAW:
for (i = 0; i < n; i ++) {
buffer [i] = ulaw2linear [bingetu1 (f)];
}
break;
case Melder_ALAW:
for (i = 0; i < n; i ++) {
buffer [i] = alaw2linear [bingetu1 (f)];
}
break;
default:
Melder_throw ("Unknown encoding %d.", encoding);
}
} catch (MelderError) {
Melder_clearError ();
Melder_warning (L"Audio file too short. Missing samples were set to zero.");
}
}
void MelderFile_writeShortToAudio (MelderFile file, int numberOfChannels, int encoding, const short *buffer, long numberOfSamples) {
try {
FILE *f = file -> filePointer;
if (f == NULL) Melder_throw ("File not open.");
long n = numberOfSamples * numberOfChannels, start = 0, step = 1, i;
if (numberOfChannels < 0) {
n = numberOfSamples * 2; // stereo
step = 2; // only one channel will be written
if (numberOfChannels == -2) {
start = 1; // right channel
}
numberOfChannels = 1;
}
switch (encoding) {
case Melder_LINEAR_8_SIGNED:
for (i = start; i < n; i += step)
binputi1 (buffer [i] >> 8, f);
break; case Melder_LINEAR_8_UNSIGNED:
for (i = start; i < n; i += step)
binputu1 ((buffer [i] >> 8) + 128, f);
break; case Melder_LINEAR_16_BIG_ENDIAN:
for (i = start; i < n; i += step)
binputi2 (buffer [i], f);
break; case Melder_LINEAR_16_LITTLE_ENDIAN:
for (i = start; i < n; i += step)
binputi2LE (buffer [i], f);
break; case Melder_LINEAR_24_BIG_ENDIAN:
for (i = start; i < n; i += step)
binputi3 (buffer [i] << 8, f);
break; case Melder_LINEAR_24_LITTLE_ENDIAN:
for (i = start; i < n; i += step)
binputi3LE (buffer [i] << 8, f);
break; case Melder_LINEAR_32_BIG_ENDIAN:
for (i = start; i < n; i += step)
binputi4 (buffer [i] << 16, f);
break; case Melder_LINEAR_32_LITTLE_ENDIAN:
for (i = start; i < n; i += step)
binputi4LE (buffer [i] << 16, f);
break; case Melder_IEEE_FLOAT_32_BIG_ENDIAN:
for (i = start; i < n; i += step)
binputr4 (buffer [i] / 32768.0, f);
break; case Melder_IEEE_FLOAT_32_LITTLE_ENDIAN:
for (i = start; i < n; i += step)
binputr4LE (buffer [i] / 32768.0, f);
break;
case Melder_FLAC_COMPRESSION_16:
case Melder_FLAC_COMPRESSION_24:
case Melder_FLAC_COMPRESSION_32:
if (! file -> flacEncoder)
Melder_throw ("FLAC encoder not initialized.");
for (i = start; i < n; i += step * numberOfChannels) {
FLAC__int32 samples [FLAC__MAX_CHANNELS];
for (int ichan = 1; ichan <= numberOfChannels; ichan ++)
samples [ichan - 1] = buffer [i + ichan - 1];
if (! FLAC__stream_encoder_process_interleaved (file -> flacEncoder, samples, 1))
Melder_throw ("Error encoding FLAC stream.");
}
break; case Melder_MULAW: case Melder_ALAW: default:
Melder_throw ("Unknown encoding %d.", encoding);
}
} catch (MelderError) {
Melder_throw ("Samples not written to audio file.");
}
}
void MelderFile_writeFloatToAudio (MelderFile file, int numberOfChannels, int encoding, double **buffer, long numberOfSamples, int warnIfClipped) {
try {
FILE *f = file -> filePointer;
if (f == NULL) Melder_throw ("File not open.");
long nclipped = 0;
switch (encoding) {
case Melder_LINEAR_8_SIGNED:
for (long isamp = 1; isamp <= numberOfSamples; isamp ++) {
for (long ichan = 1; ichan <= numberOfChannels; ichan ++) {
long value = round (buffer [ichan] [isamp] * 128);
if (value < -128) { value = -128; nclipped ++; }
if (value > 127) { value = 127; nclipped ++; }
binputi1 (value, f);
}
}
break;
case Melder_LINEAR_8_UNSIGNED:
for (long isamp = 1; isamp <= numberOfSamples; isamp ++) {
for (long ichan = 1; ichan <= numberOfChannels; ichan ++) {
long value = floor ((buffer [ichan] [isamp] + 1.0) * 128);
if (value < 0) { value = 0; nclipped ++; }
if (value > 255) { value = 255; nclipped ++; }
binputu1 (value, f);
}
}
break;
case Melder_LINEAR_16_BIG_ENDIAN:
for (long isamp = 1; isamp <= numberOfSamples; isamp ++) {
for (long ichan = 1; ichan <= numberOfChannels; ichan ++) {
long value = round (buffer [ichan] [isamp] * 32768);
if (value < -32768) { value = -32768; nclipped ++; }
if (value > 32767) { value = 32767; nclipped ++; }
binputi2 (value, f);
}
}
break;
case Melder_LINEAR_16_LITTLE_ENDIAN:
for (long isamp = 1; isamp <= numberOfSamples; isamp ++) {
for (long ichan = 1; ichan <= numberOfChannels; ichan ++) {
long value = round (buffer [ichan] [isamp] * 32768);
if (value < -32768) { value = -32768; nclipped ++; }
if (value > 32767) { value = 32767; nclipped ++; }
binputi2LE (value, f);
}
}
break;
case Melder_LINEAR_24_BIG_ENDIAN:
for (long isamp = 1; isamp <= numberOfSamples; isamp ++) {
for (long ichan = 1; ichan <= numberOfChannels; ichan ++) {
long value = round (buffer [ichan] [isamp] * 8388608);
if (value < -8388608) { value = -8388608; nclipped ++; }
if (value > 8388607) { value = 8388607; nclipped ++; }
binputi3 (value, f);
}
}
break;
case Melder_LINEAR_24_LITTLE_ENDIAN:
for (long isamp = 1; isamp <= numberOfSamples; isamp ++) {
for (long ichan = 1; ichan <= numberOfChannels; ichan ++) {
long value = round (buffer [ichan] [isamp] * 8388608);
if (value < -8388608) { value = -8388608; nclipped ++; }
if (value > 8388607) { value = 8388607; nclipped ++; }
binputi3LE (value, f);
}
}
break;
case Melder_LINEAR_32_BIG_ENDIAN:
for (long isamp = 1; isamp <= numberOfSamples; isamp ++) {
for (long ichan = 1; ichan <= numberOfChannels; ichan ++) {
double value = round (buffer [ichan] [isamp] * 2147483648.0);
if (value < -2147483648.0) { value = -2147483648.0; nclipped ++; }
if (value > 2147483647.0) { value = 2147483647.0; nclipped ++; }
binputi4 (value, f);
}
}
break;
case Melder_LINEAR_32_LITTLE_ENDIAN:
for (long isamp = 1; isamp <= numberOfSamples; isamp ++) {
for (long ichan = 1; ichan <= numberOfChannels; ichan ++) {
double value = round (buffer [ichan] [isamp] * 2147483648.0);
if (value < -2147483648.0) { value = -2147483648.0; nclipped ++; }
if (value > 2147483647.0) { value = 2147483647.0; nclipped ++; }
binputi4LE (value, f);
}
}
break;
case Melder_IEEE_FLOAT_32_BIG_ENDIAN:
for (long isamp = 1; isamp <= numberOfSamples; isamp ++) {
for (long ichan = 1; ichan <= numberOfChannels; ichan ++) {
double value = buffer [ichan] [isamp];
binputr4 (value, f);
}
}
break;
case Melder_IEEE_FLOAT_32_LITTLE_ENDIAN:
for (long isamp = 1; isamp <= numberOfSamples; isamp ++) {
for (long ichan = 1; ichan <= numberOfChannels; ichan ++) {
double value = buffer [ichan] [isamp];
binputr4LE (value, f);
}
}
break;
case Melder_FLAC_COMPRESSION_16:
case Melder_FLAC_COMPRESSION_24:
case Melder_FLAC_COMPRESSION_32:
if (! file -> flacEncoder)
Melder_throw ("FLAC encoder not initialized.");
for (long isamp = 1; isamp <= numberOfSamples; isamp ++) {
FLAC__int32 samples [FLAC__MAX_CHANNELS];
for (long ichan = 1; ichan <= numberOfChannels; ichan ++) {
long value = round (buffer [ichan] [isamp] * 32768);
if (value < -32768) { value = -32768; nclipped ++; }
if (value > 32767) { value = 32767; nclipped ++; }
samples [ichan - 1] = (FLAC__int32) value;
}
if (! FLAC__stream_encoder_process_interleaved (file -> flacEncoder, samples, 1))
Melder_throw ("Error encoding FLAC stream.");
}
break;
case Melder_MULAW:
case Melder_ALAW:
default:
Melder_throw (L"Unknown format.");
}
if (nclipped > 0 && warnIfClipped)
Melder_warning ("Writing samples to audio file: ", nclipped, " out of ", numberOfSamples, " samples have been clipped.\n"
"Advice: you could scale the amplitudes or write to a binary file.");
} catch (MelderError) {
Melder_throw ("Samples not written to audio file.");
}
}
/* End of file melder_audiofiles.cpp */
|