summaryrefslogtreecommitdiff
path: root/platform
diff options
context:
space:
mode:
authorBruno de Oliveira Abinader <bruno@mapbox.com>2016-01-18 17:08:55 +0200
committerBruno de Oliveira Abinader <bruno@mapbox.com>2016-01-19 16:06:36 +0200
commita361ce47a19d37b96b48cd605c62c5ab79bba462 (patch)
tree269a1ee9996d9a69a398438ae42fbe16c78025b1 /platform
parentd004bb275ae3ea60bb6c2febd6fa22f1f51c3993 (diff)
downloadqtlocation-mapboxgl-a361ce47a19d37b96b48cd605c62c5ab79bba462.tar.gz
[linux] Added WebP tile support
- Android support is currently disabled due to a libwebp build issue. - iOS and OS X support will appear after the next Mapbox iOS SDK release. Related: #https://github.com/mapbox/mapbox-gl-native/issues/2354
Diffstat (limited to 'platform')
-rw-r--r--platform/default/image.cpp20
-rw-r--r--platform/default/webp_reader.cpp27
2 files changed, 44 insertions, 3 deletions
diff --git a/platform/default/image.cpp b/platform/default/image.cpp
index bf8071af5c..71fb5414b3 100644
--- a/platform/default/image.cpp
+++ b/platform/default/image.cpp
@@ -70,6 +70,10 @@ std::string encodePNG(const PremultipliedImage& pre) {
return result;
}
+#if !defined(__ANDROID__) && !defined(__APPLE__)
+PremultipliedImage decodeWebP(const uint8_t*, size_t);
+#endif // !defined(__ANDROID__) && !defined(__APPLE__)
+
PremultipliedImage decodePNG(const uint8_t*, size_t);
PremultipliedImage decodeJPEG(const uint8_t*, size_t);
@@ -77,16 +81,26 @@ PremultipliedImage decodeImage(const std::string& string) {
const uint8_t* data = reinterpret_cast<const uint8_t*>(string.data());
const size_t size = string.size();
+#if !defined(__ANDROID__) && !defined(__APPLE__)
+ if (size >= 12) {
+ uint32_t riff_magic = (data[0] << 24) | (data[1] << 16) | (data[2] << 8) | data[3];
+ uint32_t webp_magic = (data[8] << 24) | (data[9] << 16) | (data[10] << 8) | data[11];
+ if (riff_magic == 0x52494646 && webp_magic == 0x57454250) {
+ return decodeWebP(data, size);
+ }
+ }
+#endif // !defined(__ANDROID__) && !defined(__APPLE__)
+
if (size >= 4) {
- unsigned int magic = (data[0] << 24) | (data[1] << 16) | (data[2] << 8) | data[3];
+ uint32_t magic = (data[0] << 24) | (data[1] << 16) | (data[2] << 8) | data[3];
if (magic == 0x89504E47U) {
return decodePNG(data, size);
}
}
if (size >= 2) {
- unsigned int magic = ((data[0] << 8) | data[1]) & 0xffff;
- if (magic == 0xffd8) {
+ uint16_t magic = ((data[0] << 8) | data[1]) & 0xffff;
+ if (magic == 0xFFD8) {
return decodeJPEG(data, size);
}
}
diff --git a/platform/default/webp_reader.cpp b/platform/default/webp_reader.cpp
new file mode 100644
index 0000000000..37d23da110
--- /dev/null
+++ b/platform/default/webp_reader.cpp
@@ -0,0 +1,27 @@
+#include <mbgl/util/image.hpp>
+#include <mbgl/util/premultiply.hpp>
+#include <mbgl/platform/log.hpp>
+
+extern "C"
+{
+#include <webp/decode.h>
+}
+
+namespace mbgl {
+
+PremultipliedImage decodeWebP(const uint8_t* data, size_t size) {
+ int width = 0, height = 0;
+ if (WebPGetInfo(data, size, &width, &height) == 0) {
+ throw std::runtime_error("failed to retrieve WebP basic header information");
+ }
+
+ std::unique_ptr<uint8_t[]> webp(WebPDecodeRGBA(data, size, &width, &height));
+ if (!webp) {
+ throw std::runtime_error("failed to decode WebP data");
+ }
+
+ UnassociatedImage image { size_t(width), size_t(height), std::move(webp) };
+ return util::premultiply(std::move(image));
+}
+
+} // namespace mbgl