Commit 0a0e6877 authored by Clément Bœsch's avatar Clément Bœsch

lavf/gif: remove unused fields.

parent 28f9858c
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment