libavcodec/gif.c
93481fe5
 /*
406792e7
  * Copyright (c) 2000 Fabrice Bellard
  * Copyright (c) 2002 Francois Revol
  * Copyright (c) 2006 Baptiste Coudurier
93481fe5
  *
ac9362c5
  * first version by Francois Revol <revol@free.fr>
  *
93481fe5
  * This file is part of FFmpeg.
  *
  * FFmpeg 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.1 of the License, or (at your option) any later version.
  *
  * FFmpeg 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 FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
91a5b4d4
 /**
  * @file
  * GIF encoder
  * @see http://www.w3.org/Graphics/GIF/spec-gif89a.txt
93481fe5
  */
 
5dd5985e
 #define BITSTREAM_WRITER_LE
0f1250b7
 #include "libavutil/opt.h"
e1b35bdd
 #include "libavutil/imgutils.h"
93481fe5
 #include "avcodec.h"
 #include "bytestream.h"
577fed3b
 #include "internal.h"
f38e4507
 #include "lzw.h"
f5ede48f
 #include "gif.h"
6d32ec6c
 
b2755007
 #include "put_bits.h"
93481fe5
 
7f9f771e
 typedef struct GIFContext {
0f1250b7
     const AVClass *class;
f38e4507
     LZWState *lzw;
     uint8_t *buf;
03d83ba3
     int buf_size;
e065e8a4
     AVFrame *last_frame;
0f1250b7
     int flags;
e1b35bdd
     uint32_t palette[AVPALETTE_COUNT];  ///< local reference palette for !pal8
3cab173e
     int palette_loaded;
     int transparent_index;
     uint8_t *pal_exdata;
e1b35bdd
     uint8_t *tmpl;                      ///< temporary line buffer
e4e8632a
 } GIFContext;
 
0f1250b7
 enum {
     GF_OFFSETTING = 1<<0,
e1b35bdd
     GF_TRANSDIFF  = 1<<1,
0f1250b7
 };
 
e1b35bdd
 static int pick_palette_entry(const uint8_t *buf, int linesize, int w, int h)
 {
     int histogram[AVPALETTE_COUNT] = {0};
     int x, y, i;
 
     for (y = 0; y < h; y++) {
         for (x = 0; x < w; x++)
             histogram[buf[x]]++;
         buf += linesize;
     }
     for (i = 0; i < FF_ARRAY_ELEMS(histogram); i++)
         if (!histogram[i])
             return i;
     return -1;
 }
 
f38e4507
 static int gif_image_write_image(AVCodecContext *avctx,
                                  uint8_t **bytestream, uint8_t *end,
635389cc
                                  const uint32_t *palette,
e1b35bdd
                                  const uint8_t *buf, const int linesize,
                                  AVPacket *pkt)
93481fe5
 {
f38e4507
     GIFContext *s = avctx->priv_data;
e1b35bdd
     int len = 0, height = avctx->height, width = avctx->width, x, y;
3cab173e
     int x_start = 0, y_start = 0, trans = s->transparent_index;
7a258ef9
     int honor_transparency = (s->flags & GF_TRANSDIFF) && s->last_frame && !palette;
93481fe5
     const uint8_t *ptr;
 
e065e8a4
     /* Crop image */
0f1250b7
     if ((s->flags & GF_OFFSETTING) && s->last_frame && !palette) {
e065e8a4
         const uint8_t *ref = s->last_frame->data[0];
         const int ref_linesize = s->last_frame->linesize[0];
         int x_end = avctx->width  - 1,
             y_end = avctx->height - 1;
 
         /* skip common lines */
90a56ebb
         while (y_start < y_end) {
e065e8a4
             if (memcmp(ref + y_start*ref_linesize, buf + y_start*linesize, width))
                 break;
             y_start++;
         }
         while (y_end > y_start) {
             if (memcmp(ref + y_end*ref_linesize, buf + y_end*linesize, width))
                 break;
             y_end--;
         }
         height = y_end + 1 - y_start;
 
         /* skip common columns */
90a56ebb
         while (x_start < x_end) {
e065e8a4
             int same_column = 1;
f9240ec0
             for (y = y_start; y <= y_end; y++) {
e065e8a4
                 if (ref[y*ref_linesize + x_start] != buf[y*linesize + x_start]) {
                     same_column = 0;
                     break;
                 }
             }
             if (!same_column)
                 break;
             x_start++;
         }
         while (x_end > x_start) {
             int same_column = 1;
f9240ec0
             for (y = y_start; y <= y_end; y++) {
e065e8a4
                 if (ref[y*ref_linesize + x_end] != buf[y*linesize + x_end]) {
                     same_column = 0;
                     break;
                 }
             }
             if (!same_column)
                 break;
             x_end--;
         }
         width = x_end + 1 - x_start;
 
         av_log(avctx, AV_LOG_DEBUG,"%dx%d image at pos (%d;%d) [area:%dx%d]\n",
                width, height, x_start, y_start, avctx->width, avctx->height);
     }
 
635389cc
     /* image block */
f5ede48f
     bytestream_put_byte(bytestream, GIF_IMAGE_SEPARATOR);
e065e8a4
     bytestream_put_le16(bytestream, x_start);
     bytestream_put_le16(bytestream, y_start);
     bytestream_put_le16(bytestream, width);
     bytestream_put_le16(bytestream, height);
635389cc
 
     if (!palette) {
7b972d82
         bytestream_put_byte(bytestream, 0x00); /* flags */
635389cc
     } else {
         unsigned i;
         bytestream_put_byte(bytestream, 1<<7 | 0x7); /* flags */
         for (i = 0; i < AVPALETTE_COUNT; i++) {
             const uint32_t v = palette[i];
             bytestream_put_be24(bytestream, v);
         }
     }
93481fe5
 
3cab173e
     if (honor_transparency && trans < 0) {
e1b35bdd
         trans = pick_palette_entry(buf + y_start*linesize + x_start,
                                    linesize, width, height);
         if (trans < 0) { // TODO, patch welcome
             av_log(avctx, AV_LOG_DEBUG, "No available color, can not use transparency\n");
         } else {
3cab173e
             uint8_t *pal_exdata = s->pal_exdata;
             if (!pal_exdata)
                 pal_exdata = av_packet_new_side_data(pkt, AV_PKT_DATA_PALETTE, AVPALETTE_SIZE);
e1b35bdd
             if (!pal_exdata)
                 return AVERROR(ENOMEM);
             memcpy(pal_exdata, s->palette, AVPALETTE_SIZE);
53efb2fa
             pal_exdata[trans*4 + 3*!HAVE_BIGENDIAN] = 0x00;
e1b35bdd
         }
     }
3cab173e
     if (trans < 0)
         honor_transparency = 0;
e1b35bdd
 
93481fe5
     bytestream_put_byte(bytestream, 0x08);
 
03d83ba3
     ff_lzw_encode_init(s->lzw, s->buf, s->buf_size,
f38e4507
                        12, FF_LZW_GIF, put_bits);
93481fe5
 
e065e8a4
     ptr = buf + y_start*linesize + x_start;
3cab173e
     if (honor_transparency) {
e1b35bdd
         const int ref_linesize = s->last_frame->linesize[0];
         const uint8_t *ref = s->last_frame->data[0] + y_start*ref_linesize + x_start;
 
         for (y = 0; y < height; y++) {
             memcpy(s->tmpl, ptr, width);
             for (x = 0; x < width; x++)
                 if (ref[x] == ptr[x])
                     s->tmpl[x] = trans;
             len += ff_lzw_encode(s->lzw, s->tmpl, width);
             ptr += linesize;
             ref += ref_linesize;
         }
     } else {
f5ede48f
         for (y = 0; y < height; y++) {
             len += ff_lzw_encode(s->lzw, ptr, width);
             ptr += linesize;
         }
e1b35bdd
     }
f38e4507
     len += ff_lzw_encode_flush(s->lzw, flush_put_bits);
 
     ptr = s->buf;
     while (len > 0) {
         int size = FFMIN(255, len);
         bytestream_put_byte(bytestream, size);
         if (end - *bytestream < size)
             return -1;
         bytestream_put_buffer(bytestream, ptr, size);
         ptr += size;
         len -= size;
93481fe5
     }
     bytestream_put_byte(bytestream, 0x00); /* end of image block */
     return 0;
 }
 
98a6fff9
 static av_cold int gif_encode_init(AVCodecContext *avctx)
93481fe5
 {
     GIFContext *s = avctx->priv_data;
 
e03ddbcd
     if (avctx->width > 65535 || avctx->height > 65535) {
         av_log(avctx, AV_LOG_ERROR, "GIF does not support resolutions above 65535x65535\n");
8694e871
         return AVERROR(EINVAL);
e03ddbcd
     }
40cf1bba
 #if FF_API_CODED_FRAME
 FF_DISABLE_DEPRECATION_WARNINGS
219b35f5
     avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
     avctx->coded_frame->key_frame = 1;
40cf1bba
 FF_ENABLE_DEPRECATION_WARNINGS
 #endif
219b35f5
 
3cab173e
     s->transparent_index = -1;
 
f38e4507
     s->lzw = av_mallocz(ff_lzw_encode_state_size);
03d83ba3
     s->buf_size = avctx->width*avctx->height*2 + 1000;
     s->buf = av_malloc(s->buf_size);
e1b35bdd
     s->tmpl = av_malloc(avctx->width);
     if (!s->tmpl || !s->buf || !s->lzw)
71411b69
         return AVERROR(ENOMEM);
e1b35bdd
 
     if (avpriv_set_systematic_pal2(s->palette, avctx->pix_fmt) < 0)
         av_assert0(avctx->pix_fmt == AV_PIX_FMT_PAL8);
 
93481fe5
     return 0;
 }
 
3cab173e
 /* FIXME: duplicated with lavc */
 static int get_palette_transparency_index(const uint32_t *palette)
 {
     int transparent_color_index = -1;
     unsigned i, smallest_alpha = 0xff;
 
     if (!palette)
         return -1;
 
     for (i = 0; i < AVPALETTE_COUNT; i++) {
         const uint32_t v = palette[i];
         if (v >> 24 < smallest_alpha) {
             smallest_alpha = v >> 24;
             transparent_color_index = i;
         }
     }
     return smallest_alpha < 128 ? transparent_color_index : -1;
 }
 
577fed3b
 static int gif_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
                             const AVFrame *pict, int *got_packet)
93481fe5
 {
     GIFContext *s = avctx->priv_data;
577fed3b
     uint8_t *outbuf_ptr, *end;
635389cc
     const uint32_t *palette = NULL;
577fed3b
     int ret;
 
29d147c9
     if ((ret = ff_alloc_packet2(avctx, pkt, avctx->width*avctx->height*7/5 + AV_INPUT_BUFFER_MIN_SIZE, 0)) < 0)
577fed3b
         return ret;
     outbuf_ptr = pkt->data;
     end        = pkt->data + pkt->size;
93481fe5
 
13478b27
     if (avctx->pix_fmt == AV_PIX_FMT_PAL8) {
         uint8_t *pal_exdata = av_packet_new_side_data(pkt, AV_PKT_DATA_PALETTE, AVPALETTE_SIZE);
         if (!pal_exdata)
             return AVERROR(ENOMEM);
5b0c70c2
         memcpy(pal_exdata, pict->data[1], AVPALETTE_SIZE);
         palette = (uint32_t*)pict->data[1];
3cab173e
 
         s->pal_exdata = pal_exdata;
 
         /* The first palette with PAL8 will be used as generic palette by the
          * muxer so we don't need to write it locally in the packet. We store
          * it as a reference here in case it changes later. */
         if (!s->palette_loaded) {
             memcpy(s->palette, palette, AVPALETTE_SIZE);
             s->transparent_index = get_palette_transparency_index(palette);
             s->palette_loaded = 1;
             palette = NULL;
         } else if (!memcmp(s->palette, palette, AVPALETTE_SIZE)) {
             palette = NULL;
         }
13478b27
     }
635389cc
 
e1b35bdd
     gif_image_write_image(avctx, &outbuf_ptr, end, palette,
                           pict->data[0], pict->linesize[0], pkt);
e065e8a4
     if (!s->last_frame) {
         s->last_frame = av_frame_alloc();
         if (!s->last_frame)
             return AVERROR(ENOMEM);
     }
     av_frame_unref(s->last_frame);
     ret = av_frame_ref(s->last_frame, (AVFrame*)pict);
     if (ret < 0)
         return ret;
577fed3b
 
     pkt->size   = outbuf_ptr - pkt->data;
     pkt->flags |= AV_PKT_FLAG_KEY;
     *got_packet = 1;
 
     return 0;
93481fe5
 }
 
f38e4507
 static int gif_encode_close(AVCodecContext *avctx)
 {
     GIFContext *s = avctx->priv_data;
 
     av_freep(&s->lzw);
     av_freep(&s->buf);
03d83ba3
     s->buf_size = 0;
e065e8a4
     av_frame_free(&s->last_frame);
e1b35bdd
     av_freep(&s->tmpl);
f38e4507
     return 0;
 }
 
0f1250b7
 #define OFFSET(x) offsetof(GIFContext, x)
 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
 static const AVOption gif_options[] = {
e1b35bdd
     { "gifflags", "set GIF flags", OFFSET(flags), AV_OPT_TYPE_FLAGS, {.i64 = GF_OFFSETTING|GF_TRANSDIFF}, 0, INT_MAX, FLAGS, "flags" },
0f1250b7
         { "offsetting", "enable picture offsetting", 0, AV_OPT_TYPE_CONST, {.i64=GF_OFFSETTING}, INT_MIN, INT_MAX, FLAGS, "flags" },
e1b35bdd
         { "transdiff", "enable transparency detection between frames", 0, AV_OPT_TYPE_CONST, {.i64=GF_TRANSDIFF}, INT_MIN, INT_MAX, FLAGS, "flags" },
0f1250b7
     { NULL }
 };
 
 static const AVClass gif_class = {
     .class_name = "GIF encoder",
     .item_name  = av_default_item_name,
     .option     = gif_options,
     .version    = LIBAVUTIL_VERSION_INT,
 };
 
e7e2df27
 AVCodec ff_gif_encoder = {
ec6402b7
     .name           = "gif",
b2bed932
     .long_name      = NULL_IF_CONFIG_SMALL("GIF (Graphics Interchange Format)"),
ec6402b7
     .type           = AVMEDIA_TYPE_VIDEO,
36ef5369
     .id             = AV_CODEC_ID_GIF,
ec6402b7
     .priv_data_size = sizeof(GIFContext),
     .init           = gif_encode_init,
577fed3b
     .encode2        = gif_encode_frame,
ec6402b7
     .close          = gif_encode_close,
716d413c
     .pix_fmts       = (const enum AVPixelFormat[]){
         AV_PIX_FMT_RGB8, AV_PIX_FMT_BGR8, AV_PIX_FMT_RGB4_BYTE, AV_PIX_FMT_BGR4_BYTE,
         AV_PIX_FMT_GRAY8, AV_PIX_FMT_PAL8, AV_PIX_FMT_NONE
00c3b67b
     },
0f1250b7
     .priv_class     = &gif_class,
93481fe5
 };