2 * Copyright (c) 2022 Samsung Electronics Co., Ltd.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
19 #include <dali/internal/imaging/common/webp-loading.h>
22 #ifdef DALI_WEBP_AVAILABLE
23 #include <webp/decode.h>
24 #include <webp/demux.h>
26 #if WEBP_DEMUX_ABI_VERSION > 0x0101
27 #define DALI_ANIMATED_WEBP_ENABLED 1
31 #include <dali/integration-api/debug.h>
32 #include <dali/public-api/images/pixel-data.h>
34 #include <dali/devel-api/threading/mutex.h>
35 #include <dali/internal/imaging/common/file-download.h>
36 #include <dali/internal/system/common/file-reader.h>
39 #include <sys/types.h>
44 #include <dali/devel-api/adaptor-framework/image-loading.h>
45 #include <dali/internal/imaging/common/pixel-buffer-impl.h>
47 typedef uint8_t WebPByteType;
57 #if defined(DEBUG_ENABLED)
58 Debug::Filter* gWebPLoadingLogFilter = Debug::Filter::New(Debug::NoLogging, false, "LOG_GIF_LOADING");
61 static constexpr int32_t INITIAL_INDEX = -1;
62 static constexpr size_t MAXIMUM_DOWNLOAD_IMAGE_SIZE = 50 * 1024 * 1024;
66 struct WebPLoading::Impl
69 Impl(const std::string& url, bool isLocalResource)
77 mLoadSucceeded(false),
78 mIsAnimatedImage(false),
79 mIsLocalResource(isLocalResource)
91 mLoadSucceeded(false),
92 mIsAnimatedImage(false),
93 mIsLocalResource(true)
97 bool LoadWebPInformation()
99 // Block to do not load this file again.
100 Mutex::ScopedLock lock(mMutex);
101 if(DALI_UNLIKELY(mLoadSucceeded))
103 return mLoadSucceeded;
106 #ifndef DALI_WEBP_AVAILABLE
107 // If the system doesn't support webp, loading will be failed.
109 mLoadSucceeded = false;
110 return mLoadSucceeded;
113 // mFrameCount will be 1 if the input image is non-animated image or animated image with single frame.
114 if(DALI_LIKELY(ReadWebPInformation()))
116 #ifdef DALI_ANIMATED_WEBP_ENABLED
119 WebPDataInit(&mWebPData);
120 mWebPData.size = mBufferSize;
121 mWebPData.bytes = mBuffer;
122 WebPAnimDecoderOptions webPAnimDecoderOptions;
123 WebPAnimDecoderOptionsInit(&webPAnimDecoderOptions);
124 webPAnimDecoderOptions.color_mode = MODE_RGBA;
125 mWebPAnimDecoder = WebPAnimDecoderNew(&mWebPData, &webPAnimDecoderOptions);
126 WebPAnimDecoderGetInfo(mWebPAnimDecoder, &mWebPAnimInfo);
127 mTimeStamp.assign(mWebPAnimInfo.frame_count, 0);
128 mFrameCount = mWebPAnimInfo.frame_count;
129 mImageSize = ImageDimensions(mWebPAnimInfo.canvas_width, mWebPAnimInfo.canvas_height);
132 #ifdef DALI_WEBP_AVAILABLE
133 if(!mIsAnimatedImage)
135 int32_t imageWidth, imageHeight;
136 if(WebPGetInfo(mBuffer, mBufferSize, &imageWidth, &imageHeight))
138 mImageSize = ImageDimensions(imageWidth, imageHeight);
142 mLoadSucceeded = true;
147 mLoadSucceeded = false;
148 DALI_LOG_ERROR("Image loading failed for: \"%s\".\n", mUrl.c_str());
151 return mLoadSucceeded;
154 bool ReadWebPInformation()
159 std::unique_ptr<Internal::Platform::FileReader> fileReader;
160 Dali::Vector<uint8_t> dataBuffer;
165 fileReader = std::make_unique<Internal::Platform::FileReader>(mUrl);
170 if(DALI_LIKELY(TizenPlatform::Network::DownloadRemoteFileIntoMemory(mUrl, dataBuffer, dataSize, MAXIMUM_DOWNLOAD_IMAGE_SIZE)))
172 mBufferSize = dataBuffer.Size();
173 if(DALI_LIKELY(mBufferSize > 0U))
175 // Open a file handle on the memory buffer:
176 fileReader = std::make_unique<Internal::Platform::FileReader>(dataBuffer, mBufferSize);
181 fp = fileReader->GetFile();
184 if(DALI_LIKELY(fp != nullptr))
186 if(DALI_LIKELY(!fseek(fp, 12, SEEK_SET)))
188 uint8_t mHeaderBuffer[5];
189 fread(mHeaderBuffer, sizeof(WebPByteType), 5, fp);
190 unsigned char VP8X[4] = {'V', 'P', '8', 'X'};
191 bool isExtended = true;
192 for(uint32_t i = 0; i < 4; ++i)
194 if(mHeaderBuffer[i] != VP8X[i])
202 unsigned char extension = mHeaderBuffer[4];
203 mIsAnimatedImage = ((extension >> 1) & 1) ? true : false;
209 if(DALI_UNLIKELY(fseek(fp, 0, SEEK_END) <= -1))
213 mBufferSize = ftell(fp);
216 if(DALI_LIKELY(!fseek(fp, 0, SEEK_SET)))
218 mBuffer = reinterpret_cast<WebPByteType*>(malloc(sizeof(WebPByteType) * mBufferSize));
219 mBufferSize = fread(mBuffer, sizeof(WebPByteType), mBufferSize, fp);
226 void ReleaseResource()
228 #ifdef DALI_ANIMATED_WEBP_ENABLED
231 if(&mWebPData != nullptr)
233 mWebPData.bytes = nullptr;
234 WebPDataInit(&mWebPData);
236 if(mWebPAnimDecoder != nullptr)
238 WebPAnimDecoderDelete(mWebPAnimDecoder);
239 mWebPAnimDecoder = nullptr;
243 if(mBuffer != nullptr)
245 free((void*)mBuffer);
250 // Moveable but not copyable
252 Impl(const Impl&) = delete;
253 Impl& operator=(const Impl&) = delete;
254 Impl(Impl&&) = default;
255 Impl& operator=(Impl&&) = default;
264 std::vector<uint32_t> mTimeStamp;
265 int32_t mLatestLoadedFrame{INITIAL_INDEX};
266 uint32_t mFrameCount;
268 // For the case the system doesn't support DALI_ANIMATED_WEBP_ENABLED
269 unsigned char* mBuffer;
270 uint32_t mBufferSize;
271 ImageDimensions mImageSize;
273 bool mIsAnimatedImage;
274 bool mIsLocalResource;
276 #ifdef DALI_ANIMATED_WEBP_ENABLED
277 WebPData mWebPData{0};
278 WebPAnimDecoder* mWebPAnimDecoder{nullptr};
279 WebPAnimInfo mWebPAnimInfo{0};
280 Dali::Devel::PixelBuffer mPreLoadedFrame{};
284 AnimatedImageLoadingPtr WebPLoading::New(const std::string& url, bool isLocalResource)
286 #ifndef DALI_ANIMATED_WEBP_ENABLED
287 DALI_LOG_ERROR("The system does not support Animated WebP format.\n");
289 return AnimatedImageLoadingPtr(new WebPLoading(url, isLocalResource));
292 AnimatedImageLoadingPtr WebPLoading::New(FILE* const fp)
294 #ifndef DALI_ANIMATED_WEBP_ENABLED
295 DALI_LOG_ERROR("The system does not support Animated WebP format.\n");
297 return AnimatedImageLoadingPtr(new WebPLoading(fp));
300 WebPLoading::WebPLoading(const std::string& url, bool isLocalResource)
301 : mImpl(new WebPLoading::Impl(url, isLocalResource))
305 WebPLoading::WebPLoading(FILE* const fp)
306 : mImpl(new WebPLoading::Impl(fp))
310 WebPLoading::~WebPLoading()
315 Dali::Devel::PixelBuffer WebPLoading::LoadFrame(uint32_t frameIndex)
317 Dali::Devel::PixelBuffer pixelBuffer;
319 // If WebP file is still not loaded, Load the information.
320 if(DALI_UNLIKELY(!mImpl->mLoadSucceeded))
322 if(DALI_UNLIKELY(!mImpl->LoadWebPInformation()))
324 mImpl->ReleaseResource();
329 // WebPDecodeRGBA is faster than to use demux API for loading non-animated image.
330 // If frame count is 1, use WebPDecodeRGBA api.
331 #ifdef DALI_WEBP_AVAILABLE
332 if(!mImpl->mIsAnimatedImage)
334 int32_t width, height;
335 if(DALI_LIKELY(WebPGetInfo(mImpl->mBuffer, mImpl->mBufferSize, &width, &height)))
337 WebPBitstreamFeatures features;
338 if(DALI_LIKELY(VP8_STATUS_NOT_ENOUGH_DATA != WebPGetFeatures(mImpl->mBuffer, mImpl->mBufferSize, &features)))
340 uint32_t channelNumber = (features.has_alpha) ? 4 : 3;
341 uint8_t* frameBuffer = nullptr;
342 if(channelNumber == 4)
344 frameBuffer = WebPDecodeRGBA(mImpl->mBuffer, mImpl->mBufferSize, &width, &height);
348 frameBuffer = WebPDecodeRGB(mImpl->mBuffer, mImpl->mBufferSize, &width, &height);
351 if(frameBuffer != nullptr)
353 Pixel::Format pixelFormat = (channelNumber == 4) ? Pixel::RGBA8888 : Pixel::RGB888;
354 int32_t bufferSize = width * height * Dali::Pixel::GetBytesPerPixel(pixelFormat);
355 Internal::Adaptor::PixelBufferPtr internal =
356 Internal::Adaptor::PixelBuffer::New(frameBuffer, bufferSize, width, height, width, pixelFormat);
357 pixelBuffer = Devel::PixelBuffer(internal.Get());
361 // The single frame resource should be released after loading.
362 mImpl->ReleaseResource();
366 #ifdef DALI_ANIMATED_WEBP_ENABLED
367 if(mImpl->mIsAnimatedImage && mImpl->mBuffer != nullptr)
369 Mutex::ScopedLock lock(mImpl->mMutex);
370 if(DALI_LIKELY(frameIndex < mImpl->mWebPAnimInfo.frame_count && mImpl->mLoadSucceeded))
372 DALI_LOG_INFO(gWebPLoadingLogFilter, Debug::Concise, "LoadFrame( frameIndex:%d )\n", frameIndex);
374 if(mImpl->mPreLoadedFrame && mImpl->mLatestLoadedFrame == static_cast<int32_t>(frameIndex))
376 pixelBuffer = mImpl->mPreLoadedFrame;
380 pixelBuffer = DecodeFrame(frameIndex);
382 mImpl->mPreLoadedFrame.Reset();
384 // If time stamp of next frame is unknown, load a frame more to know it.
385 if(frameIndex + 1 < mImpl->mWebPAnimInfo.frame_count && mImpl->mTimeStamp[frameIndex + 1] == 0u)
387 mImpl->mPreLoadedFrame = DecodeFrame(frameIndex + 1);
392 mImpl->ReleaseResource();
399 Dali::Devel::PixelBuffer WebPLoading::DecodeFrame(uint32_t frameIndex)
401 Dali::Devel::PixelBuffer pixelBuffer;
402 #ifdef DALI_ANIMATED_WEBP_ENABLED
403 if(mImpl->mLatestLoadedFrame > static_cast<int32_t>(frameIndex))
405 mImpl->mLatestLoadedFrame = INITIAL_INDEX;
406 WebPAnimDecoderReset(mImpl->mWebPAnimDecoder);
409 uint8_t* frameBuffer = nullptr;
410 int32_t timestamp = 0u;
411 for(; mImpl->mLatestLoadedFrame < static_cast<int32_t>(frameIndex);)
413 WebPAnimDecoderGetNext(mImpl->mWebPAnimDecoder, &frameBuffer, ×tamp);
414 mImpl->mTimeStamp[++mImpl->mLatestLoadedFrame] = timestamp;
417 if(frameBuffer != nullptr)
419 const int bufferSize = mImpl->mWebPAnimInfo.canvas_width * mImpl->mWebPAnimInfo.canvas_height * sizeof(uint32_t);
420 pixelBuffer = Dali::Devel::PixelBuffer::New(mImpl->mWebPAnimInfo.canvas_width, mImpl->mWebPAnimInfo.canvas_height, Dali::Pixel::RGBA8888);
421 memcpy(pixelBuffer.GetBuffer(), frameBuffer, bufferSize);
428 ImageDimensions WebPLoading::GetImageSize() const
430 if(DALI_UNLIKELY(!mImpl->mLoadSucceeded))
432 mImpl->LoadWebPInformation();
434 return mImpl->mImageSize;
437 uint32_t WebPLoading::GetImageCount() const
439 if(DALI_UNLIKELY(!mImpl->mLoadSucceeded))
441 mImpl->LoadWebPInformation();
443 return mImpl->mFrameCount;
446 uint32_t WebPLoading::GetFrameInterval(uint32_t frameIndex) const
448 if(DALI_UNLIKELY(!mImpl->mLoadSucceeded))
450 DALI_LOG_ERROR("WebP file is still not loaded, this frame interval could not be correct value.\n");
452 if(frameIndex >= GetImageCount())
454 DALI_LOG_ERROR("Input frameIndex exceeded frame count of the WebP.");
459 int32_t interval = 0u;
460 if(GetImageCount() == 1u)
464 else if(frameIndex + 1 == GetImageCount())
466 // For the interval between last frame and first frame, use last interval again.
467 interval = mImpl->mTimeStamp[frameIndex] - mImpl->mTimeStamp[frameIndex - 1];
471 interval = mImpl->mTimeStamp[frameIndex + 1] - mImpl->mTimeStamp[frameIndex];
474 if(DALI_UNLIKELY(interval < 0))
476 DALI_LOG_ERROR("This interval value is not correct, because the frame still hasn't ever been decoded.");
479 return static_cast<uint32_t>(interval);
483 std::string WebPLoading::GetUrl() const
488 bool WebPLoading::HasLoadingSucceeded() const
490 return mImpl->mLoadSucceeded;
493 } // namespace Adaptor
495 } // namespace Internal