summaryrefslogtreecommitdiff
path: root/image
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-04-21 14:03:02 +0100
committerVincent Sanders <vince@kyllikki.org>2015-04-21 14:03:02 +0100
commite7f9dbcb10594a46c559d0ae7c7ed26ede8af9a2 (patch)
tree169566f5cd387d5898254fc63f49f156020e4bf9 /image
parent19abe9bddfaeba06222ded85ca1e3430c4414354 (diff)
downloadnetsurf-e7f9dbcb10594a46c559d0ae7c7ed26ede8af9a2.tar.gz
netsurf-e7f9dbcb10594a46c559d0ae7c7ed26ede8af9a2.tar.bz2
Remove webp image handling
The bitmap and image handling interfaces have changed within NetSurf and the webp image handling has not been fixed up appropriately to cope. After discussion with the other developers it has been decided that the webp support is not worth the necessary development effort to rewrite and maintain. The webp format is not in wide usage and Mozilla, Microsoft and Apple have not adopted it. This means the removal will not adversely impact NetSurf. Resolves:2310
Diffstat (limited to 'image')
-rw-r--r--image/Makefile1
-rw-r--r--image/image.c7
-rw-r--r--image/webp.c229
-rw-r--r--image/webp.h28
4 files changed, 0 insertions, 265 deletions
diff --git a/image/Makefile b/image/Makefile
index 9992c5443..5851a1c43 100644
--- a/image/Makefile
+++ b/image/Makefile
@@ -10,7 +10,6 @@ S_IMAGE_$(NETSURF_USE_ROSPRITE) += nssprite.c
S_IMAGE_$(NETSURF_USE_PNG) += png.c
S_IMAGE_$(NETSURF_USE_NSSVG) += svg.c
S_IMAGE_$(NETSURF_USE_RSVG) += rsvg.c
-S_IMAGE_$(NETSURF_USE_WEBP) += webp.c
S_IMAGE_$(NETSURF_USE_VIDEO) += video.c
S_IMAGE := $(addprefix image/,$(S_IMAGE_YES))
diff --git a/image/image.c b/image/image.c
index 339f7751e..49dc2b8b9 100644
--- a/image/image.c
+++ b/image/image.c
@@ -34,7 +34,6 @@
#include "image/png.h"
#include "image/rsvg.h"
#include "image/svg.h"
-#include "image/webp.h"
#include "image/image.h"
/**
@@ -94,12 +93,6 @@ nserror image_init(void)
return error;
#endif
-#ifdef WITH_WEBP
- error = webp_init();
- if (error != NSERROR_OK)
- return error;
-#endif /* WITH_WEBP */
-
return NSERROR_OK;
}
diff --git a/image/webp.c b/image/webp.c
deleted file mode 100644
index fc4356c01..000000000
--- a/image/webp.c
+++ /dev/null
@@ -1,229 +0,0 @@
- /*
- * Copyright 2010 Chris Young <chris@unsatisfactorysoftware.co.uk>
- *
- * This file is part of NetSurf, http://www.netsurf-browser.org/
- *
- * NetSurf is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
- *
- * NetSurf is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-/** \file
- * Content for image/webp (libwebp implementation).
- *
- */
-
-#include <assert.h>
-#include <string.h>
-#include <stdlib.h>
-#include <webp/decode.h>
-#include "desktop/plotters.h"
-#include "image/bitmap.h"
-#include "content/content_protected.h"
-#include "utils/log.h"
-#include "utils/messages.h"
-#include "utils/utils.h"
-
-typedef struct webp_content
-{
- struct content base;
-
- struct bitmap *bitmap; /**< Created NetSurf bitmap */
-} webp_content;
-
-
-static nserror webp_create(const content_handler *handler,
- lwc_string *imime_type, const http_parameter *params,
- llcache_handle *llcache, const char *fallback_charset,
- bool quirks, struct content **c)
-{
- webp_content *webp;
- nserror error;
-
- webp = calloc(1, sizeof(webp_content));
- if (webp == NULL)
- return NSERROR_NOMEM;
-
- error = content__init(&webp->base, handler, imime_type, params,
- llcache, fallback_charset, quirks);
- if (error != NSERROR_OK) {
- free(webp);
- return error;
- }
-
- *c = (struct content *) webp;
-
- return NSERROR_OK;
-}
-
-/**
- * Convert a CONTENT_WEBP for display.
- *
- * No conversion is necessary. We merely read the WebP dimensions.
- */
-
-static bool webp_convert(struct content *c)
-{
- webp_content *webp = (webp_content *)c;
- union content_msg_data msg_data;
- const uint8_t *data;
- unsigned char *imagebuf = NULL;
- unsigned long size;
- int width = 0, height = 0;
- char *title;
- int res = 0;
- uint8_t *res_p = NULL;
-
- data = (uint8_t *)content__get_source_data(c, &size);
-
- res = WebPGetInfo(data, size, &width, &height);
- if (res == 0) {
- msg_data.error = messages_get("NoMemory");
- content_broadcast(c, CONTENT_MSG_ERROR, msg_data);
- return false;
- }
-
- webp->bitmap = bitmap_create(width, height, BITMAP_NEW | BITMAP_OPAQUE);
- if (!webp->bitmap) {
- msg_data.error = messages_get("NoMemory");
- content_broadcast(c, CONTENT_MSG_ERROR, msg_data);
- return false;
- }
-
- imagebuf = bitmap_get_buffer(webp->bitmap);
- if (!imagebuf) {
- msg_data.error = messages_get("NoMemory");
- content_broadcast(c, CONTENT_MSG_ERROR, msg_data);
- return false;
- }
- unsigned int row_width = bitmap_get_rowstride(webp->bitmap);
-
- res_p = WebPDecodeRGBAInto(data, size, imagebuf,
- row_width * height, row_width);
- if (res_p == NULL) {
- msg_data.error = messages_get("NoMemory");
- content_broadcast(c, CONTENT_MSG_ERROR, msg_data);
- return false;
- }
-
- c->width = width;
- c->height = height;
-
- /* set title */
- title = messages_get_buff("WebPTitle",
- nsurl_access_leaf(llcache_handle_get_url(c->llcache)),
- c->width, c->height);
- if (title != NULL) {
- content__set_title(c, title);
- free(title);
- }
-
- bitmap_modified(webp->bitmap);
-
- content_set_ready(c);
- content_set_done(c);
-
- content_set_status(c, "");
- return true;
-}
-
-
-/**
- * Destroy a CONTENT_WEBP and free all resources it owns.
- */
-
-static void webp_destroy(struct content *c)
-{
- webp_content *webp = (webp_content *)c;
-
- if (webp->bitmap != NULL)
- bitmap_destroy(webp->bitmap);
-}
-
-
-/**
- * Redraw a CONTENT_WEBP.
- */
-
-static bool webp_redraw(struct content *c, struct content_redraw_data *data,
- const struct rect *clip, const struct redraw_context *ctx)
-{
- webp_content *webp = (webp_content *)c;
- bitmap_flags_t flags = BITMAPF_NONE;
-
- if (data->repeat_x)
- flags |= BITMAPF_REPEAT_X;
- if (data->repeat_y)
- flags |= BITMAPF_REPEAT_Y;
-
- return ctx->plot->bitmap(data->x, data->y, data->width, data->height,
- webp->bitmap, data->background_colour, flags);
-}
-
-
-static nserror webp_clone(const struct content *old, struct content **newc)
-{
- webp_content *webp;
- nserror error;
-
- webp = calloc(1, sizeof(webp_content));
- if (webp == NULL)
- return NSERROR_NOMEM;
-
- error = content__clone(old, &webp->base);
- if (error != NSERROR_OK) {
- content_destroy(&webp->base);
- return error;
- }
-
- /* Simply replay convert */
- if (old->status == CONTENT_STATUS_READY ||
- old->status == CONTENT_STATUS_DONE) {
- if (webp_convert(&webp->base) == false) {
- content_destroy(&webp->base);
- return NSERROR_CLONE_FAILED;
- }
- }
-
- *newc = (struct content *) webp;
-
- return NSERROR_OK;
-}
-
-static void *webp_get_internal(const struct content *c, void *context)
-{
- webp_content *webp = (webp_content *)c;
-
- return webp->bitmap;
-}
-
-static content_type webp_content_type(void)
-{
- return CONTENT_IMAGE;
-}
-
-static const content_handler webp_content_handler = {
- .create = webp_create,
- .data_complete = webp_convert,
- .destroy = webp_destroy,
- .redraw = webp_redraw,
- .clone = webp_clone,
- .get_internal = webp_get_internal,
- .type = webp_content_type,
- .no_share = false,
-};
-
-static const char *webp_types[] = {
- "image/webp"
-};
-
-CONTENT_FACTORY_REGISTER_TYPES(webp, webp_types, webp_content_handler);
-
diff --git a/image/webp.h b/image/webp.h
deleted file mode 100644
index 0abfec8ec..000000000
--- a/image/webp.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * Copyright 2010 Chris Young <chris@unsatisfactorysoftware.co.uk>
- *
- * This file is part of NetSurf, http://www.netsurf-browser.org/
- *
- * NetSurf is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
- *
- * NetSurf is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-/** \file
- * Content for image/webp (libwebp interface).
- */
-
-#ifndef _NETSURF_WEBP_H_
-#define _NETSURF_WEBP_H_
-
-nserror webp_init(void);
-
-#endif