decode_external.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524
  1. /*
  2. * Squeezelite for esp32
  3. *
  4. * (c) Sebastien 2019
  5. * Philippe G. 2019, philippe_44@outlook.com
  6. *
  7. * This software is released under the MIT License.
  8. * https://opensource.org/licenses/MIT
  9. *
  10. */
  11. #include <math.h>
  12. #ifdef ESP_PLATFORM
  13. #include "freertos/FreeRTOS.h"
  14. #include "freertos/timers.h"
  15. #endif
  16. #include "platform_config.h"
  17. #include "squeezelite.h"
  18. #if CONFIG_BT_SINK
  19. #include "bt_app_sink.h"
  20. static bool enable_bt_sink;
  21. #endif
  22. #if CONFIG_CSPOT_SINK
  23. #include "cspot_sink.h"
  24. static bool enable_cspot;
  25. #endif
  26. #if CONFIG_AIRPLAY_SINK
  27. #include "raop_sink.h"
  28. static bool enable_airplay;
  29. #define RAOP_OUTPUT_SIZE (((RAOP_SAMPLE_RATE * BYTES_PER_FRAME * 2 * 120) / 100) & ~BYTES_PER_FRAME)
  30. #define SYNC_WIN_SLOW 32
  31. #define SYNC_WIN_CHECK 8
  32. #define SYNC_WIN_FAST 2
  33. static raop_event_t raop_state;
  34. static EXT_RAM_ATTR struct {
  35. bool enabled;
  36. int sum, count, win, errors[SYNC_WIN_SLOW];
  37. s32_t len;
  38. u32_t start_time, playtime;
  39. } raop_sync;
  40. #endif
  41. static bool abort_sink ;
  42. #define LOCK_O mutex_lock(outputbuf->mutex)
  43. #define UNLOCK_O mutex_unlock(outputbuf->mutex)
  44. #define LOCK_D mutex_lock(decode.mutex);
  45. #define UNLOCK_D mutex_unlock(decode.mutex);
  46. enum { DECODE_BT = 1, DECODE_RAOP, DECODE_CSPOT };
  47. extern struct outputstate output;
  48. extern struct decodestate decode;
  49. extern struct buffer *outputbuf;
  50. // this is the only system-wide loglevel variable
  51. extern log_level loglevel;
  52. /****************************************************************************************
  53. * Common sink data handler
  54. */
  55. static void sink_data_handler(const uint8_t *data, uint32_t len)
  56. {
  57. size_t bytes, space;
  58. int wait = 5;
  59. // would be better to lock output, but really, it does not matter
  60. if (!output.external) {
  61. LOG_SDEBUG("Cannot use external sink while LMS is controlling player");
  62. return;
  63. }
  64. LOCK_O;
  65. abort_sink = false;
  66. // there will always be room at some point
  67. while (len && wait && !abort_sink) {
  68. bytes = min(_buf_space(outputbuf), _buf_cont_write(outputbuf)) / (BYTES_PER_FRAME / 4);
  69. bytes = min(len, bytes);
  70. #if BYTES_PER_FRAME == 4
  71. memcpy(outputbuf->writep, data, bytes);
  72. #else
  73. {
  74. s16_t *iptr = (s16_t*) data;
  75. ISAMPLE_T *optr = (ISAMPLE_T *) outputbuf->writep;
  76. size_t n = bytes / 2;
  77. while (n--) *optr++ = *iptr++ << 16;
  78. }
  79. #endif
  80. _buf_inc_writep(outputbuf, bytes * BYTES_PER_FRAME / 4);
  81. space = _buf_space(outputbuf);
  82. len -= bytes;
  83. data += bytes;
  84. // allow i2s to empty the buffer if needed
  85. if (len && !space) {
  86. wait--;
  87. UNLOCK_O; usleep(50000); LOCK_O;
  88. }
  89. }
  90. UNLOCK_O;
  91. if (!wait) {
  92. LOG_WARN("Waited too long, dropping frames");
  93. }
  94. }
  95. /****************************************************************************************
  96. * BT sink command handler
  97. */
  98. #if CONFIG_BT_SINK
  99. static bool bt_sink_cmd_handler(bt_sink_cmd_t cmd, va_list args)
  100. {
  101. // don't LOCK_O as there is always a chance that LMS takes control later anyway
  102. if (output.external != DECODE_BT && output.state > OUTPUT_STOPPED) {
  103. LOG_WARN("Cannot use BT sink while LMS/AirPlay/CSpot are controlling player");
  104. return false;
  105. }
  106. LOCK_D;
  107. if (cmd != BT_SINK_VOLUME) LOCK_O;
  108. switch(cmd) {
  109. case BT_SINK_AUDIO_STARTED:
  110. _buf_flush(outputbuf);
  111. _buf_limit(outputbuf, 0);
  112. output.next_sample_rate = output.current_sample_rate = va_arg(args, u32_t);
  113. output.external = DECODE_BT;
  114. output.state = OUTPUT_STOPPED;
  115. output.frames_played = 0;
  116. if (decode.state != DECODE_STOPPED) decode.state = DECODE_ERROR;
  117. LOG_INFO("BT sink started");
  118. break;
  119. case BT_SINK_AUDIO_STOPPED:
  120. if (output.external == DECODE_BT) {
  121. if (output.state > OUTPUT_STOPPED) output.state = OUTPUT_STOPPED;
  122. output.stop_time = gettime_ms();
  123. LOG_INFO("BT sink stopped");
  124. }
  125. break;
  126. case BT_SINK_PLAY:
  127. output.state = OUTPUT_RUNNING;
  128. LOG_INFO("BT play");
  129. break;
  130. case BT_SINK_STOP:
  131. _buf_flush(outputbuf);
  132. output.state = OUTPUT_STOPPED;
  133. output.stop_time = gettime_ms();
  134. abort_sink = true;
  135. LOG_INFO("BT stop");
  136. break;
  137. case BT_SINK_PAUSE:
  138. output.stop_time = gettime_ms();
  139. LOG_INFO("BT pause, just silence");
  140. break;
  141. case BT_SINK_RATE:
  142. output.next_sample_rate = output.current_sample_rate = va_arg(args, u32_t);
  143. LOG_INFO("Setting BT sample rate %u", output.next_sample_rate);
  144. break;
  145. case BT_SINK_VOLUME: {
  146. u32_t volume = va_arg(args, u32_t);
  147. volume = 65536 * powf(volume / 128.0f, 3);
  148. set_volume(volume, volume);
  149. break;
  150. default:
  151. break;
  152. }
  153. }
  154. if (cmd != BT_SINK_VOLUME) UNLOCK_O;
  155. UNLOCK_D;
  156. return true;
  157. }
  158. #endif
  159. /****************************************************************************************
  160. * raop sink data handler
  161. */
  162. #if CONFIG_AIRPLAY_SINK
  163. static void raop_sink_data_handler(const uint8_t *data, uint32_t len, u32_t playtime) {
  164. raop_sync.playtime = playtime;
  165. raop_sync.len = len;
  166. sink_data_handler(data, len);
  167. }
  168. /****************************************************************************************
  169. * AirPlay sink command handler
  170. */
  171. static bool raop_sink_cmd_handler(raop_event_t event, va_list args)
  172. {
  173. // don't LOCK_O as there is always a chance that LMS takes control later anyway
  174. if (output.external != DECODE_RAOP && output.state > OUTPUT_STOPPED) {
  175. LOG_WARN("Cannot use Airplay sink while LMS/BT/CSpot are controlling player");
  176. return false;
  177. }
  178. LOCK_D;
  179. if (event != RAOP_VOLUME) LOCK_O;
  180. // this is async, so player might have been deleted
  181. switch (event) {
  182. case RAOP_TIMING: {
  183. if (!raop_sync.enabled || output.state != OUTPUT_RUNNING || output.frames_played_dmp < output.device_frames) break;
  184. u32_t ms, now = gettime_ms();
  185. u32_t level = _buf_used(outputbuf);
  186. int error;
  187. // in how many ms will the most recent block play
  188. ms = (((s32_t)(level - raop_sync.len) / BYTES_PER_FRAME + output.device_frames + output.frames_in_process) * 10) / (RAOP_SAMPLE_RATE / 100) - (s32_t) (now - output.updated);
  189. // when outputbuf is empty, it means we have a network black-out or something
  190. error = level ? (raop_sync.playtime - now) - ms : 0;
  191. if (loglevel == lDEBUG || !level) {
  192. LOG_INFO("head local:%d, remote:%d (delta:%d)", ms, raop_sync.playtime - now, error);
  193. LOG_INFO("obuf:%u, sync_len:%u, devframes:%u, inproc:%u", _buf_used(outputbuf), raop_sync.len, output.device_frames, output.frames_in_process);
  194. }
  195. // calculate sum, error and update sliding window
  196. raop_sync.errors[raop_sync.count++ % raop_sync.win] = error;
  197. raop_sync.sum += error;
  198. error = raop_sync.sum / min(raop_sync.count, raop_sync.win);
  199. // wait till we have enough data or there is a strong deviation
  200. if ((raop_sync.count >= raop_sync.win && abs(error) > 10) || (raop_sync.count >= SYNC_WIN_CHECK && abs(error) > 100)) {
  201. if (error < 0) {
  202. output.skip_frames = -(error * RAOP_SAMPLE_RATE) / 1000;
  203. output.state = OUTPUT_SKIP_FRAMES;
  204. LOG_INFO("skipping %u frames (count:%d)", output.skip_frames, raop_sync.count);
  205. } else {
  206. output.pause_frames = (error * RAOP_SAMPLE_RATE) / 1000;
  207. output.state = OUTPUT_PAUSE_FRAMES;
  208. LOG_INFO("pausing for %u frames (count: %d)", output.pause_frames, raop_sync.count);
  209. }
  210. raop_sync.sum = raop_sync.count = 0;
  211. memset(raop_sync.errors, 0, sizeof(raop_sync.errors));
  212. }
  213. // move to normal mode if possible
  214. if (raop_sync.win == 1) {
  215. raop_sync.win = SYNC_WIN_FAST;
  216. LOG_INFO("backend played %u, desired %u, (delta:%d)", ms, raop_sync.playtime - now, error);
  217. } else if (raop_sync.win == SYNC_WIN_FAST && raop_sync.count >= SYNC_WIN_FAST && abs(error) < 10) {
  218. raop_sync.win = SYNC_WIN_SLOW;
  219. LOG_INFO("switching to slow sync mode %u", raop_sync.win);
  220. }
  221. break;
  222. }
  223. case RAOP_SETUP: {
  224. uint8_t **buffer = va_arg(args, uint8_t**);
  225. size_t *size = va_arg(args, size_t*);
  226. // steal buffer tail from outputbuf but do not reallocate
  227. *size = _buf_limit(outputbuf, RAOP_OUTPUT_SIZE);
  228. *buffer = outputbuf->writep + RAOP_OUTPUT_SIZE;
  229. output.frames_played = 0;
  230. output.external = DECODE_RAOP;
  231. output.state = OUTPUT_STOPPED;
  232. if (decode.state != DECODE_STOPPED) decode.state = DECODE_ERROR;
  233. LOG_INFO("resizing buffer %u", outputbuf->size);
  234. break;
  235. }
  236. case RAOP_STREAM:
  237. LOG_INFO("Stream", NULL);
  238. raop_state = event;
  239. raop_sync.win = 1;
  240. raop_sync.sum = raop_sync.count = 0;
  241. memset(raop_sync.errors, 0, sizeof(raop_sync.errors));
  242. raop_sync.enabled = !strcasestr(output.device, "BT");
  243. output.next_sample_rate = output.current_sample_rate = RAOP_SAMPLE_RATE;
  244. break;
  245. case RAOP_STOP:
  246. case RAOP_FLUSH:
  247. LOG_INFO("%s", event == RAOP_FLUSH ? "Flush" : "Stop");
  248. _buf_flush(outputbuf);
  249. raop_state = event;
  250. if (output.state > OUTPUT_STOPPED) output.state = OUTPUT_STOPPED;
  251. abort_sink = true;
  252. output.frames_played = 0;
  253. output.stop_time = gettime_ms();
  254. break;
  255. case RAOP_PLAY: {
  256. LOG_INFO("Play", NULL);
  257. if (raop_state != RAOP_PLAY) {
  258. output.state = OUTPUT_START_AT;
  259. output.start_at = va_arg(args, u32_t);
  260. raop_sync.start_time = output.start_at;
  261. LOG_INFO("Starting at %u (in %d ms)", output.start_at, output.start_at - gettime_ms());
  262. }
  263. raop_state = event;
  264. break;
  265. }
  266. case RAOP_VOLUME: {
  267. float volume = va_arg(args, double);
  268. LOG_INFO("Volume[0..1] %0.4f", volume);
  269. volume = 65536 * powf(volume, 3);
  270. set_volume(volume, volume);
  271. break;
  272. }
  273. default:
  274. break;
  275. }
  276. if (event != RAOP_VOLUME) UNLOCK_O;
  277. UNLOCK_D;
  278. return true;
  279. }
  280. #endif
  281. /****************************************************************************************
  282. * cspot sink command handler
  283. */
  284. #if CONFIG_CSPOT_SINK
  285. static bool cspot_cmd_handler(cspot_event_t cmd, va_list args)
  286. {
  287. // don't LOCK_O as there is always a chance that LMS takes control later anyway
  288. if (output.external != DECODE_CSPOT && output.state > OUTPUT_STOPPED) {
  289. LOG_WARN("Cannot use CSpot sink while LMS/BT/Airplay are controlling player");
  290. return false;
  291. }
  292. LOCK_D;
  293. if (cmd != CSPOT_VOLUME) LOCK_O;
  294. switch(cmd) {
  295. case CSPOT_SETUP:
  296. output.current_sample_rate = output.next_sample_rate = va_arg(args, u32_t);
  297. output.external = DECODE_CSPOT;
  298. output.frames_played = 0;
  299. output.state = OUTPUT_STOPPED;
  300. _buf_flush(outputbuf);
  301. _buf_limit(outputbuf, 0);
  302. if (decode.state != DECODE_STOPPED) decode.state = DECODE_ERROR;
  303. LOG_INFO("CSpot connected");
  304. break;
  305. case CSPOT_DISC:
  306. _buf_flush(outputbuf);
  307. abort_sink = true;
  308. output.state = OUTPUT_STOPPED;
  309. output.stop_time = gettime_ms();
  310. LOG_INFO("CSpot disconnected");
  311. break;
  312. case CSPOT_TRACK:
  313. LOG_INFO("CSpot sink new track rate %d", output.next_sample_rate);
  314. break;
  315. case CSPOT_PLAY:
  316. output.state = OUTPUT_RUNNING;
  317. LOG_INFO("CSpot play");
  318. break;
  319. case CSPOT_SEEK:
  320. //TODO: can it be merged with flush (shall we stop)
  321. _buf_flush(outputbuf);
  322. abort_sink = true;
  323. LOG_INFO("CSpot seek by %d", va_arg(args, int));
  324. break;
  325. case CSPOT_FLUSH:
  326. _buf_flush(outputbuf);
  327. abort_sink = true;
  328. __attribute__ ((fallthrough));
  329. case CSPOT_PAUSE:
  330. output.state = OUTPUT_STOPPED;
  331. output.stop_time = gettime_ms();
  332. LOG_INFO("CSpot pause/flush");
  333. break;
  334. case CSPOT_VOLUME: {
  335. u32_t volume = va_arg(args, u32_t);
  336. LOG_INFO("CSpot volume %u", volume);
  337. //volume = 65536 * powf(volume / 32768.0f, 3);
  338. // TODO spotify seems to volume normalize crazy high
  339. volume = 4096 * powf(volume / 32768.0f, 3);
  340. set_volume(volume, volume);
  341. break;
  342. default:
  343. break;
  344. }
  345. }
  346. if (cmd != CSPOT_VOLUME) UNLOCK_O;
  347. UNLOCK_D;
  348. return true;
  349. }
  350. #endif
  351. /****************************************************************************************
  352. * We provide the generic codec register option
  353. */
  354. #if defined(ESP_PLATFORM) && defined(CONFIG_BT_SINK)
  355. void bt_delay_start(TimerHandle_t xTimer) {
  356. xTimerDelete(xTimer, portMAX_DELAY);
  357. bt_sink_init(bt_sink_cmd_handler, sink_data_handler);
  358. LOG_INFO("Initializing BT sink");
  359. }
  360. void bt_delay_stop(TimerHandle_t xTimer) {
  361. xTimerDelete(xTimer, portMAX_DELAY);
  362. bt_sink_deinit();
  363. LOG_INFO("Stopping BT sink");
  364. }
  365. #endif
  366. void register_external(void) {
  367. char *p;
  368. #if CONFIG_BT_SINK
  369. if ((p = config_alloc_get(NVS_TYPE_STR, "enable_bt_sink")) != NULL) {
  370. enable_bt_sink = strcmp(p,"1") == 0 || strcasecmp(p,"y") == 0;
  371. free(p);
  372. }
  373. #endif
  374. #if CONFIG_AIRPLAY_SINK
  375. if ((p = config_alloc_get(NVS_TYPE_STR, "enable_airplay")) != NULL) {
  376. enable_airplay = strcmp(p,"1") == 0 || strcasecmp(p,"y") == 0;
  377. free(p);
  378. }
  379. #endif
  380. #if CONFIG_CSPOT_SINK
  381. if ((p = config_alloc_get(NVS_TYPE_STR, "enable_cspot")) != NULL) {
  382. enable_cspot = strcmp(p,"1") == 0 || strcasecmp(p,"y") == 0;
  383. free(p);
  384. }
  385. #endif
  386. #if CONFIG_BT_SINK
  387. if (!strcasestr(output.device, "BT ") ) {
  388. if(enable_bt_sink){
  389. #ifdef ESP_PLATFORM
  390. // we need to delay the start because current task is in spiram
  391. TimerHandle_t timer = xTimerCreate("delay", 1, pdFALSE, NULL, bt_delay_start);
  392. xTimerStart(timer, portMAX_DELAY);
  393. #else
  394. bt_sink_init(bt_sink_cmd_handler, sink_data_handler);
  395. #endif
  396. }
  397. } else {
  398. LOG_WARN("Cannot be a BT sink and source");
  399. }
  400. #endif
  401. #if CONFIG_AIRPLAY_SINK
  402. if (enable_airplay){
  403. raop_sink_init(raop_sink_cmd_handler, raop_sink_data_handler);
  404. LOG_INFO("Initializing AirPlay sink");
  405. }
  406. #endif
  407. #if CONFIG_CSPOT_SINK
  408. if (enable_cspot){
  409. cspot_sink_init(cspot_cmd_handler, sink_data_handler);
  410. LOG_INFO("Initializing CSpot sink");
  411. }
  412. #endif
  413. }
  414. void deregister_external(void) {
  415. #if CONFIG_BT_SINK
  416. if (!strcasestr(output.device, "BT ") && enable_bt_sink) {
  417. #ifdef ESP_PLATFORM
  418. // we need to delay the stop because current task is in spiram
  419. TimerHandle_t timer = xTimerCreate("delay", 1, pdFALSE, NULL, bt_delay_stop);
  420. xTimerStart(timer, portMAX_DELAY);
  421. #else
  422. bt_sink_deinit();
  423. #endif
  424. }
  425. #endif
  426. #if CONFIG_AIRPLAY_SINK
  427. if (enable_airplay){
  428. LOG_INFO("Stopping AirPlay sink");
  429. raop_sink_deinit();
  430. }
  431. #endif
  432. #if CONFIG_CSPOT_SINK
  433. if (enable_cspot){
  434. LOG_INFO("Stopping CSpot sink");
  435. cspot_sink_deinit();
  436. }
  437. #endif
  438. }
  439. void decode_restore(int external) {
  440. switch (external) {
  441. #if CONFIG_BT_SINK
  442. case DECODE_BT:
  443. bt_disconnect();
  444. break;
  445. #endif
  446. #if CONFIG_AIRPLAY_SINK
  447. case DECODE_RAOP:
  448. raop_disconnect();
  449. raop_state = RAOP_STOP;
  450. break;
  451. #endif
  452. #if CONFIG_CSPOT_SINK
  453. case DECODE_CSPOT:
  454. cspot_disconnect();
  455. break;
  456. #endif
  457. }
  458. }