X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=libavcodec%2Fgifdec.c;h=934c944a5b723c3d0de702a6c604a0d2233de6f9;hb=f4e043ff63935a71b98a36bc98b501c36ceadb92;hp=386c039c9c2110f96a1b34ada7427b065077d1f4;hpb=ea82552c09b5c35528d0d8d79ed6b2879e5e3299;p=ffmpeg diff --git a/libavcodec/gifdec.c b/libavcodec/gifdec.c index 386c039c9c2..934c944a5b7 100644 --- a/libavcodec/gifdec.c +++ b/libavcodec/gifdec.c @@ -1,27 +1,28 @@ /* * GIF decoder - * Copyright (c) 2003 Fabrice Bellard. - * Copyright (c) 2006 Baptiste Coudurier. + * Copyright (c) 2003 Fabrice Bellard + * Copyright (c) 2006 Baptiste Coudurier * - * This file is part of FFmpeg. + * This file is part of Libav. * - * FFmpeg is free software; you can redistribute it and/or + * Libav 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, + * Libav 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 + * License along with Libav; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ //#define DEBUG +#include "libavutil/imgutils.h" #include "avcodec.h" #include "bytestream.h" #include "lzw.h" @@ -47,8 +48,8 @@ typedef struct GifState { int gce_delay; /* LZW compatible decoder */ - uint8_t *bytestream; - uint8_t *bytestream_end; + const uint8_t *bytestream; + const uint8_t *bytestream_end; LZWState *lzw; /* aux buffers */ @@ -75,9 +76,8 @@ static int gif_read_image(GifState *s) is_interleaved = flags & 0x40; has_local_palette = flags & 0x80; bits_per_pixel = (flags & 0x07) + 1; -#ifdef DEBUG - dprintf(s->avctx, "gif: image x=%d y=%d w=%d h=%d\n", left, top, width, height); -#endif + + av_dlog(s->avctx, "gif: image x=%d y=%d w=%d h=%d\n", left, top, width, height); if (has_local_palette) { bytestream_get_buffer(&s->bytestream, s->local_palette, 3 * (1 << bits_per_pixel)); @@ -96,8 +96,7 @@ static int gif_read_image(GifState *s) n = (1 << bits_per_pixel); spal = palette; for(i = 0; i < n; i++) { - s->image_palette[i] = (0xff << 24) | - (spal[0] << 16) | (spal[1] << 8) | (spal[2]); + s->image_palette[i] = (0xff << 24) | AV_RB24(spal); spal += 3; } for(; i < 256; i++) @@ -108,8 +107,8 @@ static int gif_read_image(GifState *s) /* now get the image data */ code_size = bytestream_get_byte(&s->bytestream); - //TODO: add proper data size - ff_lzw_decode_init(s->lzw, code_size, s->bytestream, 0, FF_LZW_GIF); + ff_lzw_decode_init(s->lzw, code_size, s->bytestream, + s->bytestream_end - s->bytestream, FF_LZW_GIF); /* read all the image */ linesize = s->picture.linesize[0]; @@ -127,11 +126,8 @@ static int gif_read_image(GifState *s) y1 += 8; ptr += linesize * 8; if (y1 >= height) { - y1 = 4; - if (pass == 0) - ptr = ptr1 + linesize * 4; - else - ptr = ptr1 + linesize * 2; + y1 = pass ? 2 : 4; + ptr = ptr1 + linesize * y1; pass++; } break; @@ -166,9 +162,9 @@ static int gif_read_extension(GifState *s) /* extension */ ext_code = bytestream_get_byte(&s->bytestream); ext_len = bytestream_get_byte(&s->bytestream); -#ifdef DEBUG - dprintf(s->avctx, "gif: ext_code=0x%x len=%d\n", ext_code, ext_len); -#endif + + av_dlog(s->avctx, "gif: ext_code=0x%x len=%d\n", ext_code, ext_len); + switch(ext_code) { case 0xf9: if (ext_len != 4) @@ -182,11 +178,11 @@ static int gif_read_extension(GifState *s) else s->transparent_color_index = -1; s->gce_disposal = (gce_flags >> 2) & 0x7; -#ifdef DEBUG - dprintf(s->avctx, "gif: gce_flags=%x delay=%d tcolor=%d disposal=%d\n", + + av_dlog(s->avctx, "gif: gce_flags=%x delay=%d tcolor=%d disposal=%d\n", gce_flags, s->gce_delay, s->transparent_color_index, s->gce_disposal); -#endif + ext_len = bytestream_get_byte(&s->bytestream); break; } @@ -197,9 +193,8 @@ static int gif_read_extension(GifState *s) for (i = 0; i < ext_len; i++) bytestream_get_byte(&s->bytestream); ext_len = bytestream_get_byte(&s->bytestream); -#ifdef DEBUG - dprintf(s->avctx, "gif: ext_len1=%d\n", ext_len); -#endif + + av_dlog(s->avctx, "gif: ext_len1=%d\n", ext_len); } return 0; } @@ -235,11 +230,11 @@ static int gif_read_header1(GifState *s) s->bits_per_pixel = (v & 0x07) + 1; s->background_color_index = bytestream_get_byte(&s->bytestream); bytestream_get_byte(&s->bytestream); /* ignored */ -#ifdef DEBUG - dprintf(s->avctx, "gif: screen_w=%d screen_h=%d bpp=%d global_palette=%d\n", + + av_dlog(s->avctx, "gif: screen_w=%d screen_h=%d bpp=%d global_palette=%d\n", s->screen_width, s->screen_height, s->bits_per_pixel, has_global_palette); -#endif + if (has_global_palette) { n = 1 << s->bits_per_pixel; if (s->bytestream_end < s->bytestream + n * 3) @@ -253,30 +248,27 @@ static int gif_parse_next_image(GifState *s) { while (s->bytestream < s->bytestream_end) { int code = bytestream_get_byte(&s->bytestream); -#ifdef DEBUG - dprintf(s->avctx, "gif: code=%02x '%c'\n", code, code); -#endif + + av_dlog(s->avctx, "gif: code=%02x '%c'\n", code, code); + switch (code) { case ',': - if (gif_read_image(s) < 0) - return -1; - return 0; - case ';': - /* end of image */ - return -1; + return gif_read_image(s); case '!': if (gif_read_extension(s) < 0) return -1; break; + case ';': + /* end of image */ default: - /* error or errneous EOF */ + /* error or erroneous EOF */ return -1; } } return -1; } -static int gif_decode_init(AVCodecContext *avctx) +static av_cold int gif_decode_init(AVCodecContext *avctx) { GifState *s = avctx->priv_data; @@ -289,8 +281,10 @@ static int gif_decode_init(AVCodecContext *avctx) return 0; } -static int gif_decode_frame(AVCodecContext *avctx, void *data, int *data_size, uint8_t *buf, int buf_size) +static int gif_decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) { + const uint8_t *buf = avpkt->data; + int buf_size = avpkt->size; GifState *s = avctx->priv_data; AVFrame *picture = data; int ret; @@ -301,7 +295,7 @@ static int gif_decode_frame(AVCodecContext *avctx, void *data, int *data_size, u return -1; avctx->pix_fmt = PIX_FMT_PAL8; - if (avcodec_check_dimensions(avctx, s->screen_width, s->screen_height)) + if (av_image_check_size(s->screen_width, s->screen_height, 0, avctx)) return -1; avcodec_set_dimensions(avctx, s->screen_width, s->screen_height); @@ -321,7 +315,7 @@ static int gif_decode_frame(AVCodecContext *avctx, void *data, int *data_size, u return s->bytestream - buf; } -static int gif_decode_close(AVCodecContext *avctx) +static av_cold int gif_decode_close(AVCodecContext *avctx) { GifState *s = avctx->priv_data; @@ -331,13 +325,15 @@ static int gif_decode_close(AVCodecContext *avctx) return 0; } -AVCodec gif_decoder = { +AVCodec ff_gif_decoder = { "gif", - CODEC_TYPE_VIDEO, + AVMEDIA_TYPE_VIDEO, CODEC_ID_GIF, sizeof(GifState), gif_decode_init, NULL, gif_decode_close, gif_decode_frame, + CODEC_CAP_DR1, + .long_name = NULL_IF_CONFIG_SMALL("GIF (Graphics Interchange Format)"), };