Mixer functions cleanup, new flatten 'Embed in new' session

This commit is contained in:
Bruno Herbelin
2022-03-22 00:20:41 +01:00
parent 3effdd1408
commit a80074dc21
9 changed files with 113 additions and 56 deletions

View File

@@ -350,6 +350,16 @@ void SessionGroupSource::init()
}
}
void SessionGroupSource::setSession (Session *s)
{
if (s) {
if ( session_ )
delete session_;
session_ = s;
resolution_ = s->frame()->resolution();
}
}
bool SessionGroupSource::import(Source *source)
{
bool ret = false;