2003-06-30 16:44:03 +04:00
|
|
|
/*
|
2003-07-19 01:02:29 +04:00
|
|
|
* Copyright 2003 John M Bell <jmb202@ecs.soton.ac.uk>
|
2004-10-05 03:54:42 +04:00
|
|
|
* Copyright 2004 Richard Wilson <not_ginger_matt@users.sourceforge.net>
|
Merged revisions 4345-4346,4350-4351,4389,4391,4395,4401-4403,4423,4485-4486 via svnmerge from
svn://semichrome.net/branches/dynis/netsurf
........
r4345 | dynis | 2008-06-15 18:37:23 -0500 (Sun, 15 Jun 2008) | 1 line
Move NetSurf's gifread.h to libnsgif
........
r4346 | dynis | 2008-06-15 18:38:38 -0500 (Sun, 15 Jun 2008) | 1 line
Remove NetSurf's gifread.c (replaced by libnsgif)
........
r4350 | dynis | 2008-06-15 18:57:17 -0500 (Sun, 15 Jun 2008) | 1 line
Added references to libnsgif where necessary; corrected function calls where callbacks were implemented
........
r4351 | dynis | 2008-06-15 19:00:33 -0500 (Sun, 15 Jun 2008) | 1 line
Updated Makefile to compile with libnsgif
........
r4389 | dynis | 2008-06-18 13:58:51 -0500 (Wed, 18 Jun 2008) | 1 line
Altered bitmap callback table name for gif images to avoid ambiguity when bmp image library is created
........
r4391 | dynis | 2008-06-18 14:08:39 -0500 (Wed, 18 Jun 2008) | 1 line
Updated netsurf branch to use new bitmap callback table structure name that was altered in libnsgif
........
r4395 | dynis | 2008-06-18 14:54:51 -0500 (Wed, 18 Jun 2008) | 1 line
Corrected param comments for bitmap_set_suspendable()
........
r4401 | dynis | 2008-06-18 18:39:50 -0500 (Wed, 18 Jun 2008) | 1 line
Added references to libnsbmp where necessary; corrected function calls where callbacks were implemented
........
r4402 | dynis | 2008-06-18 18:40:47 -0500 (Wed, 18 Jun 2008) | 1 line
Updated Makefile to compile with libnsbmp
........
r4403 | dynis | 2008-06-18 18:41:53 -0500 (Wed, 18 Jun 2008) | 1 line
Remove NetSurf's bmpread.c and bmpread.h (replaced by libnsbmp)
........
r4423 | dynis | 2008-06-22 14:21:30 -0500 (Sun, 22 Jun 2008) | 1 line
Correct a silly mistake in nsbmp_bitmap_create
........
r4485 | dynis | 2008-07-01 04:13:48 -0500 (Tue, 01 Jul 2008) | 1 line
Integrated the latest versions of libnsgif and libnsbmp into NetSurf
........
r4486 | dynis | 2008-07-01 05:27:10 -0500 (Tue, 01 Jul 2008) | 1 line
Altered bitmap functions to receive void pointers for proper utilisation of libnsgif and libnsbmp
........
svn path=/trunk/netsurf/; revision=5071
2008-08-12 07:49:34 +04:00
|
|
|
* Copyright 2008 Sean Fox <dyntryx@gmail.com>
|
2007-08-08 20:16:03 +04:00
|
|
|
*
|
|
|
|
* 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/>.
|
2003-06-05 17:24:28 +04:00
|
|
|
*/
|
|
|
|
|
2014-10-16 12:48:09 +04:00
|
|
|
/**
|
|
|
|
* \file
|
|
|
|
*
|
|
|
|
* Content for image/gif implementation
|
2008-08-24 19:44:29 +04:00
|
|
|
*
|
|
|
|
* All GIFs are dynamically decompressed using the routines that gifread.c
|
|
|
|
* provides. Whilst this allows support for progressive decoding, it is
|
|
|
|
* not implemented here as NetSurf currently does not provide such support.
|
|
|
|
*
|
|
|
|
* [rjw] - Sun 4th April 2004
|
|
|
|
*/
|
|
|
|
|
2003-06-05 17:24:28 +04:00
|
|
|
#include <assert.h>
|
|
|
|
#include <string.h>
|
2003-07-19 01:02:29 +04:00
|
|
|
#include <stdbool.h>
|
2003-06-05 17:24:28 +04:00
|
|
|
#include <stdlib.h>
|
2022-02-24 20:45:07 +03:00
|
|
|
|
|
|
|
#include <nsgif.h>
|
2011-09-05 03:50:14 +04:00
|
|
|
|
2016-04-20 01:20:29 +03:00
|
|
|
#include "utils/utils.h"
|
2007-05-31 02:39:54 +04:00
|
|
|
#include "utils/messages.h"
|
2014-10-16 12:48:09 +04:00
|
|
|
#include "utils/nsoption.h"
|
2016-05-30 13:23:32 +03:00
|
|
|
#include "netsurf/misc.h"
|
2016-05-27 01:01:03 +03:00
|
|
|
#include "netsurf/bitmap.h"
|
2016-06-06 10:59:23 +03:00
|
|
|
#include "netsurf/content.h"
|
|
|
|
#include "content/llcache.h"
|
2020-05-07 22:55:44 +03:00
|
|
|
#include "content/content.h"
|
2016-06-06 10:59:23 +03:00
|
|
|
#include "content/content_protected.h"
|
2020-05-07 22:55:44 +03:00
|
|
|
#include "content/content_factory.h"
|
2016-06-06 10:59:23 +03:00
|
|
|
#include "desktop/gui_internal.h"
|
2003-06-05 17:24:28 +04:00
|
|
|
|
2016-06-06 16:47:27 +03:00
|
|
|
#include "image/image.h"
|
|
|
|
#include "image/gif.h"
|
2014-03-08 18:13:27 +04:00
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
typedef struct gif_content {
|
2011-05-07 00:40:09 +04:00
|
|
|
struct content base;
|
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
nsgif_t *gif; /**< GIF animation data */
|
|
|
|
uint32_t current_frame; /**< current frame to display [0...(max-1)] */
|
|
|
|
} gif_content;
|
|
|
|
|
|
|
|
static inline nserror gif__nsgif_error_to_ns(nsgif_error gif_res)
|
|
|
|
{
|
|
|
|
nserror err;
|
|
|
|
|
|
|
|
switch (gif_res) {
|
|
|
|
case NSGIF_OK:
|
|
|
|
err = NSERROR_OK;
|
|
|
|
break;
|
|
|
|
case NSGIF_ERR_OOM:
|
|
|
|
err = NSERROR_NOMEM;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
err = NSERROR_GIF_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
2011-05-07 00:40:09 +04:00
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
return err;
|
|
|
|
}
|
2011-05-08 23:54:35 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback for libnsgif; forwards the call to bitmap_create()
|
|
|
|
*
|
|
|
|
* \param width width of image in pixels
|
|
|
|
* \param height width of image in pixels
|
|
|
|
* \return an opaque struct bitmap, or NULL on memory exhaustion
|
|
|
|
*/
|
2022-02-24 20:45:07 +03:00
|
|
|
static void *gif_bitmap_create(int width, int height)
|
2011-05-08 23:54:35 +04:00
|
|
|
{
|
2015-04-14 01:19:04 +03:00
|
|
|
return guit->bitmap->create(width, height, BITMAP_NEW);
|
2011-05-08 23:54:35 +04:00
|
|
|
}
|
Merged revisions 4345-4346,4350-4351,4389,4391,4395,4401-4403,4423,4485-4486 via svnmerge from
svn://semichrome.net/branches/dynis/netsurf
........
r4345 | dynis | 2008-06-15 18:37:23 -0500 (Sun, 15 Jun 2008) | 1 line
Move NetSurf's gifread.h to libnsgif
........
r4346 | dynis | 2008-06-15 18:38:38 -0500 (Sun, 15 Jun 2008) | 1 line
Remove NetSurf's gifread.c (replaced by libnsgif)
........
r4350 | dynis | 2008-06-15 18:57:17 -0500 (Sun, 15 Jun 2008) | 1 line
Added references to libnsgif where necessary; corrected function calls where callbacks were implemented
........
r4351 | dynis | 2008-06-15 19:00:33 -0500 (Sun, 15 Jun 2008) | 1 line
Updated Makefile to compile with libnsgif
........
r4389 | dynis | 2008-06-18 13:58:51 -0500 (Wed, 18 Jun 2008) | 1 line
Altered bitmap callback table name for gif images to avoid ambiguity when bmp image library is created
........
r4391 | dynis | 2008-06-18 14:08:39 -0500 (Wed, 18 Jun 2008) | 1 line
Updated netsurf branch to use new bitmap callback table structure name that was altered in libnsgif
........
r4395 | dynis | 2008-06-18 14:54:51 -0500 (Wed, 18 Jun 2008) | 1 line
Corrected param comments for bitmap_set_suspendable()
........
r4401 | dynis | 2008-06-18 18:39:50 -0500 (Wed, 18 Jun 2008) | 1 line
Added references to libnsbmp where necessary; corrected function calls where callbacks were implemented
........
r4402 | dynis | 2008-06-18 18:40:47 -0500 (Wed, 18 Jun 2008) | 1 line
Updated Makefile to compile with libnsbmp
........
r4403 | dynis | 2008-06-18 18:41:53 -0500 (Wed, 18 Jun 2008) | 1 line
Remove NetSurf's bmpread.c and bmpread.h (replaced by libnsbmp)
........
r4423 | dynis | 2008-06-22 14:21:30 -0500 (Sun, 22 Jun 2008) | 1 line
Correct a silly mistake in nsbmp_bitmap_create
........
r4485 | dynis | 2008-07-01 04:13:48 -0500 (Tue, 01 Jul 2008) | 1 line
Integrated the latest versions of libnsgif and libnsbmp into NetSurf
........
r4486 | dynis | 2008-07-01 05:27:10 -0500 (Tue, 01 Jul 2008) | 1 line
Altered bitmap functions to receive void pointers for proper utilisation of libnsgif and libnsbmp
........
svn path=/trunk/netsurf/; revision=5071
2008-08-12 07:49:34 +04:00
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
static nserror gif_create_gif_data(gif_content *c)
|
2011-05-07 00:40:09 +04:00
|
|
|
{
|
2022-02-24 20:45:07 +03:00
|
|
|
nsgif_error gif_res;
|
|
|
|
const nsgif_bitmap_cb_vt gif_bitmap_callbacks = {
|
|
|
|
.create = gif_bitmap_create,
|
|
|
|
.destroy = guit->bitmap->destroy,
|
|
|
|
.get_buffer = guit->bitmap->get_buffer,
|
|
|
|
.set_opaque = guit->bitmap->set_opaque,
|
|
|
|
.test_opaque = guit->bitmap->test_opaque,
|
|
|
|
.modified = guit->bitmap->modified
|
2015-04-14 01:19:04 +03:00
|
|
|
};
|
2011-05-07 00:40:09 +04:00
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
gif_res = nsgif_create(&gif_bitmap_callbacks, &c->gif);
|
|
|
|
if (gif_res != NSGIF_OK) {
|
|
|
|
nserror err = gif__nsgif_error_to_ns(gif_res);
|
|
|
|
content_broadcast_error(&c->base, err, NULL);
|
|
|
|
return err;
|
2011-05-07 00:40:09 +04:00
|
|
|
}
|
2022-02-24 20:45:07 +03:00
|
|
|
|
2011-05-07 00:40:09 +04:00
|
|
|
return NSERROR_OK;
|
|
|
|
}
|
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
static nserror gif_create(const content_handler *handler,
|
|
|
|
lwc_string *imime_type, const struct http_parameter *params,
|
2011-05-07 00:40:09 +04:00
|
|
|
llcache_handle *llcache, const char *fallback_charset,
|
|
|
|
bool quirks, struct content **c)
|
|
|
|
{
|
2022-02-24 20:45:07 +03:00
|
|
|
gif_content *result;
|
2011-05-07 00:40:09 +04:00
|
|
|
nserror error;
|
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
result = calloc(1, sizeof(gif_content));
|
2011-05-07 00:40:09 +04:00
|
|
|
if (result == NULL)
|
|
|
|
return NSERROR_NOMEM;
|
|
|
|
|
|
|
|
error = content__init(&result->base, handler, imime_type, params,
|
|
|
|
llcache, fallback_charset, quirks);
|
|
|
|
if (error != NSERROR_OK) {
|
2012-10-03 22:24:58 +04:00
|
|
|
free(result);
|
2011-05-07 00:40:09 +04:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
error = gif_create_gif_data(result);
|
2011-05-07 00:40:09 +04:00
|
|
|
if (error != NSERROR_OK) {
|
2012-10-03 22:24:58 +04:00
|
|
|
free(result);
|
2011-05-07 00:40:09 +04:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
*c = (struct content *) result;
|
|
|
|
|
|
|
|
return NSERROR_OK;
|
|
|
|
}
|
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
/**
|
|
|
|
* Scheduler callback. Performs any necessary animation.
|
|
|
|
*
|
|
|
|
* \param p The content to animate
|
|
|
|
*/
|
|
|
|
static void gif_animate_cb(void *p);
|
|
|
|
|
2011-05-08 23:54:35 +04:00
|
|
|
/**
|
|
|
|
* Performs any necessary animation.
|
|
|
|
*
|
|
|
|
* \param p The content to animate
|
|
|
|
*/
|
2022-02-24 20:45:07 +03:00
|
|
|
static nserror gif__animate(gif_content *gif, bool redraw)
|
2008-08-24 19:44:29 +04:00
|
|
|
{
|
2022-02-24 20:45:07 +03:00
|
|
|
nsgif_error gif_res;
|
|
|
|
nsgif_rect_t rect;
|
|
|
|
uint32_t delay;
|
|
|
|
uint32_t f;
|
|
|
|
|
|
|
|
gif_res = nsgif_frame_prepare(gif->gif, &rect, &delay, &f);
|
|
|
|
if (gif_res != NSGIF_OK) {
|
|
|
|
return gif__nsgif_error_to_ns(gif_res);
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
2011-05-08 23:54:35 +04:00
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
gif->current_frame = f;
|
|
|
|
|
2011-05-08 23:54:35 +04:00
|
|
|
/* Continue animating if we should */
|
2022-02-24 20:45:07 +03:00
|
|
|
if (nsoption_bool(animate_images) && delay != NSGIF_INFINITE) {
|
|
|
|
guit->misc->schedule(delay * 10, gif_animate_cb, gif);
|
2011-05-08 23:54:35 +04:00
|
|
|
}
|
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
if (redraw) {
|
|
|
|
union content_msg_data data;
|
2011-05-08 23:54:35 +04:00
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
/* area within gif to redraw */
|
|
|
|
data.redraw.x = rect.x0;
|
|
|
|
data.redraw.y = rect.y0;
|
|
|
|
data.redraw.width = rect.x1 - rect.x0;
|
|
|
|
data.redraw.height = rect.y1 - rect.y0;
|
|
|
|
|
|
|
|
content_broadcast(&gif->base, CONTENT_MSG_REDRAW, &data);
|
2011-05-08 23:54:35 +04:00
|
|
|
}
|
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
return NSERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void gif_animate_cb(void *p)
|
|
|
|
{
|
|
|
|
gif_content *gif = p;
|
|
|
|
|
|
|
|
gif__animate(gif, true);
|
2004-03-19 21:14:50 +03:00
|
|
|
}
|
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
static bool gif_convert(struct content *c)
|
2008-08-24 19:44:29 +04:00
|
|
|
{
|
2022-02-24 20:45:07 +03:00
|
|
|
gif_content *gif = (gif_content *) c;
|
|
|
|
const nsgif_info_t *gif_info;
|
2019-05-06 00:46:40 +03:00
|
|
|
const uint8_t *data;
|
2022-02-24 20:45:07 +03:00
|
|
|
nsgif_error gif_err;
|
|
|
|
nserror err;
|
2019-05-06 00:46:40 +03:00
|
|
|
size_t size;
|
2012-10-25 14:12:41 +04:00
|
|
|
char *title;
|
2004-04-25 03:42:32 +04:00
|
|
|
|
2008-08-24 16:40:35 +04:00
|
|
|
/* Get the animation */
|
2010-03-28 16:56:39 +04:00
|
|
|
data = content__get_source_data(c, &size);
|
|
|
|
|
2008-08-24 16:40:35 +04:00
|
|
|
/* Initialise the GIF */
|
2022-02-24 20:45:07 +03:00
|
|
|
gif_err = nsgif_data_scan(gif->gif, size, data);
|
|
|
|
if (gif_err != NSGIF_OK) {
|
|
|
|
err = gif__nsgif_error_to_ns(gif_err);
|
|
|
|
content_broadcast_error(c, err, nsgif_strerror(gif_err));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
gif_info = nsgif_get_info(gif->gif);
|
|
|
|
assert(gif_info != NULL);
|
2004-04-25 03:42:32 +04:00
|
|
|
|
2008-08-24 16:40:35 +04:00
|
|
|
/* Abort on bad GIFs */
|
2022-02-24 20:45:07 +03:00
|
|
|
if (gif_info->height == 0) {
|
|
|
|
err = gif__nsgif_error_to_ns(gif_err);
|
|
|
|
content_broadcast_error(c, err, "Zero height image.");
|
2004-06-11 00:41:26 +04:00
|
|
|
return false;
|
|
|
|
}
|
2004-05-09 20:12:24 +04:00
|
|
|
|
2012-10-25 14:12:41 +04:00
|
|
|
/* Store our content width, height and calculate size */
|
2022-02-24 20:45:07 +03:00
|
|
|
c->width = gif_info->width;
|
|
|
|
c->height = gif_info->height;
|
|
|
|
c->size += (gif_info->width * gif_info->height * 4) + 16 + 44;
|
2012-10-25 14:12:41 +04:00
|
|
|
|
|
|
|
/* set title text */
|
|
|
|
title = messages_get_buff("GIFTitle",
|
2012-10-24 21:22:45 +04:00
|
|
|
nsurl_access_leaf(llcache_handle_get_url(c->llcache)),
|
|
|
|
c->width, c->height);
|
2012-10-25 14:12:41 +04:00
|
|
|
if (title != NULL) {
|
|
|
|
content__set_title(c, title);
|
|
|
|
free(title);
|
|
|
|
}
|
2004-03-19 21:14:50 +03:00
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
err = gif__animate(gif, false);
|
|
|
|
if (err != NSERROR_OK) {
|
|
|
|
content_broadcast_error(c, NSERROR_GIF_ERROR, NULL);
|
|
|
|
return false;
|
|
|
|
}
|
2004-03-19 21:14:50 +03:00
|
|
|
|
2008-08-24 16:40:35 +04:00
|
|
|
/* Exit as a success */
|
2011-02-27 23:11:39 +03:00
|
|
|
content_set_ready(c);
|
|
|
|
content_set_done(c);
|
2011-08-31 16:12:41 +04:00
|
|
|
|
2008-03-10 15:41:41 +03:00
|
|
|
/* Done: update status bar */
|
|
|
|
content_set_status(c, "");
|
2004-06-11 00:41:26 +04:00
|
|
|
return true;
|
2003-06-05 17:24:28 +04:00
|
|
|
}
|
|
|
|
|
2011-05-08 23:54:35 +04:00
|
|
|
/**
|
|
|
|
* Updates the GIF bitmap to display the current frame
|
|
|
|
*
|
2015-06-19 11:07:31 +03:00
|
|
|
* \param gif The gif context to update.
|
2022-02-24 20:45:07 +03:00
|
|
|
* \return NSGIF_OK on success else apropriate error code.
|
2011-05-08 23:54:35 +04:00
|
|
|
*/
|
2022-02-24 20:45:07 +03:00
|
|
|
static nsgif_error gif_get_frame(gif_content *gif,
|
|
|
|
nsgif_bitmap_t **bitmap)
|
2008-08-24 19:44:29 +04:00
|
|
|
{
|
2022-02-24 20:45:07 +03:00
|
|
|
uint32_t current_frame = gif->current_frame;
|
2012-03-22 13:34:34 +04:00
|
|
|
if (!nsoption_bool(animate_images)) {
|
2011-05-08 23:54:35 +04:00
|
|
|
current_frame = 0;
|
2012-03-22 13:34:34 +04:00
|
|
|
}
|
2011-09-16 15:08:28 +04:00
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
return nsgif_frame_decode(gif->gif, current_frame, bitmap);
|
2011-05-08 23:54:35 +04:00
|
|
|
}
|
2004-03-18 00:05:44 +03:00
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
static bool gif_redraw(struct content *c, struct content_redraw_data *data,
|
2011-06-30 19:48:07 +04:00
|
|
|
const struct rect *clip, const struct redraw_context *ctx)
|
2008-08-24 19:44:29 +04:00
|
|
|
{
|
2022-02-24 20:45:07 +03:00
|
|
|
gif_content *gif = (gif_content *) c;
|
|
|
|
nsgif_bitmap_t *bitmap;
|
2009-06-30 17:02:23 +04:00
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
if (gif_get_frame(gif, &bitmap) != NSGIF_OK) {
|
|
|
|
return false;
|
2011-09-16 15:08:28 +04:00
|
|
|
}
|
2011-05-08 23:54:35 +04:00
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
return image_bitmap_plot(bitmap, data, clip, ctx);
|
2006-02-21 23:49:12 +03:00
|
|
|
}
|
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
static void gif_destroy(struct content *c)
|
2004-03-21 15:57:14 +03:00
|
|
|
{
|
2022-02-24 20:45:07 +03:00
|
|
|
gif_content *gif = (gif_content *) c;
|
2011-05-07 00:40:09 +04:00
|
|
|
|
2008-08-24 16:40:35 +04:00
|
|
|
/* Free all the associated memory buffers */
|
2022-02-24 20:45:07 +03:00
|
|
|
guit->misc->schedule(-1, gif_animate_cb, c);
|
|
|
|
nsgif_destroy(gif->gif);
|
2004-03-18 00:05:44 +03:00
|
|
|
}
|
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
static nserror gif_clone(const struct content *old, struct content **newc)
|
2010-04-04 16:41:19 +04:00
|
|
|
{
|
2022-02-24 20:45:07 +03:00
|
|
|
gif_content *gif;
|
2011-05-07 00:40:09 +04:00
|
|
|
nserror error;
|
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
gif = calloc(1, sizeof(gif_content));
|
2011-05-07 00:40:09 +04:00
|
|
|
if (gif == NULL)
|
|
|
|
return NSERROR_NOMEM;
|
|
|
|
|
|
|
|
error = content__clone(old, &gif->base);
|
|
|
|
if (error != NSERROR_OK) {
|
|
|
|
content_destroy(&gif->base);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2010-04-04 16:41:19 +04:00
|
|
|
/* Simply replay creation and conversion of content */
|
2022-02-24 20:45:07 +03:00
|
|
|
error = gif_create_gif_data(gif);
|
2011-05-07 00:40:09 +04:00
|
|
|
if (error != NSERROR_OK) {
|
|
|
|
content_destroy(&gif->base);
|
|
|
|
return error;
|
|
|
|
}
|
2010-04-04 16:41:19 +04:00
|
|
|
|
|
|
|
if (old->status == CONTENT_STATUS_READY ||
|
|
|
|
old->status == CONTENT_STATUS_DONE) {
|
2022-02-24 20:45:07 +03:00
|
|
|
if (gif_convert(&gif->base) == false) {
|
2011-05-07 00:40:09 +04:00
|
|
|
content_destroy(&gif->base);
|
|
|
|
return NSERROR_CLONE_FAILED;
|
|
|
|
}
|
2010-04-04 16:41:19 +04:00
|
|
|
}
|
|
|
|
|
2011-05-07 00:40:09 +04:00
|
|
|
*newc = (struct content *) gif;
|
|
|
|
|
|
|
|
return NSERROR_OK;
|
2010-04-04 16:41:19 +04:00
|
|
|
}
|
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
static void gif_add_user(struct content *c)
|
2015-10-31 17:32:22 +03:00
|
|
|
{
|
2022-02-24 20:45:07 +03:00
|
|
|
gif_content *gif = (gif_content *) c;
|
2015-10-31 17:32:22 +03:00
|
|
|
|
|
|
|
/* Ensure this content has already been converted.
|
|
|
|
* If it hasn't, the animation will start at the conversion phase instead. */
|
|
|
|
if (gif->gif == NULL) return;
|
|
|
|
|
|
|
|
if (content_count_users(c) == 1) {
|
|
|
|
/* First user, and content already converted, so start the animation. */
|
2022-02-24 20:45:07 +03:00
|
|
|
if (nsgif_reset(gif->gif) == NSGIF_OK) {
|
|
|
|
gif__animate(gif, true);
|
2015-10-31 17:32:22 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
static void gif_remove_user(struct content *c)
|
2015-10-31 17:32:22 +03:00
|
|
|
{
|
|
|
|
if (content_count_users(c) == 1) {
|
|
|
|
/* Last user is about to be removed from this content, so stop the animation. */
|
2022-02-24 20:45:07 +03:00
|
|
|
guit->misc->schedule(-1, gif_animate_cb, c);
|
2015-10-31 17:32:22 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
static nsgif_bitmap_t *gif_get_bitmap(
|
|
|
|
const struct content *c, void *context)
|
2011-08-31 16:12:41 +04:00
|
|
|
{
|
2022-02-24 20:45:07 +03:00
|
|
|
gif_content *gif = (gif_content *) c;
|
|
|
|
nsgif_bitmap_t *bitmap;
|
2011-08-31 16:12:41 +04:00
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
if (gif_get_frame(gif, &bitmap) != NSGIF_OK) {
|
|
|
|
return NULL;
|
2011-10-09 15:00:23 +04:00
|
|
|
}
|
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
return bitmap;
|
2011-08-31 16:12:41 +04:00
|
|
|
}
|
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
static content_type gif_content_type(void)
|
2011-05-07 00:40:09 +04:00
|
|
|
{
|
|
|
|
return CONTENT_IMAGE;
|
|
|
|
}
|
2010-04-04 16:41:19 +04:00
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
static bool gif_content_is_opaque(struct content *c)
|
2020-05-13 21:03:14 +03:00
|
|
|
{
|
2022-02-24 20:45:07 +03:00
|
|
|
gif_content *gif = (gif_content *) c;
|
|
|
|
nsgif_bitmap_t *bitmap;
|
2020-05-13 21:03:14 +03:00
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
if (gif_get_frame(gif, &bitmap) != NSGIF_OK) {
|
|
|
|
return false;
|
2020-05-13 21:03:14 +03:00
|
|
|
}
|
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
return guit->bitmap->get_opaque(bitmap);
|
2020-05-13 21:03:14 +03:00
|
|
|
}
|
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
static const content_handler gif_content_handler = {
|
|
|
|
.create = gif_create,
|
|
|
|
.data_complete = gif_convert,
|
|
|
|
.destroy = gif_destroy,
|
|
|
|
.redraw = gif_redraw,
|
|
|
|
.clone = gif_clone,
|
|
|
|
.add_user = gif_add_user,
|
|
|
|
.remove_user = gif_remove_user,
|
|
|
|
.get_internal = gif_get_bitmap,
|
|
|
|
.type = gif_content_type,
|
|
|
|
.is_opaque = gif_content_is_opaque,
|
2011-05-09 19:32:34 +04:00
|
|
|
.no_share = false,
|
2011-05-08 23:54:35 +04:00
|
|
|
};
|
2004-11-10 02:34:01 +03:00
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
static const char *gif_types[] = {
|
2011-08-27 12:43:51 +04:00
|
|
|
"image/gif"
|
|
|
|
};
|
2011-05-08 23:54:35 +04:00
|
|
|
|
2022-02-24 20:45:07 +03:00
|
|
|
CONTENT_FACTORY_REGISTER_TYPES(nsgif, gif_types, gif_content_handler);
|