various improvements to import process and project management

This commit is contained in:
itsmattkc
2019-07-01 15:40:09 -07:00
parent 8f6cb7a2cb
commit 0966b62f29
14 changed files with 104 additions and 20 deletions
+4 -1
View File
@@ -57,10 +57,13 @@ bool olive::ProbeMedia(Footage *f)
// TODO Some way of "attaching" the Footage to the Decoder without having to iterate through Decoders again at
// render time?
f->set_ready(true);
f->set_status(Footage::kReady);
return true;
}
}
// We aren't able to use this Footage
f->set_status(Footage::kInvalid);
return false;
}