[rt 69245] eliminate unused i_gif_opts type
authorTony Cook <tony@develop-help.com>
Mon, 10 Oct 2011 12:34:48 +0000 (23:34 +1100)
committerTony Cook <tony@develop-help.com>
Mon, 10 Oct 2011 12:34:48 +0000 (23:34 +1100)
Changes
imdatatypes.h

diff --git a/Changes b/Changes
index 5efea952216e9c342792009dfa1382eea61e7dd5..7000b29003c14ee93f045eec08edf6de538ff901 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,13 @@
 Imager release history.  Older releases can be found in Changes.old
 
+Imager 0.86 - unreleased
+===========
+
+Bug fixes:
+
+ - eliminate unused i_gif_opts type (clean-up)
+   https://rt.cpan.org/Ticket/Display.html?id=69245
+
 Imager 0.85_01 - 10 Oct 2011
 ==============
 
index d760d4baebe29bf32977cfc269745c0491c2c4c1..d6d6a4a49da099f003824217f10965d26e871ab6 100644 (file)
@@ -608,10 +608,6 @@ typedef enum i_ord_dith_tag
   od_custom /* custom 8x8 map */
 } i_ord_dith;
 
-typedef struct i_gif_pos_tag {
-  int x, y;
-} i_gif_pos;
-
 /* passed into i_writegif_gen() to control quantization */
 typedef struct i_quantize_tag {
   int version;
@@ -654,45 +650,6 @@ typedef struct i_quantize_tag {
   /* version 2 members after here */
 } i_quantize;
 
-typedef struct i_gif_opts {
-  /* each image has a local color map */
-  int each_palette;
-
-  /* images are interlaced */
-  int interlace;
-
-  /* time for which image is displayed 
-   (in 1/100 seconds)
-   default: 0
-  */
-  int delay_count;
-  int *delays;
-
-  /* user input flags 
-     default: 0
-   */
-  int user_input_count;
-  char *user_input_flags;
-
-  /* disposal
-     default: 0 */
-  int disposal_count;
-  char *disposal;
-
-  /* this is added to the color table when we make an image transparent */
-  i_color tran_color;
-
-  /* image positions */
-  int position_count;
-  i_gif_pos *positions;
-
-  /* Netscape loop extension - number of loops */
-  int loop_count;
-
-  /* should be eliminate unused colors? */
-  int eliminate_unused;
-} i_gif_opts;
-
 /* distance measures used by some filters */
 enum {
   i_dmeasure_euclidean = 0,