diff --git a/Telegram/SourceFiles/lottie/lottie_animation.cpp b/Telegram/SourceFiles/lottie/lottie_animation.cpp index 0a97d8b49..108878298 100644 --- a/Telegram/SourceFiles/lottie/lottie_animation.cpp +++ b/Telegram/SourceFiles/lottie/lottie_animation.cpp @@ -107,6 +107,10 @@ int Animation::frameRate() const { return _frameRate; } +crl::time Animation::duration() const { + return (_endFrame - _startFrame) * crl::time(1000) / _frameRate; +} + void Animation::play(const PlaybackOptions &options) { _options = options; _started = crl::now();