Files
UltraGrid/src/audio/echo.cpp
2026-02-20 14:19:10 +01:00

345 lines
14 KiB
C++

/**
* @file audio/echo.cpp
* @author Martin Pulec <pulec@cesnet.cz>
* @author Martin Piatka <piatka@cesnet.cz>
*/
/*
* Copyright (c) 2012-2026 CESNET z.s.p.o.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, is permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* 3. Neither the name of CESNET nor the names of its contributors may be
* used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING,
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
* EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "audio/utils.h"
#include "audio/export.h"
#include "debug.h"
#include "echo.h"
#include <speex/speex_echo.h>
#include <cstdlib>
#include <mutex>
#include <memory>
#include <algorithm>
#include <cassert>
#include <chrono>
#include "utils/ring_buffer.h"
#include "host.h"
#define SAMPLES_PER_FRAME (1 << 9) //512, about 10ms at 48kHz, power of two for easy FFT
#define DEFAULT_FILTER_LENGTH (48 * 500)
#define MOD_NAME "[Echo cancel] "
using steady_clock = std::chrono::steady_clock;
using time_point = steady_clock::time_point;
using duration = steady_clock::duration;
namespace {
struct Echo_state_deleter{
void operator()(SpeexEchoState* echo) const{ speex_echo_state_destroy(echo); }
};
struct Export_state_deleter{
void operator()(struct audio_export* e) const{ audio_export_destroy(e); }
};
}
struct echo_cancellation {
std::unique_ptr<SpeexEchoState, Echo_state_deleter> echo_state;
ring_buffer_uniq near_end_ringbuf;
ring_buffer_uniq far_end_ringbuf;
std::unique_ptr<spx_int16_t[]> frame_data;
audio_frame frame{};
int requested_delay{};
int prefill{};
time_point next_expected_near;
std::unique_ptr<struct audio_export, Export_state_deleter> exporter;
std::mutex lock;
};
ADD_TO_PARAM("echo-cancel-dump-audio", "* echo-cancel-dump-audio\n"
" Dump near end, far end and output samples in separate channels to a wav file.\n");
static void reconfigure_echo (struct echo_cancellation *s, int sample_rate, int bps);
static void reconfigure_echo (struct echo_cancellation *s, int sample_rate, int bps)
{
UNUSED(bps);
s->frame.bps = 2;
s->frame.ch_count = 1;
s->frame.sample_rate = sample_rate;
ring_buffer_flush(s->far_end_ringbuf.get());
ring_buffer_flush(s->near_end_ringbuf.get());
speex_echo_ctl(s->echo_state.get(), SPEEX_ECHO_SET_SAMPLING_RATE, &sample_rate); // should the 3rd parameter be int?
if(get_commandline_param("echo-cancel-dump-audio")){
s->exporter.reset(nullptr); //previous file gets closed
s->exporter.reset(audio_export_init("echo_cancel_dump.wav"));
audio_export_configure_raw(s->exporter.get(), 2, sample_rate, 3);
}
}
#define TEXTIFY(a) TEXTIFY2(a)
#define TEXTIFY2(a) #a
ADD_TO_PARAM("echo-cancel-filter-length", "* echo-cancel-filter-length=<samples>\n"
" Echo cancellation filter length in samples, should be the third of the room's impulse response length. (default "
TEXTIFY(DEFAULT_FILTER_LENGTH) ").\n");
ADD_TO_PARAM("echo-cancel-delay", "* echo-cancel-delay=<samples>\n"
" Echo cancellation additional delay added to far end in samples, should be slightly less than output device latency.\n");
struct echo_cancellation * echo_cancellation_init(void)
{
auto *s = new echo_cancellation();
int filter_length = DEFAULT_FILTER_LENGTH;
if(const char *param = get_commandline_param("echo-cancel-filter-length"); param != nullptr){
char *end;
int len = strtol(param, &end, 10);
if(end != param)
filter_length = len;
}
if(const char *param = get_commandline_param("echo-cancel-delay"); param != nullptr){
char *end;
int len = strtol(param, &end, 10);
if(end != param)
s->requested_delay = len;
}
s->echo_state.reset(speex_echo_state_init(SAMPLES_PER_FRAME, filter_length));
s->frame.data = nullptr;
s->frame.sample_rate = s->frame.bps = 0;
constexpr int ringbuf_sample_count = 2 << 15; //should be divisible by SAMPLES_PER_FRAME
constexpr int bps = 2; //TODO: assuming bps to be 2
s->far_end_ringbuf.reset(ring_buffer_init(ringbuf_sample_count * bps));
s->near_end_ringbuf.reset(ring_buffer_init(ringbuf_sample_count * bps));
s->frame_data = std::make_unique<spx_int16_t[]>(ringbuf_sample_count);
s->frame.data = reinterpret_cast<char *>(s->frame_data.get());
s->frame.max_size = ringbuf_sample_count * sizeof(s->frame_data[0]);
static_assert(sizeof(s->frame_data[0]) == bps);
log_msg(LOG_LEVEL_NOTICE, MOD_NAME "Echo cancellation initialized with filter length %d samples.\n", filter_length);
s->prefill = 0;
return s;
}
void echo_cancellation_destroy(struct echo_cancellation *s)
{
delete s;
}
void echo_play(struct echo_cancellation *s, struct audio_frame *frame)
{
std::lock_guard lk(s->lock);
if(frame->ch_count != 1) {
static int prints = 0;
if(prints++ % 100 == 0) {
error_msg(MOD_NAME "Echo cancellation needs 1 played channel. Disabling echo cancellation.\n"
"Use channel mapping and let only one channel played to enable this feature.\n");
}
return;
}
if(s->prefill){
int target = std::max(SAMPLES_PER_FRAME, (s->prefill / SAMPLES_PER_FRAME) * SAMPLES_PER_FRAME);
int current = ring_get_current_size(s->far_end_ringbuf.get());
//buffer can contain small remainder (<SAMPLES_PER_FRAME)
int to_fill = target - current;
s->prefill = 0;
if(to_fill < 0){
log_msg(LOG_LEVEL_WARNING, MOD_NAME "Pre fill requested to %d, but the buffer is already %d!\n", target, current);
} else {
ring_advance_write_idx(s->far_end_ringbuf.get(), to_fill);
log_msg(LOG_LEVEL_NOTICE, MOD_NAME "Pre filling far end with %d samples\n", to_fill);
}
}
int samples = frame->data_len / frame->bps;
int ringbuf_free_samples = ring_get_available_write_size(s->far_end_ringbuf.get()) / 2;
if(samples > ringbuf_free_samples){
samples = ringbuf_free_samples;
log_msg(LOG_LEVEL_WARNING, MOD_NAME "Far end ringbuf overflow!\n");
}
if(frame->bps != 2) {
void *ptr1;
int size1;
void *ptr2;
int size2;
ring_get_write_regions(s->far_end_ringbuf.get(), samples * 2,
&ptr1, &size1, &ptr2, &size2);
assert(size1 % 2 == 0);
int in_bytes1 = (size1 / 2) * frame->bps;
change_bps(static_cast<char *>(ptr1), 2, frame->data, frame->bps, in_bytes1);
if(ptr2){
change_bps(static_cast<char *>(ptr2), 2, frame->data + in_bytes1, frame->bps, frame->data_len - in_bytes1);
}
ring_advance_write_idx(s->far_end_ringbuf.get(), samples * 2);
} else {
ring_buffer_write(s->far_end_ringbuf.get(), frame->data, samples * 2);
}
}
struct audio_frame * echo_cancel(struct echo_cancellation *s, struct audio_frame *frame)
{
std::lock_guard lk(s->lock);
if(frame->ch_count != 1) {
static int prints = 0;
if(prints++ % 100 == 0)
error_msg(MOD_NAME "Echo cancellation needs 1 captured channel. Disabling echo cancellation.\n"
"Use '--audio-capture-channels 1' parameter to capture single channel.\n");
return frame;
}
if(frame->sample_rate != s->frame.sample_rate ||
frame->bps != s->frame.bps) {
reconfigure_echo(s, frame->sample_rate, frame->bps);
}
int in_frame_samples = frame->data_len / frame->bps;
int ringbuf_free_samples = ring_get_available_write_size(s->near_end_ringbuf.get()) / 2;
if(in_frame_samples > ringbuf_free_samples){
in_frame_samples = ringbuf_free_samples;
log_msg(LOG_LEVEL_WARNING, MOD_NAME "Near end ringbuf overflow\n");
}
if(s->next_expected_near < steady_clock::now()){
/* It is possible that the capture thread starts late or
* freezes, which could create an unwanted delay between far
* and near ends. To partially protect against this, drop the
* contents of far end buffer, when the last frame arrived more
* than 1s ago.
*/
auto diff = steady_clock::now() - s->next_expected_near;
long long delay = std::chrono::duration_cast<std::chrono::microseconds>(diff).count();
log_msg(LOG_LEVEL_WARNING, MOD_NAME "Near samples late by %lldus\n", delay);
int current = ring_get_current_size(s->far_end_ringbuf.get());
//drop only whole frames
current = (current / SAMPLES_PER_FRAME) * SAMPLES_PER_FRAME;
ring_advance_read_idx(s->far_end_ringbuf.get(), current);
}
s->next_expected_near = steady_clock::now() + std::chrono::seconds(1);
if(frame->bps != 2){
//Need to change bps, put whole incoming frame into ringbuf
void *ptr1;
int size1;
void *ptr2;
int size2;
ring_get_write_regions(s->near_end_ringbuf.get(), in_frame_samples * 2,
&ptr1, &size1, &ptr2, &size2);
int in_bytes1 = (size1 / 2) * frame->bps;
change_bps(static_cast<char *>(ptr1), 2, frame->data, frame->bps, in_bytes1);
if(ptr2){
change_bps(static_cast<char *>(ptr2), 2, frame->data + in_bytes1, frame->bps, frame->data_len - in_bytes1);
}
ring_advance_write_idx(s->near_end_ringbuf.get(), in_frame_samples * 2);
} else {
ring_buffer_write(s->near_end_ringbuf.get(), frame->data, frame->data_len);
}
size_t near_end_samples = ring_get_current_size(s->near_end_ringbuf.get()) / 2;
size_t far_end_samples = ring_get_current_size(s->far_end_ringbuf.get()) / 2;
if(far_end_samples < near_end_samples){
log_msg(LOG_LEVEL_INFO, MOD_NAME "Not enough far end samples (%zu near, %zu far)\n", near_end_samples, far_end_samples);
//The delay between far end and near end will always be at least
//recorded frame length
s->prefill = in_frame_samples + s->requested_delay;
}
size_t frames_to_process = near_end_samples / SAMPLES_PER_FRAME;
if(!frames_to_process){
return nullptr;
}
size_t out_size = frames_to_process * SAMPLES_PER_FRAME * 2;
assert(static_cast<size_t>(s->frame.max_size) >= out_size);
s->frame.data_len = out_size;
audio_frame *res = &s->frame;
spx_int16_t *out_ptr = (spx_int16_t *)(void *) s->frame.data;
for(size_t i = 0; i < frames_to_process; i++){
spx_int16_t near_arr[SAMPLES_PER_FRAME];
spx_int16_t far_arr[SAMPLES_PER_FRAME];
const void *export_channels[] = {near_arr, far_arr, out_ptr, nullptr};
if(far_end_samples >= SAMPLES_PER_FRAME){
ring_buffer_read(s->far_end_ringbuf.get(), reinterpret_cast<char *>(far_arr), SAMPLES_PER_FRAME * 2);
ring_buffer_read(s->near_end_ringbuf.get(), reinterpret_cast<char *>(near_arr), SAMPLES_PER_FRAME * 2);
speex_echo_cancellation(s->echo_state.get(), near_arr, far_arr, out_ptr);
far_end_samples -= SAMPLES_PER_FRAME;
} else {
ring_buffer_read(s->near_end_ringbuf.get(), reinterpret_cast<char *>(out_ptr), SAMPLES_PER_FRAME * 2);
export_channels[0] = out_ptr;
export_channels[1] = out_ptr;
export_channels[2] = out_ptr;
}
if(s->exporter){
audio_export_raw_ch(s->exporter.get(), export_channels, SAMPLES_PER_FRAME);
}
out_ptr += SAMPLES_PER_FRAME;
}
return res;
}