diff options
author | Kurt Korbatits <kurt.korbatits@nokia.com> | 2010-06-10 03:46:34 (GMT) |
---|---|---|
committer | Kurt Korbatits <kurt.korbatits@nokia.com> | 2010-06-10 03:46:34 (GMT) |
commit | 558089fb21e7f388f9810c51abbd9bf3872b2178 (patch) | |
tree | 5467a2443fe5df0d39df16deff0f9ae7ebb6e7a3 /src/plugins/imageformats | |
parent | 04ba5e501b96f77b56d6cf49fe8fb059a256e1e7 (diff) | |
download | Qt-558089fb21e7f388f9810c51abbd9bf3872b2178.zip Qt-558089fb21e7f388f9810c51abbd9bf3872b2178.tar.gz Qt-558089fb21e7f388f9810c51abbd9bf3872b2178.tar.bz2 |
QMovie cpu usage up to 100%
Changed gif default frame rate from 0 to 100ms.
This is the same as what web browsers seem to be using.
Task-number:QTBUG-2441
Reviewed-by:Dmytro Poplavskiy
Diffstat (limited to 'src/plugins/imageformats')
-rw-r--r-- | src/plugins/imageformats/gif/qgifhandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/imageformats/gif/qgifhandler.cpp b/src/plugins/imageformats/gif/qgifhandler.cpp index 25d3dfa..56dac52 100644 --- a/src/plugins/imageformats/gif/qgifhandler.cpp +++ b/src/plugins/imageformats/gif/qgifhandler.cpp @@ -1026,7 +1026,7 @@ inline QRgb QGIFFormat::color(uchar index) const QGifHandler::QGifHandler() { gifFormat = new QGIFFormat; - nextDelay = 0; + nextDelay = 100; loopCnt = 1; frameNumber = -1; scanIsCached = false; |