footage: check files for changes

This commit is contained in:
itsmattkc
2021-05-16 10:29:05 +10:00
parent a675e0ccbb
commit ba9ed99849
9 changed files with 44 additions and 30 deletions
+12 -1
View File
@@ -39,7 +39,18 @@ private:
};
using DecoderCache = RenderCache<Decoder::CodecStream, DecoderPtr>;
struct DecoderPair {
DecoderPair()
{
decoder = nullptr;
last_modified = 0;
}
DecoderPtr decoder;
qint64 last_modified;
};
using DecoderCache = RenderCache<Decoder::CodecStream, DecoderPair>;
using ShaderCache = RenderCache<QString, QVariant>;
}