Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

687 lines
18KB

  1. /*
  2. * Carla Native Plugins
  3. * Copyright (C) 2013 Filipe Coelho <falktx@falktx.com>
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation; either version 2 of
  8. * the License, or any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * For a full copy of the GNU General Public License see the GPL.txt file
  16. */
  17. #include "CarlaNative.h"
  18. #include "audio_decoder/ad.h"
  19. #include <pthread.h>
  20. #include <stdlib.h>
  21. #include <stdio.h>
  22. #include <string.h>
  23. #include <unistd.h>
  24. #define PROGRAM_COUNT 16
  25. #ifdef _WIN32
  26. # define OS_SEP '\\'
  27. #else
  28. # define OS_SEP '/'
  29. #endif
  30. typedef struct adinfo ADInfo;
  31. typedef pthread_mutex_t Mutex;
  32. typedef pthread_t Thread;
  33. typedef struct _AudioFilePool {
  34. float* buffer[2];
  35. uint32_t startFrame;
  36. uint32_t size;
  37. } AudioFilePool;
  38. typedef struct _AudioFilePrograms {
  39. uint32_t current;
  40. const char* fullNames[PROGRAM_COUNT];
  41. const char* shortNames[PROGRAM_COUNT];
  42. } AudioFilePrograms;
  43. typedef struct _AudioFileInstance {
  44. HostDescriptor* host;
  45. void* filePtr;
  46. ADInfo fileNfo;
  47. uint32_t lastFrame;
  48. uint32_t maxFrame;
  49. AudioFilePool pool;
  50. AudioFilePrograms programs;
  51. bool loopMode;
  52. bool needsRead;
  53. bool doProcess;
  54. bool doQuit;
  55. Mutex mutex;
  56. Thread thread;
  57. } AudioFileInstance;
  58. // ------------------------------------------------------------------------------------------
  59. void zeroFloat(float* data, unsigned size)
  60. {
  61. for (unsigned i=0; i < size; ++i)
  62. *data++ = 0.0f;
  63. }
  64. void audiofile_read_poll(AudioFileInstance* const handlePtr)
  65. {
  66. if (handlePtr == NULL)
  67. {
  68. fprintf(stderr, "R: invalid instance\n");
  69. return;
  70. }
  71. if (handlePtr->fileNfo.frames == 0 || handlePtr->maxFrame == 0)
  72. {
  73. //fprintf(stderr, "R: no song loaded\n");
  74. handlePtr->needsRead = false;
  75. return;
  76. }
  77. int64_t lastFrame = handlePtr->lastFrame;
  78. int64_t readFrame = lastFrame;
  79. if (lastFrame >= handlePtr->maxFrame)
  80. {
  81. if (handlePtr->loopMode)
  82. {
  83. //fprintf(stderr, "R: DEBUG read loop, lastFrame:%i, maxFrame:%i\n", handlePtr->lastFrame, handlePtr->maxFrame);
  84. if (handlePtr->maxFrame >= handlePtr->pool.size)
  85. {
  86. readFrame %= handlePtr->maxFrame;
  87. }
  88. else
  89. {
  90. readFrame = 0;
  91. lastFrame -= lastFrame % handlePtr->maxFrame;
  92. }
  93. }
  94. else
  95. {
  96. //fprintf(stderr, "R: transport out of bounds\n");
  97. handlePtr->needsRead = false;
  98. return;
  99. }
  100. }
  101. // temp data buffer
  102. const uint32_t tmpSize = handlePtr->pool.size * handlePtr->fileNfo.channels;
  103. float tmpData[tmpSize];
  104. zeroFloat(tmpData, tmpSize);
  105. {
  106. fprintf(stderr, "R: poll data - reading at %li:%02li\n", readFrame/44100/60, (readFrame/44100) % 60);
  107. ad_seek(handlePtr->filePtr, readFrame);
  108. ssize_t i, j, rv = ad_read(handlePtr->filePtr, tmpData, tmpSize);
  109. i = j = 0;
  110. // lock, and put data asap
  111. pthread_mutex_lock(&handlePtr->mutex);
  112. for (; i < handlePtr->pool.size && j < rv; j++)
  113. {
  114. if (handlePtr->fileNfo.channels == 1)
  115. {
  116. handlePtr->pool.buffer[0][i] = tmpData[j];
  117. handlePtr->pool.buffer[1][i] = tmpData[j];
  118. i++;
  119. }
  120. else
  121. {
  122. if (j % 2 == 0)
  123. {
  124. handlePtr->pool.buffer[0][i] = tmpData[j];
  125. }
  126. else
  127. {
  128. handlePtr->pool.buffer[1][i] = tmpData[j];
  129. i++;
  130. }
  131. }
  132. }
  133. if (handlePtr->loopMode && i < handlePtr->pool.size)
  134. {
  135. while (i < handlePtr->pool.size)
  136. {
  137. for (j=0; i < handlePtr->pool.size && j < rv; j++)
  138. {
  139. if (handlePtr->fileNfo.channels == 1)
  140. {
  141. handlePtr->pool.buffer[0][i] = tmpData[j];
  142. handlePtr->pool.buffer[1][i] = tmpData[j];
  143. i++;
  144. }
  145. else
  146. {
  147. if (j % 2 == 0)
  148. {
  149. handlePtr->pool.buffer[0][i] = tmpData[j];
  150. }
  151. else
  152. {
  153. handlePtr->pool.buffer[1][i] = tmpData[j];
  154. i++;
  155. }
  156. }
  157. }
  158. }
  159. }
  160. else
  161. {
  162. for (; i < handlePtr->pool.size; i++)
  163. {
  164. handlePtr->pool.buffer[0][i] = 0.0f;
  165. handlePtr->pool.buffer[1][i] = 0.0f;
  166. }
  167. }
  168. handlePtr->pool.startFrame = lastFrame;
  169. // done
  170. pthread_mutex_unlock(&handlePtr->mutex);
  171. }
  172. handlePtr->needsRead = false;
  173. }
  174. static void audiofile_thread_idle(void* ptr)
  175. {
  176. AudioFileInstance* const handlePtr = (AudioFileInstance*)ptr;
  177. while (! handlePtr->doQuit)
  178. {
  179. if (handlePtr->needsRead || handlePtr->lastFrame - handlePtr->pool.startFrame >= handlePtr->pool.size*3/4)
  180. audiofile_read_poll(handlePtr);
  181. else
  182. usleep(50*1000);
  183. }
  184. pthread_exit(NULL);
  185. }
  186. void audiofile_load_filename(AudioFileInstance* const handlePtr, const char* const filename)
  187. {
  188. // wait for jack processing to end
  189. handlePtr->doProcess = false;
  190. pthread_mutex_lock(&handlePtr->mutex);
  191. handlePtr->maxFrame = 0;
  192. handlePtr->pool.startFrame = 0;
  193. // stop thread
  194. if (! handlePtr->doQuit)
  195. {
  196. handlePtr->doQuit = true;
  197. pthread_join(handlePtr->thread, NULL);
  198. }
  199. pthread_mutex_unlock(&handlePtr->mutex);
  200. // clear old data
  201. if (handlePtr->filePtr != NULL)
  202. {
  203. ad_close(handlePtr->filePtr);
  204. handlePtr->filePtr = NULL;
  205. }
  206. ad_clear_nfo(&handlePtr->fileNfo);
  207. if (filename == NULL)
  208. return;
  209. // open new
  210. handlePtr->filePtr = ad_open(filename, &handlePtr->fileNfo);
  211. if (handlePtr->filePtr != NULL)
  212. {
  213. ad_dump_nfo(99, &handlePtr->fileNfo);
  214. if (handlePtr->fileNfo.frames == 0)
  215. fprintf(stderr, "L: filename \"%s\" has 0 frames\n", filename);
  216. if ((handlePtr->fileNfo.channels == 1 || handlePtr->fileNfo.channels == 2) && handlePtr->fileNfo.frames > 0)
  217. {
  218. handlePtr->maxFrame = handlePtr->fileNfo.frames;
  219. audiofile_read_poll(handlePtr);
  220. handlePtr->doProcess = true;
  221. // start thread
  222. handlePtr->doQuit = false;
  223. pthread_create(&handlePtr->thread, NULL, (void*)&audiofile_thread_idle, handlePtr);
  224. }
  225. else
  226. {
  227. ad_close(handlePtr->filePtr);
  228. handlePtr->filePtr = NULL;
  229. ad_clear_nfo(&handlePtr->fileNfo);
  230. }
  231. }
  232. }
  233. // ------------------------------------------------------------------------------------------
  234. static bool gADInitiated = false;
  235. // ------------------------------------------------------------------------------------------
  236. static PluginHandle audiofile_instantiate(const PluginDescriptor* _this_, HostDescriptor* host)
  237. {
  238. AudioFileInstance* const handlePtr = (AudioFileInstance*)malloc(sizeof(AudioFileInstance));
  239. if (handlePtr == NULL)
  240. return NULL;
  241. if (! gADInitiated)
  242. {
  243. ad_init();
  244. gADInitiated = true;
  245. }
  246. // init
  247. handlePtr->host = host;
  248. handlePtr->filePtr = NULL;
  249. handlePtr->lastFrame = 0;
  250. handlePtr->maxFrame = 0;
  251. handlePtr->pool.buffer[0] = NULL;
  252. handlePtr->pool.buffer[1] = NULL;
  253. handlePtr->pool.startFrame = 0;
  254. handlePtr->pool.size = 0;
  255. handlePtr->programs.current = 0;
  256. handlePtr->loopMode = true;
  257. handlePtr->needsRead = false;
  258. handlePtr->doProcess = false;
  259. handlePtr->doQuit = true;
  260. ad_clear_nfo(&handlePtr->fileNfo);
  261. pthread_mutex_init(&handlePtr->mutex, NULL);
  262. for (uint32_t i=0; i < PROGRAM_COUNT; i++)
  263. {
  264. handlePtr->programs.fullNames[i] = NULL;
  265. handlePtr->programs.shortNames[i] = NULL;
  266. }
  267. // create audio pool
  268. handlePtr->pool.size = host->get_sample_rate(host->handle) * 6; // 6 secs
  269. handlePtr->pool.buffer[0] = (float*)malloc(sizeof(float) * handlePtr->pool.size);
  270. if (handlePtr->pool.buffer[0] == NULL)
  271. {
  272. free(handlePtr);
  273. return NULL;
  274. }
  275. handlePtr->pool.buffer[1] = (float*)malloc(sizeof(float) * handlePtr->pool.size);
  276. if (handlePtr->pool.buffer[1] == NULL)
  277. {
  278. free(handlePtr->pool.buffer[0]);
  279. free(handlePtr);
  280. return NULL;
  281. }
  282. zeroFloat(handlePtr->pool.buffer[0], handlePtr->pool.size);
  283. zeroFloat(handlePtr->pool.buffer[1], handlePtr->pool.size);
  284. return handlePtr;
  285. // unused
  286. (void)_this_;
  287. }
  288. static void audiofile_cleanup(PluginHandle handle)
  289. {
  290. AudioFileInstance* const handlePtr = (AudioFileInstance*)handle;
  291. // wait for processing to end
  292. handlePtr->doProcess = false;
  293. pthread_mutex_lock(&handlePtr->mutex);
  294. // stop thread
  295. if (! handlePtr->doQuit)
  296. {
  297. handlePtr->doQuit = true;
  298. pthread_join(handlePtr->thread, NULL);
  299. }
  300. pthread_mutex_unlock(&handlePtr->mutex);
  301. pthread_mutex_destroy(&handlePtr->mutex);
  302. if (handlePtr->filePtr != NULL)
  303. ad_close(handlePtr->filePtr);
  304. if (handlePtr->pool.buffer[0] != NULL)
  305. free(handlePtr->pool.buffer[0]);
  306. if (handlePtr->pool.buffer[1] != NULL)
  307. free(handlePtr->pool.buffer[1]);
  308. for (uint32_t i=0; i < PROGRAM_COUNT; i++)
  309. {
  310. if (handlePtr->programs.fullNames[i] != NULL)
  311. free((void*)handlePtr->programs.fullNames[i]);
  312. if (handlePtr->programs.shortNames[i] != NULL)
  313. free((void*)handlePtr->programs.shortNames[i]);
  314. }
  315. free(handlePtr);
  316. }
  317. static uint32_t audiofile_get_parameter_count(PluginHandle handle)
  318. {
  319. return 1;
  320. // unused
  321. (void)handle;
  322. }
  323. static const Parameter* audiofile_get_parameter_info(PluginHandle handle, uint32_t index)
  324. {
  325. if (index != 0)
  326. return NULL;
  327. static Parameter param;
  328. param.name = "Loop Mode";
  329. param.unit = NULL;
  330. param.hints = PARAMETER_IS_ENABLED|PARAMETER_IS_BOOLEAN;
  331. param.ranges.def = 1.0f;
  332. param.ranges.min = 0.0f;
  333. param.ranges.max = 1.0f;
  334. param.ranges.step = 1.0f;
  335. param.ranges.stepSmall = 1.0f;
  336. param.ranges.stepLarge = 1.0f;
  337. param.scalePointCount = 0;
  338. param.scalePoints = NULL;
  339. return &param;
  340. // unused
  341. (void)handle;
  342. }
  343. static float audiofile_get_parameter_value(PluginHandle handle, uint32_t index)
  344. {
  345. AudioFileInstance* const handlePtr = (AudioFileInstance*)handle;
  346. if (index != 0)
  347. return 0.0f;
  348. return handlePtr->loopMode ? 1.0f : 0.0f;
  349. // unused
  350. (void)handle;
  351. }
  352. static uint32_t audiofile_get_program_count(PluginHandle handle)
  353. {
  354. return PROGRAM_COUNT;
  355. // unused
  356. (void)handle;
  357. }
  358. const MidiProgram* audiofile_get_program_info(PluginHandle handle, uint32_t index)
  359. {
  360. AudioFileInstance* const handlePtr = (AudioFileInstance*)handle;
  361. if (index >= PROGRAM_COUNT)
  362. return NULL;
  363. static MidiProgram midiProgram;
  364. midiProgram.bank = 0;
  365. midiProgram.program = index;
  366. midiProgram.name = handlePtr->programs.shortNames[index];
  367. if (midiProgram.name == NULL)
  368. midiProgram.name = "";
  369. return &midiProgram;
  370. }
  371. static void audiofile_set_parameter_value(PluginHandle handle, uint32_t index, float value)
  372. {
  373. AudioFileInstance* const handlePtr = (AudioFileInstance*)handle;
  374. if (index != 0)
  375. return;
  376. handlePtr->loopMode = (value > 0.5f);
  377. handlePtr->needsRead = true;
  378. }
  379. static void audiofile_set_program(PluginHandle handle, uint32_t bank, uint32_t program)
  380. {
  381. AudioFileInstance* const handlePtr = (AudioFileInstance*)handle;
  382. if (bank != 0 || program >= PROGRAM_COUNT)
  383. return;
  384. if (handlePtr->programs.current != program)
  385. {
  386. audiofile_load_filename(handlePtr, handlePtr->programs.fullNames[program]);
  387. handlePtr->programs.current = program;
  388. }
  389. }
  390. static void audiofile_set_custom_data(PluginHandle handle, const char* key, const char* value)
  391. {
  392. AudioFileInstance* const handlePtr = (AudioFileInstance*)handle;
  393. if (strncmp(key, "file", 4) != 0)
  394. return;
  395. if (key[4] < '0' || key[4] > '9')
  396. return;
  397. if (key[5] < '0' || key[5] > '9')
  398. return;
  399. uint8_t tens = key[4]-'0';
  400. uint8_t nums = key[5]-'0';
  401. uint32_t program = tens*10 + nums;
  402. if (program >= PROGRAM_COUNT)
  403. return;
  404. if (handlePtr->programs.fullNames[program] != NULL)
  405. free((void*)handlePtr->programs.fullNames[program]);
  406. if (handlePtr->programs.shortNames[program] != NULL)
  407. free((void*)handlePtr->programs.shortNames[program]);
  408. handlePtr->programs.fullNames[program] = strdup(value);
  409. {
  410. const char* shortName1 = strrchr(value, OS_SEP)+1;
  411. //const char* shortName2 = strchr(shortName1, '.');
  412. handlePtr->programs.shortNames[program] = strdup(shortName1);
  413. }
  414. if (handlePtr->programs.current == program)
  415. audiofile_load_filename(handlePtr, value);
  416. }
  417. static void audiofile_ui_show(PluginHandle handle, bool show)
  418. {
  419. AudioFileInstance* const handlePtr = (AudioFileInstance*)handle;
  420. if (! show)
  421. return;
  422. const char* const filename = handlePtr->host->ui_open_file(handlePtr->host->handle, false, "Open Audio File", "");
  423. if (filename != NULL)
  424. {
  425. char fileStr[4+2+1] = { 'f', 'i', 'l', 'e', 0, 0, 0 };
  426. fileStr[4] = '0' + (handlePtr->programs.current / 10);
  427. fileStr[5] = '0' + (handlePtr->programs.current % 10);
  428. handlePtr->host->ui_custom_data_changed(handlePtr->host->handle, fileStr, filename);
  429. }
  430. handlePtr->host->ui_closed(handlePtr->host->handle);
  431. }
  432. static void audiofile_process(PluginHandle handle, float** inBuffer, float** outBuffer, uint32_t frames, uint32_t midiEventCount, const MidiEvent* midiEvents)
  433. {
  434. AudioFileInstance* const handlePtr = (AudioFileInstance*)handle;
  435. const TimeInfo* const timePos = handlePtr->host->get_time_info(handlePtr->host->handle);
  436. float* out1 = outBuffer[0];
  437. float* out2 = outBuffer[1];
  438. if (! handlePtr->doProcess)
  439. {
  440. //fprintf(stderr, "P: no process\n");
  441. handlePtr->lastFrame = timePos->frame;
  442. zeroFloat(out1, frames);
  443. zeroFloat(out2, frames);
  444. return;
  445. }
  446. // not playing
  447. if (! timePos->playing)
  448. {
  449. //fprintf(stderr, "P: not rolling\n");
  450. if (timePos->frame == 0 && handlePtr->lastFrame > 0)
  451. handlePtr->needsRead = true;
  452. handlePtr->lastFrame = timePos->frame;
  453. zeroFloat(out1, frames);
  454. zeroFloat(out2, frames);
  455. return;
  456. }
  457. pthread_mutex_lock(&handlePtr->mutex);
  458. // out of reach
  459. if (timePos->frame + frames < handlePtr->pool.startFrame || (timePos->frame >= handlePtr->maxFrame && ! handlePtr->loopMode))
  460. {
  461. //fprintf(stderr, "P: non-continuous playback, out of reach %u vs %u\n", timePos->frame + frames, handlePtr->maxFrame);
  462. handlePtr->lastFrame = timePos->frame;
  463. handlePtr->needsRead = true;
  464. pthread_mutex_unlock(&handlePtr->mutex);
  465. zeroFloat(out1, frames);
  466. zeroFloat(out2, frames);
  467. return;
  468. }
  469. int64_t poolFrame = (int64_t)timePos->frame - handlePtr->pool.startFrame;
  470. int64_t poolSize = handlePtr->pool.size;
  471. for (uint32_t i=0; i < frames; i++, poolFrame++)
  472. {
  473. if (poolFrame >= 0 && poolFrame < poolSize)
  474. {
  475. out1[i] = handlePtr->pool.buffer[0][poolFrame];
  476. out2[i] = handlePtr->pool.buffer[1][poolFrame];
  477. // reset
  478. handlePtr->pool.buffer[0][poolFrame] = 0.0f;
  479. handlePtr->pool.buffer[1][poolFrame] = 0.0f;
  480. }
  481. else
  482. {
  483. out1[i] = 0.0f;
  484. out2[i] = 0.0f;
  485. }
  486. }
  487. handlePtr->lastFrame = timePos->frame;
  488. pthread_mutex_unlock(&handlePtr->mutex);
  489. return;
  490. // unused
  491. (void)inBuffer;
  492. (void)midiEventCount;
  493. (void)midiEvents;
  494. }
  495. // -----------------------------------------------------------------------
  496. static const PluginDescriptor audiofileDesc = {
  497. .category = PLUGIN_CATEGORY_UTILITY,
  498. .hints = PLUGIN_IS_RTSAFE|PLUGIN_HAS_GUI,
  499. .audioIns = 0,
  500. .audioOuts = 2,
  501. .midiIns = 0,
  502. .midiOuts = 0,
  503. .parameterIns = 1,
  504. .parameterOuts = 0,
  505. .name = "Audio File",
  506. .label = "audiofile",
  507. .maker = "falkTX",
  508. .copyright = "GNU GPL v2+",
  509. .instantiate = audiofile_instantiate,
  510. .cleanup = audiofile_cleanup,
  511. .get_parameter_count = audiofile_get_parameter_count,
  512. .get_parameter_info = audiofile_get_parameter_info,
  513. .get_parameter_value = audiofile_get_parameter_value,
  514. .get_parameter_text = NULL,
  515. .get_midi_program_count = audiofile_get_program_count,
  516. .get_midi_program_info = audiofile_get_program_info,
  517. .set_parameter_value = audiofile_set_parameter_value,
  518. .set_midi_program = audiofile_set_program,
  519. .set_custom_data = audiofile_set_custom_data,
  520. .ui_show = audiofile_ui_show,
  521. .ui_idle = NULL,
  522. .ui_set_parameter_value = NULL,
  523. .ui_set_midi_program = NULL,
  524. .ui_set_custom_data = NULL,
  525. .activate = NULL,
  526. .deactivate = NULL,
  527. .process = audiofile_process,
  528. .get_chunk = NULL,
  529. .set_chunk = NULL
  530. };
  531. // -----------------------------------------------------------------------
  532. void carla_register_native_plugin_audiofile()
  533. {
  534. carla_register_native_plugin(&audiofileDesc);
  535. }
  536. // -----------------------------------------------------------------------
  537. // amalgamated build
  538. #include "audio_decoder/ad_ffmpeg.c"
  539. #include "audio_decoder/ad_plugin.c"
  540. #include "audio_decoder/ad_soundfile.c"
  541. // -----------------------------------------------------------------------