comparison gif.c @ 8775:7c60077e7380 libavcodec

remove no more needed fields in GIFContext, patch by Daniel Verkamp, daniel at drv dot nu
author bcoudurier
date Mon, 09 Feb 2009 08:16:04 +0000
parents 0a8166d20fd3
children 4cb7c65fc775
comparison
equal deleted inserted replaced
8774:0a8166d20fd3 8775:7c60077e7380
137 bytestream_put_byte(bytestream, 0x3b); 137 bytestream_put_byte(bytestream, 0x3b);
138 return 0; 138 return 0;
139 } 139 }
140 140
141 typedef struct { 141 typedef struct {
142 int64_t time, file_time;
143 uint8_t buffer[100]; /* data chunks */
144 AVFrame picture; 142 AVFrame picture;
145 } GIFContext; 143 } GIFContext;
146 144
147 static av_cold int gif_encode_init(AVCodecContext *avctx) 145 static av_cold int gif_encode_init(AVCodecContext *avctx)
148 { 146 {