output_embedded.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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. // output_bt.c
  28. extern void output_init_bt(log_level level, char *device, unsigned output_buf_size, char *params,
  29. unsigned rates[], unsigned rate_delay, unsigned idle);
  30. extern void output_close_bt(void);
  31. // output_i2s.c
  32. extern void output_init_i2s(log_level level, char *device, unsigned output_buf_size, char *params,
  33. unsigned rates[], unsigned rate_delay, unsigned idle);
  34. extern bool output_volume_i2s(unsigned left, unsigned right);
  35. extern void output_close_i2s(void);
  36. // controls.c
  37. extern void cli_controls_init(void);
  38. static log_level loglevel;
  39. static bool (*volume_cb)(unsigned left, unsigned right);
  40. static void (*close_cb)(void);
  41. void output_init_embedded(log_level level, char *device, unsigned output_buf_size, char *params,
  42. unsigned rates[], unsigned rate_delay, unsigned idle) {
  43. loglevel = level;
  44. LOG_INFO("init device: %s", device);
  45. memset(&output, 0, sizeof(output));
  46. output_init_common(level, device, output_buf_size, rates, idle);
  47. output.start_frames = FRAME_BLOCK;
  48. output.rate_delay = rate_delay;
  49. if (strcasestr(device, "BT ")) {
  50. LOG_INFO("init Bluetooth");
  51. close_cb = &output_close_bt;
  52. output_init_bt(level, device, output_buf_size, params, rates, rate_delay, idle);
  53. } else {
  54. LOG_INFO("init I2S/SPDIF");
  55. close_cb = &output_close_i2s;
  56. volume_cb = &output_volume_i2s;
  57. output_init_i2s(level, device, output_buf_size, params, rates, rate_delay, idle);
  58. }
  59. output_visu_init(level);
  60. LOG_INFO("init completed.");
  61. }
  62. void output_close_embedded(void) {
  63. LOG_INFO("close output");
  64. if (close_cb) (*close_cb)();
  65. output_close_common();
  66. output_visu_close();
  67. }
  68. void set_volume(unsigned left, unsigned right) {
  69. LOG_DEBUG("setting internal gain left: %u right: %u", left, right);
  70. if (!volume_cb || !(*volume_cb)(left, right)) {
  71. LOCK;
  72. output.gainL = left;
  73. output.gainR = right;
  74. UNLOCK;
  75. }
  76. }
  77. bool test_open(const char *device, unsigned rates[], bool userdef_rates) {
  78. memset(rates, 0, MAX_SUPPORTED_SAMPLERATES * sizeof(unsigned));
  79. if (!strcasecmp(device, "I2S")) {
  80. unsigned _rates[] = { 192000, 176400, 96000, 88200, 48000,
  81. 44100, 32000, 24000, 22050, 16000,
  82. 12000, 11025, 8000, 0 };
  83. memcpy(rates, _rates, sizeof(_rates));
  84. } else if (!strcasecmp(device, "SPDIF")) {
  85. unsigned _rates[] = { 48000, 44100, 0 };
  86. memcpy(rates, _rates, sizeof(_rates));
  87. } else {
  88. rates[0] = 44100;
  89. }
  90. return true;
  91. }
  92. char* output_state_str(void){
  93. output_state state;
  94. LOCK;
  95. state = output.state;
  96. UNLOCK;
  97. switch (state) {
  98. case OUTPUT_OFF: return STR(OUTPUT_OFF);
  99. case OUTPUT_STOPPED: return STR(OUTPUT_STOPPED);
  100. case OUTPUT_BUFFER: return STR(OUTPUT_BUFFER);
  101. case OUTPUT_RUNNING: return STR(OUTPUT_RUNNING);
  102. case OUTPUT_PAUSE_FRAMES: return STR(OUTPUT_PAUSE_FRAMES);
  103. case OUTPUT_SKIP_FRAMES: return STR(OUTPUT_SKIP_FRAMES);
  104. case OUTPUT_START_AT: return STR(OUTPUT_START_AT);
  105. default: return "OUTPUT_UNKNOWN_STATE";
  106. }
  107. }
  108. bool output_stopped(void) {
  109. output_state state;
  110. LOCK;
  111. state = output.state;
  112. UNLOCK;
  113. return state <= OUTPUT_STOPPED;
  114. }