Closed Gaai closed 1 year ago
Another mistake, this time in audio_element.c: line 1297
if (index >= el->multi_in.max_rb_num) {
ESP_LOGE(TAG, "The index of ringbuffer is **gather than and equal to** ringbuffer maximum (%d). line %d", el->multi_in.max_rb_num, __LINE__);
return ESP_FAIL;
}
See: (...) gather than and equal to (...)
That should be:
`(...) greater than or equal to ringbuffer maximum (...)
@Gaai Thank you for your report. We will fix that.
Replace "perferred" with "preferred"
Thanks, I will fix it.
This topic will be fixed on ESP-SR repo.
Declared in esp_afe_config.h
and used in algorithm_stream.c:
Solution: Replace "perferred" with "preferred"
If that's all the references to this variable I can do a pull request.