mirror of
https://github.com/badaix/snapcast.git
synced 2025-07-08 20:27:38 +02:00
Configurable base/exp for software mixer
This commit is contained in:
parent
5df647d89e
commit
3b3632474c
4 changed files with 32 additions and 10 deletions
|
@ -114,6 +114,14 @@ static void split_left(const std::string& s, char delim, std::string& left, std:
|
|||
}
|
||||
|
||||
|
||||
static std::string split_left(const std::string& s, char delim, std::string& right)
|
||||
{
|
||||
std::string left;
|
||||
split_left(s, delim, left, right);
|
||||
return left;
|
||||
}
|
||||
|
||||
|
||||
|
||||
static std::vector<std::string>& split(const std::string& s, char delim, std::vector<std::string>& elems)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue