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.

418 lines
15KB

  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 doesn't like it) */
  43. /* #define GIF_ADD_APP_HEADER */
  44. typedef struct {
  45. unsigned char r;
  46. unsigned char g;
  47. unsigned char b;
  48. } rgb_triplet;
  49. /* we use the standard 216 color palette */
  50. /* this script was used to create the palette:
  51. * 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
  52. * echo -n "{ 0x$r, 0x$g, 0x$b }, "; done; echo ""; done; done
  53. */
  54. static const rgb_triplet gif_clut[216] = {
  55. { 0x00, 0x00, 0x00 }, { 0x00, 0x00, 0x33 }, { 0x00, 0x00, 0x66 }, { 0x00, 0x00, 0x99 }, { 0x00, 0x00, 0xcc }, { 0x00, 0x00, 0xff },
  56. { 0x00, 0x33, 0x00 }, { 0x00, 0x33, 0x33 }, { 0x00, 0x33, 0x66 }, { 0x00, 0x33, 0x99 }, { 0x00, 0x33, 0xcc }, { 0x00, 0x33, 0xff },
  57. { 0x00, 0x66, 0x00 }, { 0x00, 0x66, 0x33 }, { 0x00, 0x66, 0x66 }, { 0x00, 0x66, 0x99 }, { 0x00, 0x66, 0xcc }, { 0x00, 0x66, 0xff },
  58. { 0x00, 0x99, 0x00 }, { 0x00, 0x99, 0x33 }, { 0x00, 0x99, 0x66 }, { 0x00, 0x99, 0x99 }, { 0x00, 0x99, 0xcc }, { 0x00, 0x99, 0xff },
  59. { 0x00, 0xcc, 0x00 }, { 0x00, 0xcc, 0x33 }, { 0x00, 0xcc, 0x66 }, { 0x00, 0xcc, 0x99 }, { 0x00, 0xcc, 0xcc }, { 0x00, 0xcc, 0xff },
  60. { 0x00, 0xff, 0x00 }, { 0x00, 0xff, 0x33 }, { 0x00, 0xff, 0x66 }, { 0x00, 0xff, 0x99 }, { 0x00, 0xff, 0xcc }, { 0x00, 0xff, 0xff },
  61. { 0x33, 0x00, 0x00 }, { 0x33, 0x00, 0x33 }, { 0x33, 0x00, 0x66 }, { 0x33, 0x00, 0x99 }, { 0x33, 0x00, 0xcc }, { 0x33, 0x00, 0xff },
  62. { 0x33, 0x33, 0x00 }, { 0x33, 0x33, 0x33 }, { 0x33, 0x33, 0x66 }, { 0x33, 0x33, 0x99 }, { 0x33, 0x33, 0xcc }, { 0x33, 0x33, 0xff },
  63. { 0x33, 0x66, 0x00 }, { 0x33, 0x66, 0x33 }, { 0x33, 0x66, 0x66 }, { 0x33, 0x66, 0x99 }, { 0x33, 0x66, 0xcc }, { 0x33, 0x66, 0xff },
  64. { 0x33, 0x99, 0x00 }, { 0x33, 0x99, 0x33 }, { 0x33, 0x99, 0x66 }, { 0x33, 0x99, 0x99 }, { 0x33, 0x99, 0xcc }, { 0x33, 0x99, 0xff },
  65. { 0x33, 0xcc, 0x00 }, { 0x33, 0xcc, 0x33 }, { 0x33, 0xcc, 0x66 }, { 0x33, 0xcc, 0x99 }, { 0x33, 0xcc, 0xcc }, { 0x33, 0xcc, 0xff },
  66. { 0x33, 0xff, 0x00 }, { 0x33, 0xff, 0x33 }, { 0x33, 0xff, 0x66 }, { 0x33, 0xff, 0x99 }, { 0x33, 0xff, 0xcc }, { 0x33, 0xff, 0xff },
  67. { 0x66, 0x00, 0x00 }, { 0x66, 0x00, 0x33 }, { 0x66, 0x00, 0x66 }, { 0x66, 0x00, 0x99 }, { 0x66, 0x00, 0xcc }, { 0x66, 0x00, 0xff },
  68. { 0x66, 0x33, 0x00 }, { 0x66, 0x33, 0x33 }, { 0x66, 0x33, 0x66 }, { 0x66, 0x33, 0x99 }, { 0x66, 0x33, 0xcc }, { 0x66, 0x33, 0xff },
  69. { 0x66, 0x66, 0x00 }, { 0x66, 0x66, 0x33 }, { 0x66, 0x66, 0x66 }, { 0x66, 0x66, 0x99 }, { 0x66, 0x66, 0xcc }, { 0x66, 0x66, 0xff },
  70. { 0x66, 0x99, 0x00 }, { 0x66, 0x99, 0x33 }, { 0x66, 0x99, 0x66 }, { 0x66, 0x99, 0x99 }, { 0x66, 0x99, 0xcc }, { 0x66, 0x99, 0xff },
  71. { 0x66, 0xcc, 0x00 }, { 0x66, 0xcc, 0x33 }, { 0x66, 0xcc, 0x66 }, { 0x66, 0xcc, 0x99 }, { 0x66, 0xcc, 0xcc }, { 0x66, 0xcc, 0xff },
  72. { 0x66, 0xff, 0x00 }, { 0x66, 0xff, 0x33 }, { 0x66, 0xff, 0x66 }, { 0x66, 0xff, 0x99 }, { 0x66, 0xff, 0xcc }, { 0x66, 0xff, 0xff },
  73. { 0x99, 0x00, 0x00 }, { 0x99, 0x00, 0x33 }, { 0x99, 0x00, 0x66 }, { 0x99, 0x00, 0x99 }, { 0x99, 0x00, 0xcc }, { 0x99, 0x00, 0xff },
  74. { 0x99, 0x33, 0x00 }, { 0x99, 0x33, 0x33 }, { 0x99, 0x33, 0x66 }, { 0x99, 0x33, 0x99 }, { 0x99, 0x33, 0xcc }, { 0x99, 0x33, 0xff },
  75. { 0x99, 0x66, 0x00 }, { 0x99, 0x66, 0x33 }, { 0x99, 0x66, 0x66 }, { 0x99, 0x66, 0x99 }, { 0x99, 0x66, 0xcc }, { 0x99, 0x66, 0xff },
  76. { 0x99, 0x99, 0x00 }, { 0x99, 0x99, 0x33 }, { 0x99, 0x99, 0x66 }, { 0x99, 0x99, 0x99 }, { 0x99, 0x99, 0xcc }, { 0x99, 0x99, 0xff },
  77. { 0x99, 0xcc, 0x00 }, { 0x99, 0xcc, 0x33 }, { 0x99, 0xcc, 0x66 }, { 0x99, 0xcc, 0x99 }, { 0x99, 0xcc, 0xcc }, { 0x99, 0xcc, 0xff },
  78. { 0x99, 0xff, 0x00 }, { 0x99, 0xff, 0x33 }, { 0x99, 0xff, 0x66 }, { 0x99, 0xff, 0x99 }, { 0x99, 0xff, 0xcc }, { 0x99, 0xff, 0xff },
  79. { 0xcc, 0x00, 0x00 }, { 0xcc, 0x00, 0x33 }, { 0xcc, 0x00, 0x66 }, { 0xcc, 0x00, 0x99 }, { 0xcc, 0x00, 0xcc }, { 0xcc, 0x00, 0xff },
  80. { 0xcc, 0x33, 0x00 }, { 0xcc, 0x33, 0x33 }, { 0xcc, 0x33, 0x66 }, { 0xcc, 0x33, 0x99 }, { 0xcc, 0x33, 0xcc }, { 0xcc, 0x33, 0xff },
  81. { 0xcc, 0x66, 0x00 }, { 0xcc, 0x66, 0x33 }, { 0xcc, 0x66, 0x66 }, { 0xcc, 0x66, 0x99 }, { 0xcc, 0x66, 0xcc }, { 0xcc, 0x66, 0xff },
  82. { 0xcc, 0x99, 0x00 }, { 0xcc, 0x99, 0x33 }, { 0xcc, 0x99, 0x66 }, { 0xcc, 0x99, 0x99 }, { 0xcc, 0x99, 0xcc }, { 0xcc, 0x99, 0xff },
  83. { 0xcc, 0xcc, 0x00 }, { 0xcc, 0xcc, 0x33 }, { 0xcc, 0xcc, 0x66 }, { 0xcc, 0xcc, 0x99 }, { 0xcc, 0xcc, 0xcc }, { 0xcc, 0xcc, 0xff },
  84. { 0xcc, 0xff, 0x00 }, { 0xcc, 0xff, 0x33 }, { 0xcc, 0xff, 0x66 }, { 0xcc, 0xff, 0x99 }, { 0xcc, 0xff, 0xcc }, { 0xcc, 0xff, 0xff },
  85. { 0xff, 0x00, 0x00 }, { 0xff, 0x00, 0x33 }, { 0xff, 0x00, 0x66 }, { 0xff, 0x00, 0x99 }, { 0xff, 0x00, 0xcc }, { 0xff, 0x00, 0xff },
  86. { 0xff, 0x33, 0x00 }, { 0xff, 0x33, 0x33 }, { 0xff, 0x33, 0x66 }, { 0xff, 0x33, 0x99 }, { 0xff, 0x33, 0xcc }, { 0xff, 0x33, 0xff },
  87. { 0xff, 0x66, 0x00 }, { 0xff, 0x66, 0x33 }, { 0xff, 0x66, 0x66 }, { 0xff, 0x66, 0x99 }, { 0xff, 0x66, 0xcc }, { 0xff, 0x66, 0xff },
  88. { 0xff, 0x99, 0x00 }, { 0xff, 0x99, 0x33 }, { 0xff, 0x99, 0x66 }, { 0xff, 0x99, 0x99 }, { 0xff, 0x99, 0xcc }, { 0xff, 0x99, 0xff },
  89. { 0xff, 0xcc, 0x00 }, { 0xff, 0xcc, 0x33 }, { 0xff, 0xcc, 0x66 }, { 0xff, 0xcc, 0x99 }, { 0xff, 0xcc, 0xcc }, { 0xff, 0xcc, 0xff },
  90. { 0xff, 0xff, 0x00 }, { 0xff, 0xff, 0x33 }, { 0xff, 0xff, 0x66 }, { 0xff, 0xff, 0x99 }, { 0xff, 0xff, 0xcc }, { 0xff, 0xff, 0xff },
  91. };
  92. /* The GIF format uses reversed order for bitstreams... */
  93. /* at least they don't use PDP_ENDIAN :) */
  94. /* so we 'extend' PutBitContext. hmmm, OOP :) */
  95. /* seems this thing changed slightly since I wrote it... */
  96. #ifdef ALT_BITSTREAM_WRITER
  97. # error no ALT_BITSTREAM_WRITER support for now
  98. #endif
  99. static void gif_put_bits_rev(PutBitContext *s, int n, unsigned int value)
  100. {
  101. unsigned int bit_buf;
  102. int bit_cnt;
  103. #ifdef STATS
  104. st_out_bit_counts[st_current_index] += n;
  105. #endif
  106. // printf("put_bits=%d %x\n", n, value);
  107. assert(n == 32 || value < (1U << n));
  108. bit_buf = s->bit_buf;
  109. bit_cnt = 32 - s->bit_left; /* XXX:lazyness... was = s->bit_cnt; */
  110. // printf("n=%d value=%x cnt=%d buf=%x\n", n, value, bit_cnt, bit_buf);
  111. /* XXX: optimize */
  112. if (n < (32-bit_cnt)) {
  113. bit_buf |= value << (bit_cnt);
  114. bit_cnt+=n;
  115. } else {
  116. bit_buf |= value << (bit_cnt);
  117. *s->buf_ptr = bit_buf & 0xff;
  118. s->buf_ptr[1] = (bit_buf >> 8) & 0xff;
  119. s->buf_ptr[2] = (bit_buf >> 16) & 0xff;
  120. s->buf_ptr[3] = (bit_buf >> 24) & 0xff;
  121. //printf("bitbuf = %08x\n", bit_buf);
  122. s->buf_ptr+=4;
  123. if (s->buf_ptr >= s->buf_end)
  124. puts("bit buffer overflow !!"); // should never happen ! who got rid of the callback ???
  125. // flush_buffer_rev(s);
  126. bit_cnt=bit_cnt + n - 32;
  127. if (bit_cnt == 0) {
  128. bit_buf = 0;
  129. } else {
  130. bit_buf = value >> (n - bit_cnt);
  131. }
  132. }
  133. s->bit_buf = bit_buf;
  134. s->bit_left = 32 - bit_cnt;
  135. }
  136. /* pad the end of the output stream with zeros */
  137. static void gif_flush_put_bits_rev(PutBitContext *s)
  138. {
  139. while (s->bit_left < 32) {
  140. /* XXX: should test end of buffer */
  141. *s->buf_ptr++=s->bit_buf & 0xff;
  142. s->bit_buf>>=8;
  143. s->bit_left+=8;
  144. }
  145. // flush_buffer_rev(s);
  146. s->bit_left=32;
  147. s->bit_buf=0;
  148. }
  149. /* !RevPutBitContext */
  150. /* GIF header */
  151. static int gif_image_write_header(ByteIOContext *pb,
  152. int width, int height, uint32_t *palette)
  153. {
  154. int i;
  155. unsigned int v;
  156. put_tag(pb, "GIF");
  157. put_tag(pb, "89a");
  158. put_le16(pb, width);
  159. put_le16(pb, height);
  160. put_byte(pb, 0xf7); /* flags: global clut, 256 entries */
  161. put_byte(pb, 0x1f); /* background color index */
  162. put_byte(pb, 0); /* aspect ratio */
  163. /* the global palette */
  164. if (!palette) {
  165. put_buffer(pb, (unsigned char *)gif_clut, 216*3);
  166. for(i=0;i<((256-216)*3);i++)
  167. put_byte(pb, 0);
  168. } else {
  169. for(i=0;i<256;i++) {
  170. v = palette[i];
  171. put_byte(pb, (v >> 16) & 0xff);
  172. put_byte(pb, (v >> 8) & 0xff);
  173. put_byte(pb, (v) & 0xff);
  174. }
  175. }
  176. /* application extension header */
  177. /* XXX: not really sure what to put in here... */
  178. #ifdef GIF_ADD_APP_HEADER
  179. put_byte(pb, 0x21);
  180. put_byte(pb, 0xff);
  181. put_byte(pb, 0x0b);
  182. put_tag(pb, "NETSCAPE2.0");
  183. put_byte(pb, 0x03);
  184. put_byte(pb, 0x01);
  185. put_byte(pb, 0x00);
  186. put_byte(pb, 0x00);
  187. #endif
  188. return 0;
  189. }
  190. /* this is maybe slow, but allows for extensions */
  191. static inline unsigned char gif_clut_index(uint8_t r, uint8_t g, uint8_t b)
  192. {
  193. return ((((r)/47)%6)*6*6+(((g)/47)%6)*6+(((b)/47)%6));
  194. }
  195. static int gif_image_write_image(ByteIOContext *pb,
  196. int x1, int y1, int width, int height,
  197. const uint8_t *buf, int linesize, int pix_fmt)
  198. {
  199. PutBitContext p;
  200. uint8_t buffer[200]; /* 100 * 9 / 8 = 113 */
  201. int i, left, w, v;
  202. const uint8_t *ptr;
  203. /* image block */
  204. put_byte(pb, 0x2c);
  205. put_le16(pb, x1);
  206. put_le16(pb, y1);
  207. put_le16(pb, width);
  208. put_le16(pb, height);
  209. put_byte(pb, 0x00); /* flags */
  210. /* no local clut */
  211. put_byte(pb, 0x08);
  212. left= width * height;
  213. init_put_bits(&p, buffer, 130);
  214. /*
  215. * the thing here is the bitstream is written as little packets, with a size byte before
  216. * but it's still the same bitstream between packets (no flush !)
  217. */
  218. ptr = buf;
  219. w = width;
  220. while(left>0) {
  221. gif_put_bits_rev(&p, 9, 0x0100); /* clear code */
  222. for(i=(left<GIF_CHUNKS)?left:GIF_CHUNKS;i;i--) {
  223. if (pix_fmt == PIX_FMT_RGB24) {
  224. v = gif_clut_index(ptr[0], ptr[1], ptr[2]);
  225. ptr+=3;
  226. } else {
  227. v = *ptr++;
  228. }
  229. gif_put_bits_rev(&p, 9, v);
  230. if (--w == 0) {
  231. w = width;
  232. buf += linesize;
  233. ptr = buf;
  234. }
  235. }
  236. if(left<=GIF_CHUNKS) {
  237. gif_put_bits_rev(&p, 9, 0x101); /* end of stream */
  238. gif_flush_put_bits_rev(&p);
  239. }
  240. if(pbBufPtr(&p) - p.buf > 0) {
  241. put_byte(pb, pbBufPtr(&p) - p.buf); /* byte count of the packet */
  242. put_buffer(pb, p.buf, pbBufPtr(&p) - p.buf); /* the actual buffer */
  243. p.buf_ptr = p.buf; /* dequeue the bytes off the bitstream */
  244. }
  245. left-=GIF_CHUNKS;
  246. }
  247. put_byte(pb, 0x00); /* end of image block */
  248. return 0;
  249. }
  250. typedef struct {
  251. int64_t time, file_time;
  252. uint8_t buffer[100]; /* data chunks */
  253. } GIFContext;
  254. static int gif_write_header(AVFormatContext *s)
  255. {
  256. GIFContext *gif = s->priv_data;
  257. ByteIOContext *pb = &s->pb;
  258. AVCodecContext *enc, *video_enc;
  259. int i, width, height/*, rate*/;
  260. /* XXX: do we reject audio streams or just ignore them ?
  261. if(s->nb_streams > 1)
  262. return -1;
  263. */
  264. gif->time = 0;
  265. gif->file_time = 0;
  266. video_enc = NULL;
  267. for(i=0;i<s->nb_streams;i++) {
  268. enc = &s->streams[i]->codec;
  269. if (enc->codec_type != CODEC_TYPE_AUDIO)
  270. video_enc = enc;
  271. }
  272. if (!video_enc) {
  273. av_free(gif);
  274. return -1;
  275. } else {
  276. width = video_enc->width;
  277. height = video_enc->height;
  278. // rate = video_enc->frame_rate;
  279. }
  280. /* XXX: is it allowed ? seems to work so far... */
  281. video_enc->pix_fmt = PIX_FMT_RGB24;
  282. gif_image_write_header(pb, width, height, NULL);
  283. put_flush_packet(&s->pb);
  284. return 0;
  285. }
  286. static int gif_write_video(AVFormatContext *s,
  287. AVCodecContext *enc, const uint8_t *buf, int size)
  288. {
  289. ByteIOContext *pb = &s->pb;
  290. GIFContext *gif = s->priv_data;
  291. int jiffies;
  292. int64_t delay;
  293. /* graphic control extension block */
  294. put_byte(pb, 0x21);
  295. put_byte(pb, 0xf9);
  296. put_byte(pb, 0x04); /* block size */
  297. put_byte(pb, 0x04); /* flags */
  298. /* 1 jiffy is 1/70 s */
  299. /* the delay_time field indicates the number of jiffies - 1 */
  300. delay = gif->file_time - gif->time;
  301. /* XXX: should use delay, in order to be more accurate */
  302. /* instead of using the same rounded value each time */
  303. /* XXX: don't even remember if I really use it for now */
  304. jiffies = (70*enc->frame_rate_base/enc->frame_rate) - 1;
  305. put_le16(pb, jiffies);
  306. put_byte(pb, 0x1f); /* transparent color index */
  307. put_byte(pb, 0x00);
  308. gif_image_write_image(pb, 0, 0, enc->width, enc->height,
  309. buf, enc->width * 3, PIX_FMT_RGB24);
  310. put_flush_packet(&s->pb);
  311. return 0;
  312. }
  313. static int gif_write_packet(AVFormatContext *s, AVPacket *pkt)
  314. {
  315. AVCodecContext *codec = &s->streams[pkt->stream_index]->codec;
  316. if (codec->codec_type == CODEC_TYPE_AUDIO)
  317. return 0; /* just ignore audio */
  318. else
  319. return gif_write_video(s, codec, pkt->data, pkt->size);
  320. }
  321. static int gif_write_trailer(AVFormatContext *s)
  322. {
  323. ByteIOContext *pb = &s->pb;
  324. put_byte(pb, 0x3b);
  325. put_flush_packet(&s->pb);
  326. return 0;
  327. }
  328. /* better than nothing gif image writer */
  329. int gif_write(ByteIOContext *pb, AVImageInfo *info)
  330. {
  331. gif_image_write_header(pb, info->width, info->height,
  332. (uint32_t *)info->pict.data[1]);
  333. gif_image_write_image(pb, 0, 0, info->width, info->height,
  334. info->pict.data[0], info->pict.linesize[0],
  335. PIX_FMT_PAL8);
  336. put_byte(pb, 0x3b);
  337. put_flush_packet(pb);
  338. return 0;
  339. }
  340. static AVOutputFormat gif_oformat = {
  341. "gif",
  342. "GIF Animation",
  343. "image/gif",
  344. "gif",
  345. sizeof(GIFContext),
  346. CODEC_ID_NONE,
  347. CODEC_ID_RAWVIDEO,
  348. gif_write_header,
  349. gif_write_packet,
  350. gif_write_trailer,
  351. };
  352. extern AVInputFormat gif_iformat;
  353. int gif_init(void)
  354. {
  355. av_register_output_format(&gif_oformat);
  356. av_register_input_format(&gif_iformat);
  357. return 0;
  358. }