diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-04-18 12:55:04 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-04-18 13:40:45 +0200 |
commit | 0a0e6877ff3b8f16067d3515509745b467ddadd6 (patch) | |
tree | cd034e9a56ba3d079abe618a2c0ea70dfe09eb17 | |
parent | 28f9858c91ffe43609abf5cb6ee91dafae3517fe (diff) | |
download | ffmpeg-0a0e6877ff3b8f16067d3515509745b467ddadd6.tar.gz |
lavf/gif: remove unused fields.
-rw-r--r-- | libavformat/gif.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libavformat/gif.c b/libavformat/gif.c index 7a68d318c3..a6d83ee6ed 100644 --- a/libavformat/gif.c +++ b/libavformat/gif.c @@ -95,8 +95,6 @@ static int gif_image_write_header(AVIOContext *pb, int width, int height, typedef struct { AVClass *class; /** Class for private options. */ - int64_t time, file_time; - uint8_t buffer[100]; /* data chunks */ int loop; } GIFContext; @@ -115,9 +113,6 @@ static int gif_write_header(AVFormatContext *s) return AVERROR(EINVAL); } - gif->time = 0; - gif->file_time = 0; - video_enc = s->streams[0]->codec; width = video_enc->width; height = video_enc->height; |