QList<QByteArray> aDumpFormats = QImageWriter::supportedImageFormats();
if (myDumpFormat.isEmpty() ||
(aDumpFormats.indexOf(theFormat) < 0 && myDumpFormat.compare("AVI") != 0)) {
- if (aDumpFormats.indexOf("JPEG"))
+ if (aDumpFormats.indexOf("JPEG") >= 0 ||
+ aDumpFormats.indexOf("jpeg") >= 0)
myDumpFormat = "JPEG";
else
myDumpFormat = aDumpFormats.at(0);
bool VISU_TimeAnimation::checkAVIMaker() const
{
QList<QByteArray> aDumpFormats = QImageWriter::supportedImageFormats();
- if (aDumpFormats.indexOf("JPEG") < 0) return false;
+ if (aDumpFormats.indexOf("JPEG") < 0 &&
+ aDumpFormats.indexOf("jpeg") < 0)
+ return false;
QString aCmd("which ");
aCmd += myAVIMaker;