diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2022-01-08 08:04:13 +0100 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2022-01-08 08:04:58 +0100 |
commit | 77de7efc550c7c1fadcfb32cb43b8cfc3070e22a (patch) | |
tree | ac7d7ba1d64b7265f38e3f3e42cdcca3b0a8b39a /fiv-io.c | |
parent | 35c1f2c8ba43f6e8c567046247395042f775f80e (diff) | |
download | fiv-77de7efc550c7c1fadcfb32cb43b8cfc3070e22a.tar.gz fiv-77de7efc550c7c1fadcfb32cb43b8cfc3070e22a.tar.xz fiv-77de7efc550c7c1fadcfb32cb43b8cfc3070e22a.zip |
Bump Wuffs, clean up image loading
Diffstat (limited to 'fiv-io.c')
-rw-r--r-- | fiv-io.c | 11 |
1 files changed, 3 insertions, 8 deletions
@@ -2377,15 +2377,10 @@ fiv_io_open_from_data(const char *data, size_t len, const gchar *uri, ? open_libjpeg_enhanced(data, len, profile, error) : open_libjpeg_turbo(data, len, profile, error); break; + case WUFFS_BASE__FOURCC__WEBP: + surface = open_libwebp(data, len, uri, profile, error); + break; default: - // TODO(p): https://github.com/google/wuffs/commit/4c04ac1 - if ((surface = open_libwebp(data, len, uri, profile, error))) - break; - if (error) { - g_debug("%s", (*error)->message); - g_clear_error(error); - } - #ifdef HAVE_LIBRAW // --------------------------------------------------------- if ((surface = open_libraw(data, len, error))) break; |