mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-11 18:34:58 +01:00
BugFix Seek callback
Fixed seek to accept different input (target time, target percent, or hh:mm:ss) and add OSC target for HH MM SS MS
This commit is contained in:
@@ -990,6 +990,12 @@ void SessionVisitor::visit (PlayFastForward &c)
|
||||
xmlCurrent_->SetAttribute("duration", c.duration());
|
||||
}
|
||||
|
||||
void SessionVisitor::visit (Seek &c)
|
||||
{
|
||||
xmlCurrent_->SetAttribute("value", (uint64_t) c.value());
|
||||
xmlCurrent_->SetAttribute("bidirectional", c.bidirectional());
|
||||
}
|
||||
|
||||
void SessionVisitor::visit (SetAlpha &c)
|
||||
{
|
||||
xmlCurrent_->SetAttribute("alpha", c.value());
|
||||
|
||||
Reference in New Issue
Block a user