don't segregate disk cached frames by sequence

Allows disk cached frames to be re-used in any context if their hashes are
perfect matches.
This commit is contained in:
itsmattkc
2020-01-09 23:36:53 +11:00
parent 362cb9daef
commit ea42ca36f5
3 changed files with 16 additions and 5 deletions
+1 -1
View File
@@ -116,7 +116,7 @@ const QMap<rational, QByteArray> &VideoRenderFrameCache::time_hash_map() const
QString VideoRenderFrameCache::CachePathName(const QByteArray &hash) const
{
QDir this_cache_dir = QDir(GetMediaCacheLocation()).filePath(cache_id_);
QDir this_cache_dir = QDir(GetMediaCacheLocation());
this_cache_dir.mkpath(".");
QString filename = QStringLiteral("%1.exr").arg(QString(hash.toHex()));