mirror of
https://invent.kde.org/frameworks/kimageformats.git
synced 2025-07-14 02:54:19 -04:00
avif: always indicate endless loop
avif does not support loops but endless loop was the behavior before 460085 was fixed, so a workaround is added. See also: https://github.com/AOMediaCodec/libavif/issues/347 CCBUG: 460085
This commit is contained in:
@ -1024,7 +1024,8 @@ int QAVIFHandler::loopCount() const
|
||||
return 0;
|
||||
}
|
||||
|
||||
return 1;
|
||||
// Endless loop to work around https://github.com/AOMediaCodec/libavif/issues/347
|
||||
return -1;
|
||||
}
|
||||
|
||||
QPointF QAVIFHandler::CompatibleChromacity(qreal chrX, qreal chrY)
|
||||
|
Reference in New Issue
Block a user