allow concurrent decoders for different blocks

This commit is contained in:
itsmattkc
2022-06-01 10:03:33 -07:00
parent eb9b1850ae
commit 8939a3aa66
4 changed files with 16 additions and 7 deletions
+1 -1
View File
@@ -335,7 +335,7 @@ void Decoder::UpdateLastAccessed()
uint qHash(Decoder::CodecStream stream, uint seed)
{
return qHash(stream.filename(), seed) ^ qHash(stream.stream(), seed);
return qHash(stream.filename(), seed) ^ qHash(stream.stream(), seed) ^ qHash(stream.block(), seed);
}
}