ANI partial test and PIC test added

This commit is contained in:
Mirco Miranda
2022-09-26 15:43:20 +02:00
committed by Albert Astals Cid
parent c5f7ea7eac
commit 181eb253c6
9 changed files with 3 additions and 0 deletions

View File

@ -521,6 +521,9 @@ bool ANIHandler::canRead(QIODevice *device)
qWarning("ANIHandler::canRead() called with no device");
return false;
}
if (device->isSequential()) {
return false;
}
const QByteArray riffIntro = device->peek(12);