2002-12-21 21:07:16 +00:00
|
|
|
/*
|
|
|
|
MPlayer video driver for animated gif output
|
|
|
|
|
|
|
|
(C) 2002
|
|
|
|
|
|
|
|
Written by Joey Parrish <joey@nicewarrior.org>
|
|
|
|
Based on vo_directfb2.c
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This library 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
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this library; if not, write to the
|
2006-09-01 12:11:11 +00:00
|
|
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
Boston, MA 02110-1301 USA.
|
2002-12-21 21:07:16 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* Notes:
|
|
|
|
* when setting output framerate, frames will be ignored as needed
|
|
|
|
* to achieve the desired rate. no frames will be duplicated.
|
|
|
|
*
|
|
|
|
* output framerate can be specified as a float
|
|
|
|
* value now, instead of just an int.
|
2002-05-12 01:07:25 +00:00
|
|
|
*
|
2002-12-21 21:07:16 +00:00
|
|
|
* adjustments will be made to both the frame drop cycle and the
|
|
|
|
* delay per frame to achieve the desired output framerate.
|
2002-05-12 01:07:25 +00:00
|
|
|
*
|
2002-12-21 21:07:16 +00:00
|
|
|
* time values are in centiseconds, because that's
|
|
|
|
* what the gif spec uses for it's delay values.
|
|
|
|
*
|
|
|
|
* preinit looks for arguments in one of the following formats (in this order):
|
|
|
|
* fps:filename -- sets the framerate (float) and output file
|
|
|
|
* fps -- sets the framerate (float), default file out.gif
|
|
|
|
* filename -- defaults to 5 fps, sets output file
|
|
|
|
* (none) -- defaults to 5 fps, output file out.gif
|
2002-05-12 01:07:25 +00:00
|
|
|
*
|
2002-12-21 21:07:16 +00:00
|
|
|
* trying to put the filename before the framerate will result in the
|
|
|
|
* entire argument being interpretted as the filename.
|
2002-05-12 01:07:25 +00:00
|
|
|
*/
|
|
|
|
|
2002-12-21 21:07:16 +00:00
|
|
|
#include <gif_lib.h>
|
|
|
|
|
2002-05-12 01:07:25 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2002-12-21 21:07:16 +00:00
|
|
|
#include <unistd.h>
|
2002-05-12 01:07:25 +00:00
|
|
|
|
|
|
|
#include "config.h"
|
2005-10-10 12:59:36 +00:00
|
|
|
#include "subopt-helper.h"
|
2002-05-12 01:07:25 +00:00
|
|
|
#include "video_out.h"
|
|
|
|
#include "video_out_internal.h"
|
2005-10-10 12:59:36 +00:00
|
|
|
#include "mp_msg.h"
|
2002-05-12 01:07:25 +00:00
|
|
|
|
2002-12-21 21:07:16 +00:00
|
|
|
#define MPLAYER_VERSION 0.90
|
2003-03-06 04:59:20 +00:00
|
|
|
#define VO_GIF_REVISION 6
|
2002-05-12 01:07:25 +00:00
|
|
|
|
2007-12-02 14:06:03 +00:00
|
|
|
static const vo_info_t info = {
|
2002-12-21 21:07:16 +00:00
|
|
|
"animated GIF output",
|
2002-05-12 01:07:25 +00:00
|
|
|
"gif89a",
|
2002-12-21 21:07:16 +00:00
|
|
|
"Joey Parrish joey@nicewarrior.org",
|
2002-05-12 01:07:25 +00:00
|
|
|
""
|
|
|
|
};
|
|
|
|
|
2007-12-02 14:39:15 +00:00
|
|
|
const LIBVO_EXTERN(gif89a)
|
2002-11-11 15:22:10 +00:00
|
|
|
|
2002-05-12 01:07:25 +00:00
|
|
|
|
2002-12-21 21:07:16 +00:00
|
|
|
// how many frames per second we are aiming for during output.
|
|
|
|
static float target_fps;
|
|
|
|
// default value for output fps.
|
|
|
|
static const float default_fps = 5.00;
|
|
|
|
// the ideal gif delay per frame.
|
|
|
|
static float ideal_delay;
|
|
|
|
// the ideal time thus far.
|
|
|
|
static float ideal_time;
|
|
|
|
// actual time thus far.
|
|
|
|
static int real_time;
|
|
|
|
// nominal framedrop cycle length in frames
|
|
|
|
static float frame_cycle;
|
|
|
|
// position in the framedrop cycle
|
|
|
|
static int cycle_pos;
|
|
|
|
// adjustment of the framedrop cycle
|
|
|
|
static float frame_adj;
|
|
|
|
|
|
|
|
// the output width and height
|
|
|
|
static uint32_t img_width;
|
|
|
|
static uint32_t img_height;
|
|
|
|
// image data for slice rendering
|
2002-12-30 22:24:20 +00:00
|
|
|
static uint8_t *slice_data = NULL;
|
2002-12-21 21:07:16 +00:00
|
|
|
// reduced image data for flip_page
|
|
|
|
static uint8_t *reduce_data = NULL;
|
|
|
|
// reduced color map for flip_page
|
|
|
|
static ColorMapObject *reduce_cmap = NULL;
|
|
|
|
|
|
|
|
// a pointer to the gif structure
|
|
|
|
static GifFileType *new_gif = NULL;
|
|
|
|
// a string to contain the filename of the output gif
|
|
|
|
static char *gif_filename = NULL;
|
|
|
|
// the default output filename
|
|
|
|
#define DEFAULT_FILE "out.gif"
|
2002-05-12 01:07:25 +00:00
|
|
|
|
2005-10-10 12:59:36 +00:00
|
|
|
static opt_t subopts[] = {
|
|
|
|
{"output", OPT_ARG_MSTRZ, &gif_filename, NULL, 0},
|
|
|
|
{"fps", OPT_ARG_FLOAT, &target_fps, NULL, 0},
|
|
|
|
{NULL, 0, NULL, NULL, 0}
|
|
|
|
};
|
|
|
|
|
2005-08-05 01:24:37 +00:00
|
|
|
static int preinit(const char *arg)
|
2002-12-21 21:07:16 +00:00
|
|
|
{
|
|
|
|
target_fps = 0;
|
2005-10-10 12:59:36 +00:00
|
|
|
|
|
|
|
if (subopt_parse(arg, subopts) != 0) {
|
|
|
|
mp_msg(MSGT_VO, MSGL_FATAL,
|
|
|
|
"\n-vo gif89a command line help:\n"
|
|
|
|
"Example: mplayer -vo gif89a:output=file.gif:fps=4.9\n"
|
|
|
|
"\nOptions:\n"
|
|
|
|
" output=<filename>\n"
|
|
|
|
" Specify the output file. The default is out.gif.\n"
|
|
|
|
" fps=<rate>\n"
|
|
|
|
" Specify the target framerate. The default is 5.0.\n"
|
|
|
|
"\n");
|
|
|
|
return -1;
|
2002-12-21 21:07:16 +00:00
|
|
|
}
|
2002-05-12 01:07:25 +00:00
|
|
|
|
2005-10-10 12:59:36 +00:00
|
|
|
if (target_fps > vo_fps)
|
|
|
|
target_fps = vo_fps; // i will not duplicate frames.
|
|
|
|
|
|
|
|
if (target_fps <= 0) {
|
2002-12-21 21:07:16 +00:00
|
|
|
target_fps = default_fps;
|
2005-10-10 12:59:36 +00:00
|
|
|
mp_msg(MSGT_VO, MSGL_V, "GIF89a: default, %.2f fps\n", target_fps);
|
2002-12-21 21:07:16 +00:00
|
|
|
} else {
|
2005-10-10 12:59:36 +00:00
|
|
|
mp_msg(MSGT_VO, MSGL_V, "GIF89a: output fps forced to %.2f\n", target_fps);
|
2002-12-21 21:07:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ideal_delay = 100 / target_fps; // in centiseconds
|
|
|
|
frame_cycle = vo_fps / target_fps;
|
|
|
|
// we make one output frame every (frame_cycle) frames, on average.
|
|
|
|
|
|
|
|
if (gif_filename == NULL) {
|
|
|
|
gif_filename = strdup(DEFAULT_FILE);
|
2005-10-10 12:59:36 +00:00
|
|
|
mp_msg(MSGT_VO, MSGL_V, "GIF89a: default, file \"%s\"\n", gif_filename);
|
2002-12-21 21:07:16 +00:00
|
|
|
} else {
|
2005-10-10 12:59:36 +00:00
|
|
|
mp_msg(MSGT_VO, MSGL_V, "GIF89a: file forced to \"%s\"\n", gif_filename);
|
2002-12-21 21:07:16 +00:00
|
|
|
}
|
|
|
|
|
2005-10-10 12:59:36 +00:00
|
|
|
mp_msg(MSGT_VO, MSGL_DBG2, "GIF89a: Preinit OK\n");
|
2002-12-21 21:07:16 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-08-05 01:24:37 +00:00
|
|
|
static int config(uint32_t s_width, uint32_t s_height, uint32_t d_width,
|
2005-04-18 15:52:38 +00:00
|
|
|
uint32_t d_height, uint32_t flags, char *title,
|
2002-12-21 21:07:16 +00:00
|
|
|
uint32_t format)
|
|
|
|
{
|
2002-05-13 20:47:03 +00:00
|
|
|
#ifdef HAVE_GIF_4
|
2002-12-21 21:07:16 +00:00
|
|
|
// these are control blocks for the gif looping extension.
|
|
|
|
char LB1[] = "NETSCAPE2.0";
|
|
|
|
char LB2[] = { 1, 0, 0 };
|
2002-05-13 20:47:03 +00:00
|
|
|
#endif
|
2002-05-12 01:07:25 +00:00
|
|
|
|
2006-01-12 20:04:36 +00:00
|
|
|
mp_msg(MSGT_VO, MSGL_DBG2, "GIF89a: Config entered [%dx%d]\n", s_width,s_height);
|
2005-10-10 12:59:36 +00:00
|
|
|
mp_msg(MSGT_VO, MSGL_DBG2, "GIF89a: With requested format: %s\n", vo_format_name(format));
|
2002-12-21 21:07:16 +00:00
|
|
|
|
|
|
|
// save these for later.
|
|
|
|
img_width = s_width;
|
|
|
|
img_height = s_height;
|
|
|
|
|
|
|
|
// multiple configs without uninit are not allowed.
|
|
|
|
// this is because config opens a new gif file.
|
|
|
|
if (vo_config_count > 0) {
|
2005-10-10 12:59:36 +00:00
|
|
|
mp_msg(MSGT_VO, MSGL_V, "GIF89a: Reconfigure attempted.\n");
|
2002-12-21 21:07:16 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2002-12-30 22:24:20 +00:00
|
|
|
// reconfigure need not be a fatal error, so return 0.
|
2002-12-21 21:07:16 +00:00
|
|
|
// multiple configs without uninit will result in two
|
|
|
|
// movies concatenated in one gif file. the output
|
|
|
|
// gif will have the dimensions of the first movie.
|
|
|
|
|
2003-03-06 04:59:20 +00:00
|
|
|
if (format != IMGFMT_RGB24) {
|
2005-10-10 12:59:36 +00:00
|
|
|
mp_msg(MSGT_VO, MSGL_ERR, "GIF89a: Error - given unsupported colorspace.\n");
|
2003-03-06 04:59:20 +00:00
|
|
|
return 1;
|
2002-12-21 21:07:16 +00:00
|
|
|
}
|
2003-03-06 04:59:20 +00:00
|
|
|
|
2002-12-21 21:07:16 +00:00
|
|
|
// the EGifSetGifVersion line causes segfaults in certain
|
|
|
|
// earlier versions of libungif. i don't know exactly which,
|
|
|
|
// but certainly in all those before v4. if you have problems,
|
|
|
|
// you need to upgrade your gif library.
|
2002-05-13 20:47:03 +00:00
|
|
|
#ifdef HAVE_GIF_4
|
2002-12-21 21:07:16 +00:00
|
|
|
EGifSetGifVersion("89a");
|
2002-05-13 20:47:03 +00:00
|
|
|
#else
|
2005-10-10 12:59:36 +00:00
|
|
|
mp_msg(MSGT_VO, MSGL_ERR, "GIF89a: Your version of libungif needs to be upgraded.\n");
|
|
|
|
mp_msg(MSGT_VO, MSGL_ERR, "GIF89a: Some functionality has been disabled.\n");
|
2002-05-13 20:47:03 +00:00
|
|
|
#endif
|
2002-12-21 21:07:16 +00:00
|
|
|
|
|
|
|
new_gif = EGifOpenFileName(gif_filename, 0);
|
|
|
|
if (new_gif == NULL) {
|
2005-10-10 12:59:36 +00:00
|
|
|
mp_msg(MSGT_VO, MSGL_ERR, "GIF89a: error opening file \"%s\" for output.\n", gif_filename);
|
2002-12-21 21:07:16 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2003-03-06 04:59:20 +00:00
|
|
|
slice_data = malloc(img_width * img_height * 3);
|
|
|
|
if (slice_data == NULL) {
|
2005-10-10 12:59:36 +00:00
|
|
|
mp_msg(MSGT_VO, MSGL_ERR, "GIF89a: malloc failed.\n");
|
2003-03-06 04:59:20 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2002-12-21 21:07:16 +00:00
|
|
|
reduce_data = malloc(img_width * img_height);
|
|
|
|
if (reduce_data == NULL) {
|
2005-10-10 12:59:36 +00:00
|
|
|
free(slice_data); slice_data = NULL;
|
|
|
|
mp_msg(MSGT_VO, MSGL_ERR, "GIF89a: malloc failed.\n");
|
2002-12-21 21:07:16 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
reduce_cmap = MakeMapObject(256, NULL);
|
|
|
|
if (reduce_cmap == NULL) {
|
2005-10-10 12:59:36 +00:00
|
|
|
free(slice_data); slice_data = NULL;
|
|
|
|
free(reduce_data); reduce_data = NULL;
|
|
|
|
mp_msg(MSGT_VO, MSGL_ERR, "GIF89a: malloc failed.\n");
|
2002-12-21 21:07:16 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// initialize the delay and framedrop variables.
|
|
|
|
ideal_time = 0;
|
|
|
|
real_time = 0;
|
|
|
|
cycle_pos = 0;
|
|
|
|
frame_adj = 0;
|
|
|
|
|
|
|
|
// set the initial width and height info.
|
|
|
|
EGifPutScreenDesc(new_gif, s_width, s_height, 256, 0, reduce_cmap);
|
2002-05-13 20:47:03 +00:00
|
|
|
#ifdef HAVE_GIF_4
|
2002-12-21 21:07:16 +00:00
|
|
|
// version 3 of libungif does not support multiple control blocks.
|
|
|
|
// looping requires multiple control blocks.
|
|
|
|
// therefore, looping is only enabled for v4 and up.
|
|
|
|
EGifPutExtensionFirst(new_gif, 0xFF, 11, LB1);
|
|
|
|
EGifPutExtensionLast(new_gif, 0, 3, LB2);
|
2002-05-13 20:47:03 +00:00
|
|
|
#endif
|
2002-12-21 21:07:16 +00:00
|
|
|
|
2005-10-10 12:59:36 +00:00
|
|
|
mp_msg(MSGT_VO, MSGL_DBG2, "GIF89a: Config finished.\n");
|
2002-12-21 21:07:16 +00:00
|
|
|
return 0;
|
2002-05-12 01:07:25 +00:00
|
|
|
}
|
|
|
|
|
2002-12-21 21:07:16 +00:00
|
|
|
// we do not draw osd.
|
|
|
|
void draw_osd() {}
|
2002-11-06 23:54:29 +00:00
|
|
|
|
2002-12-21 21:07:16 +00:00
|
|
|
// we do not handle events.
|
|
|
|
static void check_events(void) {}
|
2002-05-12 01:07:25 +00:00
|
|
|
|
2002-12-21 21:07:16 +00:00
|
|
|
static int gif_reduce(int width, int height, uint8_t *src, uint8_t *dst, GifColorType *colors)
|
|
|
|
{
|
|
|
|
unsigned char Ra[width * height];
|
|
|
|
unsigned char Ga[width * height];
|
|
|
|
unsigned char Ba[width * height];
|
|
|
|
unsigned char *R, *G, *B;
|
|
|
|
int size = 256;
|
|
|
|
int i;
|
2002-05-12 01:07:25 +00:00
|
|
|
|
2002-12-21 21:07:16 +00:00
|
|
|
R = Ra; G = Ga; B = Ba;
|
|
|
|
for (i = 0; i < width * height; i++)
|
|
|
|
{
|
|
|
|
*R++ = *src++;
|
|
|
|
*G++ = *src++;
|
|
|
|
*B++ = *src++;
|
|
|
|
}
|
|
|
|
|
|
|
|
R = Ra; G = Ga; B = Ba;
|
|
|
|
return QuantizeBuffer(width, height, &size, R, G, B, dst, colors);
|
2002-05-12 01:07:25 +00:00
|
|
|
}
|
|
|
|
|
2002-12-21 21:07:16 +00:00
|
|
|
static void flip_page(void)
|
2002-05-13 20:47:03 +00:00
|
|
|
{
|
2002-12-21 21:07:16 +00:00
|
|
|
char CB[4]; // control block
|
|
|
|
int delay = 0;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
cycle_pos++;
|
|
|
|
if (cycle_pos < frame_cycle - frame_adj)
|
|
|
|
return; // we are skipping this frame
|
|
|
|
|
|
|
|
// quantize the image
|
2003-03-06 04:59:20 +00:00
|
|
|
ret = gif_reduce(img_width, img_height, slice_data, reduce_data, reduce_cmap->Colors);
|
2002-12-21 21:07:16 +00:00
|
|
|
if (ret == GIF_ERROR) {
|
2005-10-10 12:59:36 +00:00
|
|
|
mp_msg(MSGT_VO, MSGL_ERR, "GIF89a: Quantize failed.\n");
|
2002-12-21 21:07:16 +00:00
|
|
|
return;
|
|
|
|
}
|
2002-05-13 20:47:03 +00:00
|
|
|
|
2002-12-21 21:07:16 +00:00
|
|
|
// calculate frame delays and frame skipping
|
|
|
|
ideal_time += ideal_delay;
|
|
|
|
delay = (int)(ideal_time - real_time);
|
|
|
|
real_time += delay;
|
|
|
|
frame_adj += cycle_pos;
|
|
|
|
frame_adj -= frame_cycle;
|
|
|
|
cycle_pos = 0;
|
|
|
|
|
|
|
|
// set up the delay control block
|
|
|
|
CB[0] = (char)(delay >> 8);
|
|
|
|
CB[1] = (char)(delay & 0xff);
|
|
|
|
CB[2] = 0;
|
|
|
|
CB[3] = 0;
|
|
|
|
|
|
|
|
// put the control block with delay info
|
|
|
|
EGifPutExtension(new_gif, 0xF9, 0x04, CB);
|
|
|
|
// put the image description
|
|
|
|
EGifPutImageDesc(new_gif, 0, 0, img_width, img_height, 0, reduce_cmap);
|
|
|
|
// put the image itself
|
|
|
|
EGifPutLine(new_gif, reduce_data, img_width * img_height);
|
2002-05-12 01:07:25 +00:00
|
|
|
}
|
|
|
|
|
2005-08-05 01:24:37 +00:00
|
|
|
static int draw_frame(uint8_t *src[])
|
2002-05-12 01:07:25 +00:00
|
|
|
{
|
2003-03-06 04:59:20 +00:00
|
|
|
return 1;
|
2002-05-12 01:07:25 +00:00
|
|
|
}
|
|
|
|
|
2005-08-05 01:24:37 +00:00
|
|
|
static int draw_slice(uint8_t *src[], int stride[], int w, int h, int x, int y)
|
2002-05-12 01:07:25 +00:00
|
|
|
{
|
2003-03-06 04:59:20 +00:00
|
|
|
uint8_t *dst, *frm;
|
|
|
|
int i;
|
2002-12-30 22:24:20 +00:00
|
|
|
dst = slice_data + (img_width * y + x) * 3;
|
2003-03-06 04:59:20 +00:00
|
|
|
frm = src[0];
|
|
|
|
for (i = 0; i < h; i++) {
|
|
|
|
memcpy(dst, frm, w * 3);
|
|
|
|
dst += (img_width * 3);
|
|
|
|
frm += stride[0];
|
|
|
|
}
|
2002-12-21 21:07:16 +00:00
|
|
|
return 0;
|
2002-05-12 01:07:25 +00:00
|
|
|
}
|
|
|
|
|
2005-08-05 01:24:37 +00:00
|
|
|
static int query_format(uint32_t format)
|
2002-05-12 01:07:25 +00:00
|
|
|
{
|
2003-03-06 04:59:20 +00:00
|
|
|
if (format == IMGFMT_RGB24)
|
|
|
|
return VFCAP_CSP_SUPPORTED | VFCAP_CSP_SUPPORTED_BY_HW | VFCAP_TIMER | VFCAP_ACCEPT_STRIDE;
|
2002-12-21 21:07:16 +00:00
|
|
|
return 0;
|
2002-05-12 01:07:25 +00:00
|
|
|
}
|
|
|
|
|
2005-08-05 01:24:37 +00:00
|
|
|
static int control(uint32_t request, void *data, ...)
|
2002-05-12 01:07:25 +00:00
|
|
|
{
|
2002-12-21 21:07:16 +00:00
|
|
|
if (request == VOCTRL_QUERY_FORMAT) {
|
|
|
|
return query_format(*((uint32_t*)data));
|
|
|
|
}
|
2003-03-06 04:59:20 +00:00
|
|
|
if (request == VOCTRL_DUPLICATE_FRAME) {
|
|
|
|
flip_page();
|
|
|
|
return VO_TRUE;
|
|
|
|
}
|
2002-12-21 21:07:16 +00:00
|
|
|
return VO_NOTIMPL;
|
2002-05-12 01:07:25 +00:00
|
|
|
}
|
|
|
|
|
2002-12-21 21:07:16 +00:00
|
|
|
static void uninit(void)
|
2002-05-12 01:07:25 +00:00
|
|
|
{
|
2005-10-10 12:59:36 +00:00
|
|
|
mp_msg(MSGT_VO, MSGL_DBG2, "GIF89a: Uninit entered\n");
|
2002-05-12 01:07:25 +00:00
|
|
|
|
2002-12-21 21:07:16 +00:00
|
|
|
if (new_gif != NULL) {
|
|
|
|
char temp[256];
|
|
|
|
// comment the gif and close it
|
|
|
|
snprintf(temp, 256, "MPlayer gif output v%2.2f-%d (c) %s\r\n",
|
|
|
|
MPLAYER_VERSION, VO_GIF_REVISION,
|
|
|
|
"joey@nicewarrior.org");
|
|
|
|
EGifPutComment(new_gif, temp);
|
|
|
|
EGifCloseFile(new_gif); // also frees gif storage space.
|
2002-05-12 01:07:25 +00:00
|
|
|
}
|
|
|
|
|
2002-12-21 21:07:16 +00:00
|
|
|
// free our allocated ram
|
|
|
|
if (gif_filename != NULL) free(gif_filename);
|
2002-12-30 22:24:20 +00:00
|
|
|
if (slice_data != NULL) free(slice_data);
|
2002-12-21 21:07:16 +00:00
|
|
|
if (reduce_data != NULL) free(reduce_data);
|
|
|
|
if (reduce_cmap != NULL) FreeMapObject(reduce_cmap);
|
2002-05-12 01:07:25 +00:00
|
|
|
|
2002-12-21 21:07:16 +00:00
|
|
|
// set the pointers back to null.
|
|
|
|
new_gif = NULL;
|
|
|
|
gif_filename = NULL;
|
2002-12-30 22:24:20 +00:00
|
|
|
slice_data = NULL;
|
2002-12-21 21:07:16 +00:00
|
|
|
reduce_data = NULL;
|
|
|
|
reduce_cmap = NULL;
|
2002-05-12 01:07:25 +00:00
|
|
|
}
|
|
|
|
|