find starting number for image sequences automatically
This commit is contained in:
+11
-10
@@ -27,16 +27,17 @@
|
||||
|
||||
#include "project/clip.h"
|
||||
|
||||
Footage::Footage() :
|
||||
ready(false),
|
||||
preview_gen(nullptr),
|
||||
invalid(false),
|
||||
in(0),
|
||||
out(0),
|
||||
speed(1.0),
|
||||
alpha_is_premultiplied(false),
|
||||
proxy(false)
|
||||
{
|
||||
Footage::Footage() {
|
||||
ready = (false);
|
||||
preview_gen = (nullptr);
|
||||
invalid = (false);
|
||||
in = (0);
|
||||
out = (0);
|
||||
speed = (1.0);
|
||||
alpha_is_premultiplied = (false);
|
||||
proxy = (false);
|
||||
start_number = 0;
|
||||
|
||||
ready_lock.lock();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user