New Reload source function

Generalize the reload of stream source to all types of sources. Enable OSC command to reload source.
This commit is contained in:
Bruno Herbelin
2023-11-14 11:12:21 +01:00
parent 7b9e71df40
commit 6735e5eaaa
13 changed files with 45 additions and 5 deletions

View File

@@ -112,7 +112,7 @@ FilteringProgram::FilteringProgram(const std::string &name, const std::string &f
}
FilteringProgram::FilteringProgram(const FilteringProgram &other) :
name_(other.name_), code_(other.code_), parameters_(other.parameters_), two_pass_filter_(other.two_pass_filter_)
name_(other.name_), code_(other.code_), two_pass_filter_(other.two_pass_filter_), parameters_(other.parameters_)
{
}