- better checks for RTP packet + enable EVS codec + improve thread pool

This commit is contained in:
2025-02-03 11:51:11 +03:00
parent 5ce85e3a09
commit 7510ff5697
6 changed files with 54 additions and 42 deletions

View File

@@ -32,6 +32,11 @@ size_t thread_pool::size()
return this->tasks.size();
}
size_t thread_pool::threads()
{
return this->workers.size();
}
// the destructor joins all threads
thread_pool::~thread_pool()
{