decode_external.c 16 KB

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