output_embedded.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. /*
  2. * Squeezelite for esp32
  3. *
  4. * (c) Sebastien 2019
  5. * Philippe G. 2019, philippe_44@outlook.com
  6. *
  7. * This program is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation, either version 3 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. *
  20. */
  21. #include "squeezelite.h"
  22. extern struct outputstate output;
  23. extern struct buffer *outputbuf;
  24. #define FRAME_BLOCK MAX_SILENCE_FRAMES
  25. #define LOCK mutex_lock(outputbuf->mutex)
  26. #define UNLOCK mutex_unlock(outputbuf->mutex)
  27. extern void output_init_bt(log_level level, char *device, unsigned output_buf_size, char *params,
  28. unsigned rates[], unsigned rate_delay, unsigned idle);
  29. extern void output_close_bt(void);
  30. extern void output_init_i2s(log_level level, char *device, unsigned output_buf_size, char *params,
  31. unsigned rates[], unsigned rate_delay, unsigned idle);
  32. extern bool output_volume_i2s(unsigned left, unsigned right);
  33. extern void output_close_i2s(void);
  34. #ifdef CONFIG_BT_SINK
  35. extern void decode_bt_init(void);
  36. #endif
  37. static log_level loglevel;
  38. static bool (*volume_cb)(unsigned left, unsigned right);
  39. static void (*close_cb)(void);
  40. void output_init_embedded(log_level level, char *device, unsigned output_buf_size, char *params,
  41. unsigned rates[], unsigned rate_delay, unsigned idle) {
  42. loglevel = level;
  43. LOG_INFO("init device: %s", device);
  44. memset(&output, 0, sizeof(output));
  45. output_init_common(level, device, output_buf_size, rates, idle);
  46. output.start_frames = FRAME_BLOCK;
  47. output.rate_delay = rate_delay;
  48. if (strcasestr(device, "BT ")) {
  49. LOG_INFO("init Bluetooth");
  50. close_cb = &output_close_bt;
  51. output_init_bt(level, device, output_buf_size, params, rates, rate_delay, idle);
  52. } else {
  53. LOG_INFO("init I2S/SPDIF");
  54. close_cb = &output_close_i2s;
  55. volume_cb = &output_volume_i2s;
  56. output_init_i2s(level, device, output_buf_size, params, rates, rate_delay, idle);
  57. }
  58. LOG_INFO("init completed.");
  59. }
  60. void output_close_embedded(void) {
  61. LOG_INFO("close output");
  62. if (close_cb) (*close_cb)();
  63. output_close_common();
  64. }
  65. void set_volume(unsigned left, unsigned right) {
  66. LOG_DEBUG("setting internal gain left: %u right: %u", left, right);
  67. if (!volume_cb || !(*volume_cb)(left, right)) {
  68. LOCK;
  69. output.gainL = left;
  70. output.gainR = right;
  71. UNLOCK;
  72. }
  73. }
  74. bool test_open(const char *device, unsigned rates[], bool userdef_rates) {
  75. memset(rates, 0, MAX_SUPPORTED_SAMPLERATES * sizeof(unsigned));
  76. if (!strcmp(device, "BT")) {
  77. rates[0] = 44100;
  78. } else {
  79. unsigned _rates[] = { 192000, 176400, 96000, 88200, 48000, 44100, 32000, 24000, 22050, 16000, 12000, 11025, 8000, 0 };
  80. memcpy(rates, _rates, sizeof(_rates));
  81. }
  82. return true;
  83. }
  84. char* output_state_str(void){
  85. output_state state;
  86. LOCK;
  87. state = output.state;
  88. UNLOCK;
  89. switch (state) {
  90. case OUTPUT_OFF: return STR(OUTPUT_OFF);
  91. case OUTPUT_STOPPED: return STR(OUTPUT_STOPPED);
  92. case OUTPUT_BUFFER: return STR(OUTPUT_BUFFER);
  93. case OUTPUT_RUNNING: return STR(OUTPUT_RUNNING);
  94. case OUTPUT_PAUSE_FRAMES: return STR(OUTPUT_PAUSE_FRAMES);
  95. case OUTPUT_SKIP_FRAMES: return STR(OUTPUT_SKIP_FRAMES);
  96. case OUTPUT_START_AT: return STR(OUTPUT_START_AT);
  97. default: return "OUTPUT_UNKNOWN_STATE";
  98. }
  99. }
  100. bool output_stopped(void) {
  101. output_state state;
  102. LOCK;
  103. state = output.state;
  104. UNLOCK;
  105. return state <= OUTPUT_STOPPED;
  106. }