decode_external.c 15 KB

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