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
|
/*
* Copyright (c) 2022-2026 Pedro López-Cabanillas
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <ctype.h>
#include <errno.h>
#include <fcntl.h>
#include <getopt.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <eas.h>
#include <eas_reverb.h>
#include <eas_chorus.h>
#include <eas_report.h>
#if defined(_MSC_VER)
#include <io.h>
#include <malloc.h>
#define alloca _alloca
#endif
const char *dls_path = NULL;
const char *sndlib_name = NULL;
EAS_I32 playback_gain = 100;
EAS_I32 reverb_type = 0;
EAS_I32 reverb_wet = 32767;
EAS_I32 reverb_dry = 0;
EAS_BOOL reverb_override = EAS_FALSE;
EAS_I32 chorus_type = 0;
EAS_I32 chorus_level = 32767;
EAS_BOOL chorus_override = EAS_FALSE;
EAS_DATA_HANDLE mEASDataHandle = NULL;
int verbosity =
#ifdef NDEBUG
_EAS_SEVERITY_WARNING;
#else
_EAS_SEVERITY_INFO;
#endif
const S_EAS_LIB_CONFIG *mEASConfig = NULL;
char sLibrary_version[16];
void initLibraryVersion()
{
memset(sLibrary_version, 0, sizeof(sLibrary_version));
mEASConfig = EAS_Config();
if (mEASConfig == NULL) {
fprintf(stderr, "Failed to get the library configuration\n");
} else {
unsigned char v1, v2, v3, v4;
v1 = (mEASConfig->libVersion >> 24) & 0xff;
v2 = (mEASConfig->libVersion >> 16) & 0xff;
v3 = (mEASConfig->libVersion >> 8) & 0xff;
v4 = mEASConfig->libVersion & 0xff;
snprintf(sLibrary_version, sizeof(sLibrary_version), "%u.%u.%u.%u", v1, v2, v3, v4);
}
}
void shutdownLibrary(void)
{
if (mEASDataHandle) {
EAS_RESULT result = EAS_Shutdown(mEASDataHandle);
if (result != EAS_SUCCESS) {
fprintf(stderr, "Failed to deallocate the resources for synthesizer library\n");
}
}
}
int initializeLibrary(void)
{
int ok = EXIT_SUCCESS;
#if defined(__MINGW32__)
setmode(fileno(stdout), O_BINARY);
#elif defined(_MSC_VER)
_setmode(_fileno(stdout), _O_BINARY);
#endif
EAS_SetDebugFile(stderr, 1);
EAS_SetDebugLevel(verbosity);
EAS_RESULT result = EAS_Init(&mEASDataHandle);
if (result != EAS_SUCCESS) {
fprintf(stderr, "Failed to initialize synthesizer library\n");
ok = EXIT_FAILURE;
return ok;
}
if (mEASDataHandle == NULL) {
fprintf(stderr, "Failed to initialize EAS data handle\n");
ok = EXIT_FAILURE;
return ok;
}
if (sndlib_name == NULL) {
sndlib_name = EAS_GetDefaultSoundLibrary(EAS_SNDLIB_WT);
if (sndlib_name == NULL) {
fprintf(stderr, "Failed to get default sound library name\n");
ok = EXIT_FAILURE;
return ok;
}
}
EAS_Report(_EAS_SEVERITY_DETAIL, "Using sound library: %s\n", sndlib_name);
result = EAS_SetSoundLibrary(mEASDataHandle, NULL, EAS_GetSoundLibrary(mEASDataHandle, sndlib_name));
if (result != EAS_SUCCESS) {
fprintf(stderr, "Failed to set sound library: %s\n", sndlib_name);
ok = EXIT_FAILURE;
return ok;
}
if (dls_path != NULL) {
EAS_FILE mDLSFile;
memset(&mDLSFile, 0, sizeof(EAS_FILE));
mDLSFile.handle = fopen(dls_path, "rb");
if (mDLSFile.handle == NULL) {
fprintf(stderr, "Failed to open %s. error: %s\n", dls_path, strerror(errno));
ok = EXIT_FAILURE;
goto cleanup;
}
result = EAS_LoadDLSCollection(mEASDataHandle, NULL, &mDLSFile);
fclose(mDLSFile.handle);
if (result != EAS_SUCCESS) {
fprintf(stderr, "Failed to load DLS file\n");
ok = EXIT_FAILURE;
goto cleanup;
}
}
result = EAS_SetVolume(mEASDataHandle, NULL, playback_gain);
if (result != EAS_SUCCESS) {
fprintf(stderr, "Failed to set master gain\n");
ok = EXIT_FAILURE;
goto cleanup;
}
result = EAS_SetParameter(mEASDataHandle, EAS_MODULE_REVERB, EAS_PARAM_REVERB_OVERRIDE_CC, reverb_override);
if (result != EAS_SUCCESS) {
fprintf(stderr, "Failed to enable reverb override\n");
ok = EXIT_FAILURE;
goto cleanup;
}
EAS_BOOL reverb_bypass = EAS_TRUE;
EAS_I32 reverb_preset = reverb_type - 1;
if ( reverb_preset >= EAS_PARAM_REVERB_LARGE_HALL && reverb_preset <= EAS_PARAM_REVERB_ROOM ) {
reverb_bypass = EAS_FALSE;
result = EAS_SetParameter(mEASDataHandle, EAS_MODULE_REVERB, EAS_PARAM_REVERB_PRESET, reverb_preset);
if (result != EAS_SUCCESS) {
fprintf(stderr, "Failed to set reverb preset");
ok = EXIT_FAILURE;
goto cleanup;
}
result = EAS_SetParameter(mEASDataHandle,
EAS_MODULE_REVERB,
EAS_PARAM_REVERB_WET,
reverb_wet);
if (result != EAS_SUCCESS) {
fprintf(stderr, "Failed to set reverb wet amount");
ok = EXIT_FAILURE;
goto cleanup;
}
result = EAS_SetParameter(mEASDataHandle, EAS_MODULE_REVERB, EAS_PARAM_REVERB_DRY, reverb_dry);
if (result != EAS_SUCCESS) {
fprintf(stderr, "Failed to set reverb dry amount");
ok = EXIT_FAILURE;
goto cleanup;
}
}
result = EAS_SetParameter(mEASDataHandle, EAS_MODULE_REVERB, EAS_PARAM_REVERB_BYPASS, reverb_bypass);
if (result != EAS_SUCCESS) {
fprintf(stderr, "Failed to set reverb bypass");
ok = EXIT_FAILURE;
goto cleanup;
}
result = EAS_SetParameter(mEASDataHandle, EAS_MODULE_CHORUS, EAS_PARAM_CHORUS_OVERRIDE_CC, chorus_override);
if (result != EAS_SUCCESS) {
fprintf(stderr, "Failed to enable chorus override\n");
ok = EXIT_FAILURE;
goto cleanup;
}
EAS_BOOL chorus_bypass = EAS_TRUE;
EAS_I32 chorus_preset = chorus_type - 1;
if ( chorus_preset >= EAS_PARAM_CHORUS_PRESET1 && chorus_preset <= EAS_PARAM_CHORUS_PRESET4 ) {
chorus_bypass = EAS_FALSE;
result = EAS_SetParameter(mEASDataHandle, EAS_MODULE_CHORUS, EAS_PARAM_CHORUS_PRESET, chorus_preset);
if (result != EAS_SUCCESS) {
fprintf(stderr, "Failed to set chorus preset");
ok = EXIT_FAILURE;
goto cleanup;
}
result = EAS_SetParameter(mEASDataHandle, EAS_MODULE_CHORUS, EAS_PARAM_CHORUS_LEVEL, chorus_level);
if (result != EAS_SUCCESS) {
fprintf(stderr, "Failed to set chorus level");
ok = EXIT_FAILURE;
goto cleanup;
}
}
result = EAS_SetParameter(mEASDataHandle, EAS_MODULE_CHORUS, EAS_PARAM_CHORUS_BYPASS, chorus_bypass);
if (result != EAS_SUCCESS) {
fprintf(stderr, "Failed to set chorus bypass");
ok = EXIT_FAILURE;
goto cleanup;
}
return ok;
cleanup:
shutdownLibrary();
return ok;
}
int renderFile(const char *fileName)
{
EAS_HANDLE mEASStreamHandle = NULL;
EAS_FILE mEasFile;
EAS_PCM *mAudioBuffer = NULL;
EAS_I32 mPCMBufferSize = 0;
int ok = EXIT_SUCCESS;
memset(&mEasFile, 0, sizeof(EAS_FILE));
mEasFile.handle = fopen(fileName, "rb");
if (mEasFile.handle == NULL) {
fprintf(stderr, "Failed to open %s. error: %s\n", fileName, strerror(errno));
ok = EXIT_FAILURE;
return ok;
}
EAS_RESULT result = EAS_OpenFile(mEASDataHandle, &mEasFile, &mEASStreamHandle);
if (result != EAS_SUCCESS) {
fprintf(stderr, "Failed to open file\n");
ok = EXIT_FAILURE;
goto cleanup;
}
if(mEASStreamHandle == NULL) {
fprintf(stderr, "Failed to initialize EAS stream handle\n");
ok = EXIT_FAILURE;
goto cleanup;
}
result = EAS_Prepare(mEASDataHandle, mEASStreamHandle);
if (result != EAS_SUCCESS) {
fprintf(stderr, "Failed to prepare EAS data and stream handles\n");
ok = EXIT_FAILURE;
goto cleanup;
}
EAS_I32 playLength = 0;
result = EAS_ParseMetaData(mEASDataHandle, mEASStreamHandle, &playLength);
if (result != EAS_SUCCESS) {
fprintf(stderr, "Failed to parse MIDI file metadata\n");
ok = EXIT_FAILURE;
goto cleanup;
}
if (playLength == 0) {
fprintf(stderr, "MIDI file time length returned 0\n");
ok = EXIT_FAILURE;
goto cleanup;
}
mEASConfig = EAS_Config();
if (mEASConfig == NULL) {
fprintf(stderr, "Failed to get the library configuration\n");
ok = EXIT_FAILURE;
goto cleanup;
}
mPCMBufferSize = sizeof(EAS_PCM) * mEASConfig->mixBufferSize * mEASConfig->numChannels;
mAudioBuffer = alloca(mPCMBufferSize);
if (mAudioBuffer == NULL) {
fprintf(stderr, "Failed to allocate memory of size: %d", mPCMBufferSize);
ok = EXIT_FAILURE;
goto cleanup;
}
while (1) {
EAS_STATE state;
EAS_I32 count = -1;
result = EAS_State(mEASDataHandle, mEASStreamHandle, &state);
if (result != EAS_SUCCESS) {
fprintf(stderr, "Failed to get EAS State\n");
ok = EXIT_FAILURE;
break;
}
if (state == EAS_STATE_STOPPED || state == EAS_STATE_ERROR) {
break; /* playback is complete */
}
result = EAS_Render(mEASDataHandle, mAudioBuffer, mEASConfig->mixBufferSize, &count);
if (result != EAS_SUCCESS) {
fprintf(stderr, "Failed to render audio\n");
ok = EXIT_FAILURE;
break;
}
if (count != mEASConfig->mixBufferSize) {
fprintf(stderr, "Only %d out of %d frames rendered\n", count, mEASConfig->mixBufferSize);
ok = EXIT_FAILURE;
break;
}
fwrite(mAudioBuffer, sizeof(EAS_PCM), mEASConfig->mixBufferSize * mEASConfig->numChannels, stdout);
fflush(stdout);
}
cleanup:
if (mEASStreamHandle) {
result = EAS_CloseFile(mEASDataHandle, mEASStreamHandle);
if (result != EAS_SUCCESS) {
fprintf(stderr, "Failed to close audio file/stream\n");
ok = EXIT_FAILURE;
}
}
if (mEasFile.handle != NULL) {
fclose(mEasFile.handle);
}
return ok;
}
int main (int argc, char **argv)
{
int ok = EXIT_SUCCESS;
int index, c;
initLibraryVersion();
opterr = 0;
int option_index = 0;
static struct option long_options[] = {{"help", no_argument, 0, 'h'},
{"version", no_argument, 0, 'v'},
{"dls", required_argument, 0, 'd'},
{"reverb", required_argument, 0, 'r'},
{"wet", required_argument, 0, 'w'},
{"dry", required_argument, 0, 'n'},
{"chorus", required_argument, 0, 'c'},
{"level", required_argument, 0, 'l'},
{"gain", required_argument, 0, 'g'},
{"Verbosity", required_argument, 0, 'V'},
{"reverb-post-mix", no_argument, 0, 'R'},
{"chorus-post-mix", no_argument, 0, 'C'},
{"sndlib", required_argument, 0, 's'},
{0, 0, 0, 0}};
while (1) {
c = getopt_long(argc, argv, "hvd:r:w:n:c:l:g:V:RCs:", long_options, &option_index);
if (c == -1) {
break;
}
switch (c) {
case 'h':
fprintf(
stderr,
"Usage: %s [-h|--help] [-v|--version] [-d|--dls soundfont] [-r|--reverb 0..4] "
"[-w|--wet 0..32767] [-n|--dry 0..32767] "
"[-c|--chorus 0..4] [-l|--level 0..32767] [-g|--gain 0..196] [-V|--Verbosity "
"0..5] [-R|--reverb-post-mix] [-C|--chorus-post-mix] [-s|--sndlib 1..3] file.mid ...\n"
"Render standard MIDI files into raw PCM audio.\n"
"Options:\n"
"\t-h, --help\t\tthis help message.\n"
"\t-v, --version\t\tsonivox version.\n"
"\t-d, --dls soundfont\tDLS or SF2 soundfont.\n"
"\t-r, --reverb n\t\treverb preset: 0=no, 1=large hall, 2=hall, 3=chamber, "
"4=room.\n"
"\t-w, --wet n\t\treverb wet: 0..32767.\n"
"\t-n, --dry n\t\treverb dry: 0..32767.\n"
"\t-c, --chorus n\t\tchorus preset: 0=no, 1..4=presets.\n"
"\t-l, --level n\t\tchorus level: 0..32767.\n"
"\t-g, --gain n\t\tmaster gain: 0..196. 100 = +0dB.\n"
"\t-V, --Verbosity n\tVerbosity: 0=no, 1=fatals, 2=errors, 3=warnings, 4=infos, "
"5=details\n"
"\t-R, --reverb-post-mix\tignore CC91 reverb send.\n"
"\t-C, --chorus-post-mix\tignore CC93 chorus send.\n"
"\t-s, --sndlib n\t\tsound engine library: 1=wt, 2=fm, 3=hybrid.\n",
argv[0]);
return EXIT_FAILURE;
case 'v':
fprintf(stderr, "version: %s\n", sLibrary_version);
return EXIT_FAILURE;
case 'd':
dls_path = optarg;
break;
case 'R':
reverb_override = EAS_TRUE;
break;
case 'C':
chorus_override = EAS_TRUE;
break;
case 'r':
reverb_type = atoi(optarg);
if ((reverb_type < 0) || (reverb_type > 4)) {
fprintf (stderr, "invalid reverb preset: %d\n", reverb_type);
return EXIT_FAILURE;
}
break;
case 'w':
reverb_wet = atoi(optarg);
if ((reverb_wet < 0) || (reverb_wet > 32767)) {
fprintf (stderr, "invalid reverb wet: %d\n", reverb_wet);
return EXIT_FAILURE;
}
break;
case 'n':
reverb_dry = atoi(optarg);
if ((reverb_dry < 0) || (reverb_dry > 32767)) {
fprintf (stderr, "invalid reverb dry: %d\n", reverb_dry);
return EXIT_FAILURE;
}
break;
case 'c':
chorus_type = atoi(optarg);
if ((chorus_type < 0) || (chorus_type > 4)) {
fprintf (stderr, "invalid chorus preset: %d\n", chorus_type);
return EXIT_FAILURE;
}
break;
case 'l':
chorus_level = atoi(optarg);
if ((chorus_level < 0) || (chorus_level > 32767)) {
fprintf (stderr, "invalid chorus level: %d\n", chorus_level);
return EXIT_FAILURE;
}
break;
case 'g':
playback_gain = atoi(optarg);
if ((playback_gain < 0) || (playback_gain > EAS_MAX_VOLUME)) {
fprintf (stderr, "invalid playback gain: %d\n", playback_gain);
return EXIT_FAILURE;
}
break;
case 'V':
verbosity = atoi(optarg);
if ((verbosity < 0) || (verbosity > 5)) {
fprintf(stderr, "invalid verbosity level: %d\n", verbosity);
return EXIT_FAILURE;
}
break;
case 's': {
int sndlib_type = atoi(optarg);
sndlib_name = EAS_GetDefaultSoundLibrary(sndlib_type);
if ((sndlib_type < EAS_SNDLIB_WT) || (sndlib_type > EAS_SNDLIB_HYBRID) || (sndlib_name == NULL)) {
fprintf(stderr, "invalid sound library: %d\n", sndlib_type);
return EXIT_FAILURE;
}
break;
}
case '?':
fprintf(stderr, "unknown option %c\n", optopt);
return EXIT_FAILURE;
default:
return EXIT_FAILURE;
}
}
ok = initializeLibrary();
if (ok != EXIT_SUCCESS) {
return ok;
}
for (index = optind; index < argc; index++) {
ok = renderFile(argv[index]);
if (ok != EXIT_SUCCESS) {
break;
}
}
shutdownLibrary();
return ok;
}
|