find starting number for image sequences automatically

This commit is contained in:
itsmattkc
2019-02-26 10:58:55 -08:00
parent 8ba58acbc3
commit 1ae3b877a1
7 changed files with 54 additions and 13 deletions
+11 -10
View File
@@ -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();
}