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

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 813 B

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 B

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 B

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 117 B

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);