You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

441 lines
16KB

  1. /*
  2. * Animated GIF encoder
  3. * Copyright (c) 2000 Fabrice Bellard.
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with this library; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. */
  19. /*
  20. * First version by Francois Revol revol@free.fr
  21. *
  22. * Features and limitations:
  23. * - currently no compression is performed,
  24. * in fact the size of the data is 9/8 the size of the image in 8bpp
  25. * - uses only a global standard palette
  26. * - tested with IE 5.0, Opera for BeOS, NetPositive (BeOS), and Mozilla (BeOS).
  27. *
  28. * Reference documents:
  29. * http://www.goice.co.jp/member/mo/formats/gif.html
  30. * http://astronomy.swin.edu.au/pbourke/dataformats/gif/
  31. * http://www.dcs.ed.ac.uk/home/mxr/gfx/2d/GIF89a.txt
  32. *
  33. * this url claims to have an LZW algorithm not covered by Unisys patent:
  34. * http://www.msg.net/utility/whirlgif/gifencod.html
  35. * could help reduce the size of the files _a lot_...
  36. * some sites mentions an RLE type compression also.
  37. */
  38. #include "avformat.h"
  39. #include "bitstream.h"
  40. /* bitstream minipacket size */
  41. #define GIF_CHUNKS 100
  42. /* slows down the decoding (and some browsers don't like it) */
  43. /* update on the 'some browsers don't like it issue from above: this was probably due to missing 'Data Sub-block Terminator' (byte 19) in the app_header */
  44. #define GIF_ADD_APP_HEADER // required to enable looping of animated gif
  45. typedef struct {
  46. unsigned char r;
  47. unsigned char g;
  48. unsigned char b;
  49. } rgb_triplet;
  50. /* we use the standard 216 color palette */
  51. /* this script was used to create the palette:
  52. * for r in 00 33 66 99 cc ff; do for g in 00 33 66 99 cc ff; do echo -n " "; for b in 00 33 66 99 cc ff; do
  53. * echo -n "{ 0x$r, 0x$g, 0x$b }, "; done; echo ""; done; done
  54. */
  55. static const rgb_triplet gif_clut[216] = {
  56. { 0x00, 0x00, 0x00 }, { 0x00, 0x00, 0x33 }, { 0x00, 0x00, 0x66 }, { 0x00, 0x00, 0x99 }, { 0x00, 0x00, 0xcc }, { 0x00, 0x00, 0xff },
  57. { 0x00, 0x33, 0x00 }, { 0x00, 0x33, 0x33 }, { 0x00, 0x33, 0x66 }, { 0x00, 0x33, 0x99 }, { 0x00, 0x33, 0xcc }, { 0x00, 0x33, 0xff },
  58. { 0x00, 0x66, 0x00 }, { 0x00, 0x66, 0x33 }, { 0x00, 0x66, 0x66 }, { 0x00, 0x66, 0x99 }, { 0x00, 0x66, 0xcc }, { 0x00, 0x66, 0xff },
  59. { 0x00, 0x99, 0x00 }, { 0x00, 0x99, 0x33 }, { 0x00, 0x99, 0x66 }, { 0x00, 0x99, 0x99 }, { 0x00, 0x99, 0xcc }, { 0x00, 0x99, 0xff },
  60. { 0x00, 0xcc, 0x00 }, { 0x00, 0xcc, 0x33 }, { 0x00, 0xcc, 0x66 }, { 0x00, 0xcc, 0x99 }, { 0x00, 0xcc, 0xcc }, { 0x00, 0xcc, 0xff },
  61. { 0x00, 0xff, 0x00 }, { 0x00, 0xff, 0x33 }, { 0x00, 0xff, 0x66 }, { 0x00, 0xff, 0x99 }, { 0x00, 0xff, 0xcc }, { 0x00, 0xff, 0xff },
  62. { 0x33, 0x00, 0x00 }, { 0x33, 0x00, 0x33 }, { 0x33, 0x00, 0x66 }, { 0x33, 0x00, 0x99 }, { 0x33, 0x00, 0xcc }, { 0x33, 0x00, 0xff },
  63. { 0x33, 0x33, 0x00 }, { 0x33, 0x33, 0x33 }, { 0x33, 0x33, 0x66 }, { 0x33, 0x33, 0x99 }, { 0x33, 0x33, 0xcc }, { 0x33, 0x33, 0xff },
  64. { 0x33, 0x66, 0x00 }, { 0x33, 0x66, 0x33 }, { 0x33, 0x66, 0x66 }, { 0x33, 0x66, 0x99 }, { 0x33, 0x66, 0xcc }, { 0x33, 0x66, 0xff },
  65. { 0x33, 0x99, 0x00 }, { 0x33, 0x99, 0x33 }, { 0x33, 0x99, 0x66 }, { 0x33, 0x99, 0x99 }, { 0x33, 0x99, 0xcc }, { 0x33, 0x99, 0xff },
  66. { 0x33, 0xcc, 0x00 }, { 0x33, 0xcc, 0x33 }, { 0x33, 0xcc, 0x66 }, { 0x33, 0xcc, 0x99 }, { 0x33, 0xcc, 0xcc }, { 0x33, 0xcc, 0xff },
  67. { 0x33, 0xff, 0x00 }, { 0x33, 0xff, 0x33 }, { 0x33, 0xff, 0x66 }, { 0x33, 0xff, 0x99 }, { 0x33, 0xff, 0xcc }, { 0x33, 0xff, 0xff },
  68. { 0x66, 0x00, 0x00 }, { 0x66, 0x00, 0x33 }, { 0x66, 0x00, 0x66 }, { 0x66, 0x00, 0x99 }, { 0x66, 0x00, 0xcc }, { 0x66, 0x00, 0xff },
  69. { 0x66, 0x33, 0x00 }, { 0x66, 0x33, 0x33 }, { 0x66, 0x33, 0x66 }, { 0x66, 0x33, 0x99 }, { 0x66, 0x33, 0xcc }, { 0x66, 0x33, 0xff },
  70. { 0x66, 0x66, 0x00 }, { 0x66, 0x66, 0x33 }, { 0x66, 0x66, 0x66 }, { 0x66, 0x66, 0x99 }, { 0x66, 0x66, 0xcc }, { 0x66, 0x66, 0xff },
  71. { 0x66, 0x99, 0x00 }, { 0x66, 0x99, 0x33 }, { 0x66, 0x99, 0x66 }, { 0x66, 0x99, 0x99 }, { 0x66, 0x99, 0xcc }, { 0x66, 0x99, 0xff },
  72. { 0x66, 0xcc, 0x00 }, { 0x66, 0xcc, 0x33 }, { 0x66, 0xcc, 0x66 }, { 0x66, 0xcc, 0x99 }, { 0x66, 0xcc, 0xcc }, { 0x66, 0xcc, 0xff },
  73. { 0x66, 0xff, 0x00 }, { 0x66, 0xff, 0x33 }, { 0x66, 0xff, 0x66 }, { 0x66, 0xff, 0x99 }, { 0x66, 0xff, 0xcc }, { 0x66, 0xff, 0xff },
  74. { 0x99, 0x00, 0x00 }, { 0x99, 0x00, 0x33 }, { 0x99, 0x00, 0x66 }, { 0x99, 0x00, 0x99 }, { 0x99, 0x00, 0xcc }, { 0x99, 0x00, 0xff },
  75. { 0x99, 0x33, 0x00 }, { 0x99, 0x33, 0x33 }, { 0x99, 0x33, 0x66 }, { 0x99, 0x33, 0x99 }, { 0x99, 0x33, 0xcc }, { 0x99, 0x33, 0xff },
  76. { 0x99, 0x66, 0x00 }, { 0x99, 0x66, 0x33 }, { 0x99, 0x66, 0x66 }, { 0x99, 0x66, 0x99 }, { 0x99, 0x66, 0xcc }, { 0x99, 0x66, 0xff },
  77. { 0x99, 0x99, 0x00 }, { 0x99, 0x99, 0x33 }, { 0x99, 0x99, 0x66 }, { 0x99, 0x99, 0x99 }, { 0x99, 0x99, 0xcc }, { 0x99, 0x99, 0xff },
  78. { 0x99, 0xcc, 0x00 }, { 0x99, 0xcc, 0x33 }, { 0x99, 0xcc, 0x66 }, { 0x99, 0xcc, 0x99 }, { 0x99, 0xcc, 0xcc }, { 0x99, 0xcc, 0xff },
  79. { 0x99, 0xff, 0x00 }, { 0x99, 0xff, 0x33 }, { 0x99, 0xff, 0x66 }, { 0x99, 0xff, 0x99 }, { 0x99, 0xff, 0xcc }, { 0x99, 0xff, 0xff },
  80. { 0xcc, 0x00, 0x00 }, { 0xcc, 0x00, 0x33 }, { 0xcc, 0x00, 0x66 }, { 0xcc, 0x00, 0x99 }, { 0xcc, 0x00, 0xcc }, { 0xcc, 0x00, 0xff },
  81. { 0xcc, 0x33, 0x00 }, { 0xcc, 0x33, 0x33 }, { 0xcc, 0x33, 0x66 }, { 0xcc, 0x33, 0x99 }, { 0xcc, 0x33, 0xcc }, { 0xcc, 0x33, 0xff },
  82. { 0xcc, 0x66, 0x00 }, { 0xcc, 0x66, 0x33 }, { 0xcc, 0x66, 0x66 }, { 0xcc, 0x66, 0x99 }, { 0xcc, 0x66, 0xcc }, { 0xcc, 0x66, 0xff },
  83. { 0xcc, 0x99, 0x00 }, { 0xcc, 0x99, 0x33 }, { 0xcc, 0x99, 0x66 }, { 0xcc, 0x99, 0x99 }, { 0xcc, 0x99, 0xcc }, { 0xcc, 0x99, 0xff },
  84. { 0xcc, 0xcc, 0x00 }, { 0xcc, 0xcc, 0x33 }, { 0xcc, 0xcc, 0x66 }, { 0xcc, 0xcc, 0x99 }, { 0xcc, 0xcc, 0xcc }, { 0xcc, 0xcc, 0xff },
  85. { 0xcc, 0xff, 0x00 }, { 0xcc, 0xff, 0x33 }, { 0xcc, 0xff, 0x66 }, { 0xcc, 0xff, 0x99 }, { 0xcc, 0xff, 0xcc }, { 0xcc, 0xff, 0xff },
  86. { 0xff, 0x00, 0x00 }, { 0xff, 0x00, 0x33 }, { 0xff, 0x00, 0x66 }, { 0xff, 0x00, 0x99 }, { 0xff, 0x00, 0xcc }, { 0xff, 0x00, 0xff },
  87. { 0xff, 0x33, 0x00 }, { 0xff, 0x33, 0x33 }, { 0xff, 0x33, 0x66 }, { 0xff, 0x33, 0x99 }, { 0xff, 0x33, 0xcc }, { 0xff, 0x33, 0xff },
  88. { 0xff, 0x66, 0x00 }, { 0xff, 0x66, 0x33 }, { 0xff, 0x66, 0x66 }, { 0xff, 0x66, 0x99 }, { 0xff, 0x66, 0xcc }, { 0xff, 0x66, 0xff },
  89. { 0xff, 0x99, 0x00 }, { 0xff, 0x99, 0x33 }, { 0xff, 0x99, 0x66 }, { 0xff, 0x99, 0x99 }, { 0xff, 0x99, 0xcc }, { 0xff, 0x99, 0xff },
  90. { 0xff, 0xcc, 0x00 }, { 0xff, 0xcc, 0x33 }, { 0xff, 0xcc, 0x66 }, { 0xff, 0xcc, 0x99 }, { 0xff, 0xcc, 0xcc }, { 0xff, 0xcc, 0xff },
  91. { 0xff, 0xff, 0x00 }, { 0xff, 0xff, 0x33 }, { 0xff, 0xff, 0x66 }, { 0xff, 0xff, 0x99 }, { 0xff, 0xff, 0xcc }, { 0xff, 0xff, 0xff },
  92. };
  93. /* The GIF format uses reversed order for bitstreams... */
  94. /* at least they don't use PDP_ENDIAN :) */
  95. /* so we 'extend' PutBitContext. hmmm, OOP :) */
  96. /* seems this thing changed slightly since I wrote it... */
  97. #ifdef ALT_BITSTREAM_WRITER
  98. # error no ALT_BITSTREAM_WRITER support for now
  99. #endif
  100. static void gif_put_bits_rev(PutBitContext *s, int n, unsigned int value)
  101. {
  102. unsigned int bit_buf;
  103. int bit_cnt;
  104. #ifdef STATS
  105. st_out_bit_counts[st_current_index] += n;
  106. #endif
  107. // printf("put_bits=%d %x\n", n, value);
  108. assert(n == 32 || value < (1U << n));
  109. bit_buf = s->bit_buf;
  110. bit_cnt = 32 - s->bit_left; /* XXX:lazyness... was = s->bit_cnt; */
  111. // printf("n=%d value=%x cnt=%d buf=%x\n", n, value, bit_cnt, bit_buf);
  112. /* XXX: optimize */
  113. if (n < (32-bit_cnt)) {
  114. bit_buf |= value << (bit_cnt);
  115. bit_cnt+=n;
  116. } else {
  117. bit_buf |= value << (bit_cnt);
  118. *s->buf_ptr = bit_buf & 0xff;
  119. s->buf_ptr[1] = (bit_buf >> 8) & 0xff;
  120. s->buf_ptr[2] = (bit_buf >> 16) & 0xff;
  121. s->buf_ptr[3] = (bit_buf >> 24) & 0xff;
  122. //printf("bitbuf = %08x\n", bit_buf);
  123. s->buf_ptr+=4;
  124. if (s->buf_ptr >= s->buf_end)
  125. puts("bit buffer overflow !!"); // should never happen ! who got rid of the callback ???
  126. // flush_buffer_rev(s);
  127. bit_cnt=bit_cnt + n - 32;
  128. if (bit_cnt == 0) {
  129. bit_buf = 0;
  130. } else {
  131. bit_buf = value >> (n - bit_cnt);
  132. }
  133. }
  134. s->bit_buf = bit_buf;
  135. s->bit_left = 32 - bit_cnt;
  136. }
  137. /* pad the end of the output stream with zeros */
  138. static void gif_flush_put_bits_rev(PutBitContext *s)
  139. {
  140. while (s->bit_left < 32) {
  141. /* XXX: should test end of buffer */
  142. *s->buf_ptr++=s->bit_buf & 0xff;
  143. s->bit_buf>>=8;
  144. s->bit_left+=8;
  145. }
  146. // flush_buffer_rev(s);
  147. s->bit_left=32;
  148. s->bit_buf=0;
  149. }
  150. /* !RevPutBitContext */
  151. /* GIF header */
  152. static int gif_image_write_header(ByteIOContext *pb,
  153. int width, int height, int loop_count,
  154. uint32_t *palette)
  155. {
  156. int i;
  157. unsigned int v;
  158. put_tag(pb, "GIF");
  159. put_tag(pb, "89a");
  160. put_le16(pb, width);
  161. put_le16(pb, height);
  162. put_byte(pb, 0xf7); /* flags: global clut, 256 entries */
  163. put_byte(pb, 0x1f); /* background color index */
  164. put_byte(pb, 0); /* aspect ratio */
  165. /* the global palette */
  166. if (!palette) {
  167. put_buffer(pb, (unsigned char *)gif_clut, 216*3);
  168. for(i=0;i<((256-216)*3);i++)
  169. put_byte(pb, 0);
  170. } else {
  171. for(i=0;i<256;i++) {
  172. v = palette[i];
  173. put_byte(pb, (v >> 16) & 0xff);
  174. put_byte(pb, (v >> 8) & 0xff);
  175. put_byte(pb, (v) & 0xff);
  176. }
  177. }
  178. /* update: this is the 'NETSCAPE EXTENSION' that allows for looped animated gif
  179. see http://members.aol.com/royalef/gifabout.htm#net-extension
  180. byte 1 : 33 (hex 0x21) GIF Extension code
  181. byte 2 : 255 (hex 0xFF) Application Extension Label
  182. byte 3 : 11 (hex (0x0B) Length of Application Block
  183. (eleven bytes of data to follow)
  184. bytes 4 to 11 : "NETSCAPE"
  185. bytes 12 to 14 : "2.0"
  186. byte 15 : 3 (hex 0x03) Length of Data Sub-Block
  187. (three bytes of data to follow)
  188. byte 16 : 1 (hex 0x01)
  189. bytes 17 to 18 : 0 to 65535, an unsigned integer in
  190. lo-hi byte format. This indicate the
  191. number of iterations the loop should
  192. be executed.
  193. bytes 19 : 0 (hex 0x00) a Data Sub-block Terminator
  194. */
  195. /* application extension header */
  196. #ifdef GIF_ADD_APP_HEADER
  197. if (loop_count >= 0 && loop_count <= 65535) {
  198. put_byte(pb, 0x21);
  199. put_byte(pb, 0xff);
  200. put_byte(pb, 0x0b);
  201. put_tag(pb, "NETSCAPE2.0"); // bytes 4 to 14
  202. put_byte(pb, 0x03); // byte 15
  203. put_byte(pb, 0x01); // byte 16
  204. put_le16(pb, (uint16_t)loop_count);
  205. put_byte(pb, 0x00); // byte 19
  206. }
  207. #endif
  208. return 0;
  209. }
  210. /* this is maybe slow, but allows for extensions */
  211. static inline unsigned char gif_clut_index(uint8_t r, uint8_t g, uint8_t b)
  212. {
  213. return ((((r)/47)%6)*6*6+(((g)/47)%6)*6+(((b)/47)%6));
  214. }
  215. static int gif_image_write_image(ByteIOContext *pb,
  216. int x1, int y1, int width, int height,
  217. const uint8_t *buf, int linesize, int pix_fmt)
  218. {
  219. PutBitContext p;
  220. uint8_t buffer[200]; /* 100 * 9 / 8 = 113 */
  221. int i, left, w, v;
  222. const uint8_t *ptr;
  223. /* image block */
  224. put_byte(pb, 0x2c);
  225. put_le16(pb, x1);
  226. put_le16(pb, y1);
  227. put_le16(pb, width);
  228. put_le16(pb, height);
  229. put_byte(pb, 0x00); /* flags */
  230. /* no local clut */
  231. put_byte(pb, 0x08);
  232. left= width * height;
  233. init_put_bits(&p, buffer, 130);
  234. /*
  235. * the thing here is the bitstream is written as little packets, with a size byte before
  236. * but it's still the same bitstream between packets (no flush !)
  237. */
  238. ptr = buf;
  239. w = width;
  240. while(left>0) {
  241. gif_put_bits_rev(&p, 9, 0x0100); /* clear code */
  242. for(i=(left<GIF_CHUNKS)?left:GIF_CHUNKS;i;i--) {
  243. if (pix_fmt == PIX_FMT_RGB24) {
  244. v = gif_clut_index(ptr[0], ptr[1], ptr[2]);
  245. ptr+=3;
  246. } else {
  247. v = *ptr++;
  248. }
  249. gif_put_bits_rev(&p, 9, v);
  250. if (--w == 0) {
  251. w = width;
  252. buf += linesize;
  253. ptr = buf;
  254. }
  255. }
  256. if(left<=GIF_CHUNKS) {
  257. gif_put_bits_rev(&p, 9, 0x101); /* end of stream */
  258. gif_flush_put_bits_rev(&p);
  259. }
  260. if(pbBufPtr(&p) - p.buf > 0) {
  261. put_byte(pb, pbBufPtr(&p) - p.buf); /* byte count of the packet */
  262. put_buffer(pb, p.buf, pbBufPtr(&p) - p.buf); /* the actual buffer */
  263. p.buf_ptr = p.buf; /* dequeue the bytes off the bitstream */
  264. }
  265. left-=GIF_CHUNKS;
  266. }
  267. put_byte(pb, 0x00); /* end of image block */
  268. return 0;
  269. }
  270. typedef struct {
  271. int64_t time, file_time;
  272. uint8_t buffer[100]; /* data chunks */
  273. } GIFContext;
  274. static int gif_write_header(AVFormatContext *s)
  275. {
  276. GIFContext *gif = s->priv_data;
  277. ByteIOContext *pb = &s->pb;
  278. AVCodecContext *enc, *video_enc;
  279. int i, width, height, loop_count /*, rate*/;
  280. /* XXX: do we reject audio streams or just ignore them ?
  281. if(s->nb_streams > 1)
  282. return -1;
  283. */
  284. gif->time = 0;
  285. gif->file_time = 0;
  286. video_enc = NULL;
  287. for(i=0;i<s->nb_streams;i++) {
  288. enc = &s->streams[i]->codec;
  289. if (enc->codec_type != CODEC_TYPE_AUDIO)
  290. video_enc = enc;
  291. }
  292. if (!video_enc) {
  293. av_free(gif);
  294. return -1;
  295. } else {
  296. width = video_enc->width;
  297. height = video_enc->height;
  298. loop_count = s->loop_output;
  299. // rate = video_enc->time_base.den;
  300. }
  301. /* XXX: is it allowed ? seems to work so far... */
  302. video_enc->pix_fmt = PIX_FMT_RGB24;
  303. gif_image_write_header(pb, width, height, loop_count, NULL);
  304. put_flush_packet(&s->pb);
  305. return 0;
  306. }
  307. static int gif_write_video(AVFormatContext *s,
  308. AVCodecContext *enc, const uint8_t *buf, int size)
  309. {
  310. ByteIOContext *pb = &s->pb;
  311. GIFContext *gif = s->priv_data;
  312. int jiffies;
  313. int64_t delay;
  314. /* graphic control extension block */
  315. put_byte(pb, 0x21);
  316. put_byte(pb, 0xf9);
  317. put_byte(pb, 0x04); /* block size */
  318. put_byte(pb, 0x04); /* flags */
  319. /* 1 jiffy is 1/70 s */
  320. /* the delay_time field indicates the number of jiffies - 1 */
  321. delay = gif->file_time - gif->time;
  322. /* XXX: should use delay, in order to be more accurate */
  323. /* instead of using the same rounded value each time */
  324. /* XXX: don't even remember if I really use it for now */
  325. jiffies = (70*enc->time_base.num/enc->time_base.den) - 1;
  326. put_le16(pb, jiffies);
  327. put_byte(pb, 0x1f); /* transparent color index */
  328. put_byte(pb, 0x00);
  329. gif_image_write_image(pb, 0, 0, enc->width, enc->height,
  330. buf, enc->width * 3, PIX_FMT_RGB24);
  331. put_flush_packet(&s->pb);
  332. return 0;
  333. }
  334. static int gif_write_packet(AVFormatContext *s, AVPacket *pkt)
  335. {
  336. AVCodecContext *codec = &s->streams[pkt->stream_index]->codec;
  337. if (codec->codec_type == CODEC_TYPE_AUDIO)
  338. return 0; /* just ignore audio */
  339. else
  340. return gif_write_video(s, codec, pkt->data, pkt->size);
  341. }
  342. static int gif_write_trailer(AVFormatContext *s)
  343. {
  344. ByteIOContext *pb = &s->pb;
  345. put_byte(pb, 0x3b);
  346. put_flush_packet(&s->pb);
  347. return 0;
  348. }
  349. /* better than nothing gif image writer */
  350. int gif_write(ByteIOContext *pb, AVImageInfo *info)
  351. {
  352. gif_image_write_header(pb, info->width, info->height, AVFMT_NOOUTPUTLOOP,
  353. (uint32_t *)info->pict.data[1]);
  354. gif_image_write_image(pb, 0, 0, info->width, info->height,
  355. info->pict.data[0], info->pict.linesize[0],
  356. PIX_FMT_PAL8);
  357. put_byte(pb, 0x3b);
  358. put_flush_packet(pb);
  359. return 0;
  360. }
  361. static AVOutputFormat gif_oformat = {
  362. "gif",
  363. "GIF Animation",
  364. "image/gif",
  365. "gif",
  366. sizeof(GIFContext),
  367. CODEC_ID_NONE,
  368. CODEC_ID_RAWVIDEO,
  369. gif_write_header,
  370. gif_write_packet,
  371. gif_write_trailer,
  372. };
  373. extern AVInputFormat gif_iformat;
  374. int gif_init(void)
  375. {
  376. av_register_output_format(&gif_oformat);
  377. av_register_input_format(&gif_iformat);
  378. return 0;
  379. }