X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fvisuals%2Fanimated-image%2Fimage-cache.h;h=1d385c8ea00261a26d320e9bb4a542efed1057d1;hb=refs%2Fchanges%2F76%2F236076%2F13;hp=1a7ae75efb53c5b62be1c38cd9d22c3436568e0a;hpb=01db027faaf245de80dfee0928fbd6f72360f7bd;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/visuals/animated-image/image-cache.h b/dali-toolkit/internal/visuals/animated-image/image-cache.h index 1a7ae75..1d385c8 100644 --- a/dali-toolkit/internal/visuals/animated-image/image-cache.h +++ b/dali-toolkit/internal/visuals/animated-image/image-cache.h @@ -2,7 +2,7 @@ #define DALI_TOOLKIT_INTERNAL_IMAGE_CACHE_H /* - * Copyright (c) 2017 Samsung Electronics Co., Ltd. + * Copyright (c) 2020 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -28,7 +28,7 @@ namespace Toolkit namespace Internal { -class ImageCache +class ImageCache : public TextureManager::LifecycleObserver { public: /** @@ -46,7 +46,7 @@ public: struct UrlStore { - TextureManager::TextureId mTextureId; + TextureManager::TextureId mTextureId = TextureManager::INVALID_TEXTURE_ID; std::string mUrl; }; @@ -79,11 +79,22 @@ public: virtual TextureSet FirstFrame() = 0; /** - * Get the next frame. If it's not ready, this will trigger the + * Get the Nth frame. If it's not ready, this will trigger the * sending of FrameReady() when the image becomes ready. - * This will trigger the loading of the next batch. */ - virtual TextureSet NextFrame() = 0; + virtual TextureSet Frame( uint32_t frameIndex ) = 0; + + /** + * Get the interval of Nth frame. + */ + virtual uint32_t GetFrameInterval( uint32_t frameIndex ) = 0; + +private: + + /** + * Called before the texture manager is destroyed. + */ + void TextureManagerDestroyed() final; protected: TextureManager& mTextureManager; @@ -92,6 +103,7 @@ protected: unsigned int mUrlIndex; bool mWaitingForReadyFrame:1; bool mRequestingLoad:1; + bool mTextureManagerAlive:1; }; } //namespace Internal