mirror of
https://invent.kde.org/frameworks/kimageformats.git
synced 2025-05-28 00:30:23 -04:00
readtest: special handling for HEIF format
This commit is contained in:
parent
6821c29819
commit
64a43fb04f
@ -332,7 +332,12 @@ int main(int argc, char **argv)
|
|||||||
OptionTest optionTest;
|
OptionTest optionTest;
|
||||||
if (!optionTest.store(&inputReader)) {
|
if (!optionTest.store(&inputReader)) {
|
||||||
QTextStream(stdout) << "FAIL : " << fi.fileName() << ": error while reading options\n";
|
QTextStream(stdout) << "FAIL : " << fi.fileName() << ": error while reading options\n";
|
||||||
++failed;
|
if (format == "heif") {
|
||||||
|
// libheif + ffmpeg decoder is unable to load all HEIF files.
|
||||||
|
++skipped;
|
||||||
|
} else {
|
||||||
|
++failed;
|
||||||
|
}
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user