Mercurial > libavformat.hg
annotate gif.c @ 1220:ea469913fb68 libavformat
Do not set the codec's pixel format in the format's write_header()
| author | lucabe |
|---|---|
| date | Wed, 02 Aug 2006 09:48:05 +0000 |
| parents | d18cc9a1fd02 |
| children | 0899bfe4105c |
| rev | line source |
|---|---|
| 0 | 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 | |
|
896
edbe5c3717f9
Update licensing information: The FSF changed postal address.
diego
parents:
887
diff
changeset
|
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 0 | 18 */ |
| 19 | |
| 20 /* | |
| 21 * First version by Francois Revol revol@free.fr | |
| 22 * | |
| 23 * Features and limitations: | |
| 24 * - currently no compression is performed, | |
| 25 * in fact the size of the data is 9/8 the size of the image in 8bpp | |
| 26 * - uses only a global standard palette | |
| 27 * - tested with IE 5.0, Opera for BeOS, NetPositive (BeOS), and Mozilla (BeOS). | |
| 28 * | |
| 29 * Reference documents: | |
| 30 * http://www.goice.co.jp/member/mo/formats/gif.html | |
| 31 * http://astronomy.swin.edu.au/pbourke/dataformats/gif/ | |
| 32 * http://www.dcs.ed.ac.uk/home/mxr/gfx/2d/GIF89a.txt | |
| 33 * | |
| 34 * this url claims to have an LZW algorithm not covered by Unisys patent: | |
| 35 * http://www.msg.net/utility/whirlgif/gifencod.html | |
| 36 * could help reduce the size of the files _a lot_... | |
| 37 * some sites mentions an RLE type compression also. | |
| 38 */ | |
| 39 | |
| 40 #include "avformat.h" | |
| 628 | 41 #include "bitstream.h" |
| 0 | 42 |
| 43 /* bitstream minipacket size */ | |
| 44 #define GIF_CHUNKS 100 | |
| 45 | |
|
790
80aec794c2ed
Animated GIF looping patch by (Todd Kirby // ffmpeg.php gmail com)
michael
parents:
743
diff
changeset
|
46 /* slows down the decoding (and some browsers don't like it) */ |
|
80aec794c2ed
Animated GIF looping patch by (Todd Kirby // ffmpeg.php gmail com)
michael
parents:
743
diff
changeset
|
47 /* 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 */ |
|
80aec794c2ed
Animated GIF looping patch by (Todd Kirby // ffmpeg.php gmail com)
michael
parents:
743
diff
changeset
|
48 #define GIF_ADD_APP_HEADER // required to enable looping of animated gif |
| 0 | 49 |
| 50 typedef struct { | |
| 51 unsigned char r; | |
| 52 unsigned char g; | |
| 53 unsigned char b; | |
| 54 } rgb_triplet; | |
| 55 | |
| 56 /* we use the standard 216 color palette */ | |
| 57 | |
| 58 /* this script was used to create the palette: | |
| 885 | 59 * 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 |
| 0 | 60 * echo -n "{ 0x$r, 0x$g, 0x$b }, "; done; echo ""; done; done |
| 61 */ | |
| 62 | |
| 63 static const rgb_triplet gif_clut[216] = { | |
| 64 { 0x00, 0x00, 0x00 }, { 0x00, 0x00, 0x33 }, { 0x00, 0x00, 0x66 }, { 0x00, 0x00, 0x99 }, { 0x00, 0x00, 0xcc }, { 0x00, 0x00, 0xff }, | |
| 65 { 0x00, 0x33, 0x00 }, { 0x00, 0x33, 0x33 }, { 0x00, 0x33, 0x66 }, { 0x00, 0x33, 0x99 }, { 0x00, 0x33, 0xcc }, { 0x00, 0x33, 0xff }, | |
| 66 { 0x00, 0x66, 0x00 }, { 0x00, 0x66, 0x33 }, { 0x00, 0x66, 0x66 }, { 0x00, 0x66, 0x99 }, { 0x00, 0x66, 0xcc }, { 0x00, 0x66, 0xff }, | |
| 67 { 0x00, 0x99, 0x00 }, { 0x00, 0x99, 0x33 }, { 0x00, 0x99, 0x66 }, { 0x00, 0x99, 0x99 }, { 0x00, 0x99, 0xcc }, { 0x00, 0x99, 0xff }, | |
| 68 { 0x00, 0xcc, 0x00 }, { 0x00, 0xcc, 0x33 }, { 0x00, 0xcc, 0x66 }, { 0x00, 0xcc, 0x99 }, { 0x00, 0xcc, 0xcc }, { 0x00, 0xcc, 0xff }, | |
| 69 { 0x00, 0xff, 0x00 }, { 0x00, 0xff, 0x33 }, { 0x00, 0xff, 0x66 }, { 0x00, 0xff, 0x99 }, { 0x00, 0xff, 0xcc }, { 0x00, 0xff, 0xff }, | |
| 70 { 0x33, 0x00, 0x00 }, { 0x33, 0x00, 0x33 }, { 0x33, 0x00, 0x66 }, { 0x33, 0x00, 0x99 }, { 0x33, 0x00, 0xcc }, { 0x33, 0x00, 0xff }, | |
| 71 { 0x33, 0x33, 0x00 }, { 0x33, 0x33, 0x33 }, { 0x33, 0x33, 0x66 }, { 0x33, 0x33, 0x99 }, { 0x33, 0x33, 0xcc }, { 0x33, 0x33, 0xff }, | |
| 72 { 0x33, 0x66, 0x00 }, { 0x33, 0x66, 0x33 }, { 0x33, 0x66, 0x66 }, { 0x33, 0x66, 0x99 }, { 0x33, 0x66, 0xcc }, { 0x33, 0x66, 0xff }, | |
| 73 { 0x33, 0x99, 0x00 }, { 0x33, 0x99, 0x33 }, { 0x33, 0x99, 0x66 }, { 0x33, 0x99, 0x99 }, { 0x33, 0x99, 0xcc }, { 0x33, 0x99, 0xff }, | |
| 74 { 0x33, 0xcc, 0x00 }, { 0x33, 0xcc, 0x33 }, { 0x33, 0xcc, 0x66 }, { 0x33, 0xcc, 0x99 }, { 0x33, 0xcc, 0xcc }, { 0x33, 0xcc, 0xff }, | |
| 75 { 0x33, 0xff, 0x00 }, { 0x33, 0xff, 0x33 }, { 0x33, 0xff, 0x66 }, { 0x33, 0xff, 0x99 }, { 0x33, 0xff, 0xcc }, { 0x33, 0xff, 0xff }, | |
| 76 { 0x66, 0x00, 0x00 }, { 0x66, 0x00, 0x33 }, { 0x66, 0x00, 0x66 }, { 0x66, 0x00, 0x99 }, { 0x66, 0x00, 0xcc }, { 0x66, 0x00, 0xff }, | |
| 77 { 0x66, 0x33, 0x00 }, { 0x66, 0x33, 0x33 }, { 0x66, 0x33, 0x66 }, { 0x66, 0x33, 0x99 }, { 0x66, 0x33, 0xcc }, { 0x66, 0x33, 0xff }, | |
| 78 { 0x66, 0x66, 0x00 }, { 0x66, 0x66, 0x33 }, { 0x66, 0x66, 0x66 }, { 0x66, 0x66, 0x99 }, { 0x66, 0x66, 0xcc }, { 0x66, 0x66, 0xff }, | |
| 79 { 0x66, 0x99, 0x00 }, { 0x66, 0x99, 0x33 }, { 0x66, 0x99, 0x66 }, { 0x66, 0x99, 0x99 }, { 0x66, 0x99, 0xcc }, { 0x66, 0x99, 0xff }, | |
| 80 { 0x66, 0xcc, 0x00 }, { 0x66, 0xcc, 0x33 }, { 0x66, 0xcc, 0x66 }, { 0x66, 0xcc, 0x99 }, { 0x66, 0xcc, 0xcc }, { 0x66, 0xcc, 0xff }, | |
| 81 { 0x66, 0xff, 0x00 }, { 0x66, 0xff, 0x33 }, { 0x66, 0xff, 0x66 }, { 0x66, 0xff, 0x99 }, { 0x66, 0xff, 0xcc }, { 0x66, 0xff, 0xff }, | |
| 82 { 0x99, 0x00, 0x00 }, { 0x99, 0x00, 0x33 }, { 0x99, 0x00, 0x66 }, { 0x99, 0x00, 0x99 }, { 0x99, 0x00, 0xcc }, { 0x99, 0x00, 0xff }, | |
| 83 { 0x99, 0x33, 0x00 }, { 0x99, 0x33, 0x33 }, { 0x99, 0x33, 0x66 }, { 0x99, 0x33, 0x99 }, { 0x99, 0x33, 0xcc }, { 0x99, 0x33, 0xff }, | |
| 84 { 0x99, 0x66, 0x00 }, { 0x99, 0x66, 0x33 }, { 0x99, 0x66, 0x66 }, { 0x99, 0x66, 0x99 }, { 0x99, 0x66, 0xcc }, { 0x99, 0x66, 0xff }, | |
| 85 { 0x99, 0x99, 0x00 }, { 0x99, 0x99, 0x33 }, { 0x99, 0x99, 0x66 }, { 0x99, 0x99, 0x99 }, { 0x99, 0x99, 0xcc }, { 0x99, 0x99, 0xff }, | |
| 86 { 0x99, 0xcc, 0x00 }, { 0x99, 0xcc, 0x33 }, { 0x99, 0xcc, 0x66 }, { 0x99, 0xcc, 0x99 }, { 0x99, 0xcc, 0xcc }, { 0x99, 0xcc, 0xff }, | |
| 87 { 0x99, 0xff, 0x00 }, { 0x99, 0xff, 0x33 }, { 0x99, 0xff, 0x66 }, { 0x99, 0xff, 0x99 }, { 0x99, 0xff, 0xcc }, { 0x99, 0xff, 0xff }, | |
| 88 { 0xcc, 0x00, 0x00 }, { 0xcc, 0x00, 0x33 }, { 0xcc, 0x00, 0x66 }, { 0xcc, 0x00, 0x99 }, { 0xcc, 0x00, 0xcc }, { 0xcc, 0x00, 0xff }, | |
| 89 { 0xcc, 0x33, 0x00 }, { 0xcc, 0x33, 0x33 }, { 0xcc, 0x33, 0x66 }, { 0xcc, 0x33, 0x99 }, { 0xcc, 0x33, 0xcc }, { 0xcc, 0x33, 0xff }, | |
| 90 { 0xcc, 0x66, 0x00 }, { 0xcc, 0x66, 0x33 }, { 0xcc, 0x66, 0x66 }, { 0xcc, 0x66, 0x99 }, { 0xcc, 0x66, 0xcc }, { 0xcc, 0x66, 0xff }, | |
| 91 { 0xcc, 0x99, 0x00 }, { 0xcc, 0x99, 0x33 }, { 0xcc, 0x99, 0x66 }, { 0xcc, 0x99, 0x99 }, { 0xcc, 0x99, 0xcc }, { 0xcc, 0x99, 0xff }, | |
| 92 { 0xcc, 0xcc, 0x00 }, { 0xcc, 0xcc, 0x33 }, { 0xcc, 0xcc, 0x66 }, { 0xcc, 0xcc, 0x99 }, { 0xcc, 0xcc, 0xcc }, { 0xcc, 0xcc, 0xff }, | |
| 93 { 0xcc, 0xff, 0x00 }, { 0xcc, 0xff, 0x33 }, { 0xcc, 0xff, 0x66 }, { 0xcc, 0xff, 0x99 }, { 0xcc, 0xff, 0xcc }, { 0xcc, 0xff, 0xff }, | |
| 94 { 0xff, 0x00, 0x00 }, { 0xff, 0x00, 0x33 }, { 0xff, 0x00, 0x66 }, { 0xff, 0x00, 0x99 }, { 0xff, 0x00, 0xcc }, { 0xff, 0x00, 0xff }, | |
| 95 { 0xff, 0x33, 0x00 }, { 0xff, 0x33, 0x33 }, { 0xff, 0x33, 0x66 }, { 0xff, 0x33, 0x99 }, { 0xff, 0x33, 0xcc }, { 0xff, 0x33, 0xff }, | |
| 96 { 0xff, 0x66, 0x00 }, { 0xff, 0x66, 0x33 }, { 0xff, 0x66, 0x66 }, { 0xff, 0x66, 0x99 }, { 0xff, 0x66, 0xcc }, { 0xff, 0x66, 0xff }, | |
| 97 { 0xff, 0x99, 0x00 }, { 0xff, 0x99, 0x33 }, { 0xff, 0x99, 0x66 }, { 0xff, 0x99, 0x99 }, { 0xff, 0x99, 0xcc }, { 0xff, 0x99, 0xff }, | |
| 98 { 0xff, 0xcc, 0x00 }, { 0xff, 0xcc, 0x33 }, { 0xff, 0xcc, 0x66 }, { 0xff, 0xcc, 0x99 }, { 0xff, 0xcc, 0xcc }, { 0xff, 0xcc, 0xff }, | |
| 99 { 0xff, 0xff, 0x00 }, { 0xff, 0xff, 0x33 }, { 0xff, 0xff, 0x66 }, { 0xff, 0xff, 0x99 }, { 0xff, 0xff, 0xcc }, { 0xff, 0xff, 0xff }, | |
| 100 }; | |
| 101 | |
| 102 /* The GIF format uses reversed order for bitstreams... */ | |
| 103 /* at least they don't use PDP_ENDIAN :) */ | |
| 104 /* so we 'extend' PutBitContext. hmmm, OOP :) */ | |
| 105 /* seems this thing changed slightly since I wrote it... */ | |
| 106 | |
| 107 #ifdef ALT_BITSTREAM_WRITER | |
| 108 # error no ALT_BITSTREAM_WRITER support for now | |
| 109 #endif | |
| 110 | |
| 111 static void gif_put_bits_rev(PutBitContext *s, int n, unsigned int value) | |
| 112 { | |
| 113 unsigned int bit_buf; | |
| 114 int bit_cnt; | |
| 115 | |
| 116 // printf("put_bits=%d %x\n", n, value); | |
| 117 assert(n == 32 || value < (1U << n)); | |
| 118 | |
| 119 bit_buf = s->bit_buf; | |
| 120 bit_cnt = 32 - s->bit_left; /* XXX:lazyness... was = s->bit_cnt; */ | |
| 121 | |
| 122 // printf("n=%d value=%x cnt=%d buf=%x\n", n, value, bit_cnt, bit_buf); | |
| 123 /* XXX: optimize */ | |
| 124 if (n < (32-bit_cnt)) { | |
| 125 bit_buf |= value << (bit_cnt); | |
| 126 bit_cnt+=n; | |
| 127 } else { | |
| 128 bit_buf |= value << (bit_cnt); | |
| 885 | 129 |
| 0 | 130 *s->buf_ptr = bit_buf & 0xff; |
| 131 s->buf_ptr[1] = (bit_buf >> 8) & 0xff; | |
| 132 s->buf_ptr[2] = (bit_buf >> 16) & 0xff; | |
| 133 s->buf_ptr[3] = (bit_buf >> 24) & 0xff; | |
| 885 | 134 |
| 0 | 135 //printf("bitbuf = %08x\n", bit_buf); |
| 136 s->buf_ptr+=4; | |
| 137 if (s->buf_ptr >= s->buf_end) | |
| 138 puts("bit buffer overflow !!"); // should never happen ! who got rid of the callback ??? | |
| 139 // flush_buffer_rev(s); | |
| 140 bit_cnt=bit_cnt + n - 32; | |
| 141 if (bit_cnt == 0) { | |
| 142 bit_buf = 0; | |
| 143 } else { | |
| 144 bit_buf = value >> (n - bit_cnt); | |
| 145 } | |
| 146 } | |
| 147 | |
| 148 s->bit_buf = bit_buf; | |
| 149 s->bit_left = 32 - bit_cnt; | |
| 150 } | |
| 151 | |
| 152 /* pad the end of the output stream with zeros */ | |
| 153 static void gif_flush_put_bits_rev(PutBitContext *s) | |
| 154 { | |
| 155 while (s->bit_left < 32) { | |
| 156 /* XXX: should test end of buffer */ | |
| 157 *s->buf_ptr++=s->bit_buf & 0xff; | |
| 158 s->bit_buf>>=8; | |
| 159 s->bit_left+=8; | |
| 160 } | |
| 161 // flush_buffer_rev(s); | |
| 162 s->bit_left=32; | |
| 163 s->bit_buf=0; | |
| 164 } | |
| 165 | |
| 166 /* !RevPutBitContext */ | |
| 167 | |
|
51
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
168 /* GIF header */ |
| 885 | 169 static int gif_image_write_header(ByteIOContext *pb, |
|
790
80aec794c2ed
Animated GIF looping patch by (Todd Kirby // ffmpeg.php gmail com)
michael
parents:
743
diff
changeset
|
170 int width, int height, int loop_count, |
|
80aec794c2ed
Animated GIF looping patch by (Todd Kirby // ffmpeg.php gmail com)
michael
parents:
743
diff
changeset
|
171 uint32_t *palette) |
|
51
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
172 { |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
173 int i; |
| 60 | 174 unsigned int v; |
|
51
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
175 |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
176 put_tag(pb, "GIF"); |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
177 put_tag(pb, "89a"); |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
178 put_le16(pb, width); |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
179 put_le16(pb, height); |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
180 |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
181 put_byte(pb, 0xf7); /* flags: global clut, 256 entries */ |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
182 put_byte(pb, 0x1f); /* background color index */ |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
183 put_byte(pb, 0); /* aspect ratio */ |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
184 |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
185 /* the global palette */ |
| 60 | 186 if (!palette) { |
|
1123
6992dd78ff68
Add (mostly) const to variable and parameter declaration, where a char* was
diego
parents:
896
diff
changeset
|
187 put_buffer(pb, (const unsigned char *)gif_clut, 216*3); |
| 60 | 188 for(i=0;i<((256-216)*3);i++) |
| 189 put_byte(pb, 0); | |
| 190 } else { | |
| 191 for(i=0;i<256;i++) { | |
| 192 v = palette[i]; | |
| 193 put_byte(pb, (v >> 16) & 0xff); | |
| 194 put_byte(pb, (v >> 8) & 0xff); | |
| 195 put_byte(pb, (v) & 0xff); | |
| 196 } | |
| 197 } | |
|
51
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
198 |
| 887 | 199 /* update: this is the 'NETSCAPE EXTENSION' that allows for looped animated gif |
| 200 see http://members.aol.com/royalef/gifabout.htm#net-extension | |
|
790
80aec794c2ed
Animated GIF looping patch by (Todd Kirby // ffmpeg.php gmail com)
michael
parents:
743
diff
changeset
|
201 |
| 887 | 202 byte 1 : 33 (hex 0x21) GIF Extension code |
| 203 byte 2 : 255 (hex 0xFF) Application Extension Label | |
| 204 byte 3 : 11 (hex (0x0B) Length of Application Block | |
| 205 (eleven bytes of data to follow) | |
| 206 bytes 4 to 11 : "NETSCAPE" | |
| 207 bytes 12 to 14 : "2.0" | |
| 208 byte 15 : 3 (hex 0x03) Length of Data Sub-Block | |
| 209 (three bytes of data to follow) | |
| 210 byte 16 : 1 (hex 0x01) | |
| 211 bytes 17 to 18 : 0 to 65535, an unsigned integer in | |
| 212 lo-hi byte format. This indicate the | |
| 213 number of iterations the loop should | |
| 214 be executed. | |
| 215 bytes 19 : 0 (hex 0x00) a Data Sub-block Terminator | |
| 216 */ | |
|
790
80aec794c2ed
Animated GIF looping patch by (Todd Kirby // ffmpeg.php gmail com)
michael
parents:
743
diff
changeset
|
217 |
|
51
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
218 /* application extension header */ |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
219 #ifdef GIF_ADD_APP_HEADER |
|
790
80aec794c2ed
Animated GIF looping patch by (Todd Kirby // ffmpeg.php gmail com)
michael
parents:
743
diff
changeset
|
220 if (loop_count >= 0 && loop_count <= 65535) { |
|
51
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
221 put_byte(pb, 0x21); |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
222 put_byte(pb, 0xff); |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
223 put_byte(pb, 0x0b); |
|
790
80aec794c2ed
Animated GIF looping patch by (Todd Kirby // ffmpeg.php gmail com)
michael
parents:
743
diff
changeset
|
224 put_tag(pb, "NETSCAPE2.0"); // bytes 4 to 14 |
|
80aec794c2ed
Animated GIF looping patch by (Todd Kirby // ffmpeg.php gmail com)
michael
parents:
743
diff
changeset
|
225 put_byte(pb, 0x03); // byte 15 |
|
80aec794c2ed
Animated GIF looping patch by (Todd Kirby // ffmpeg.php gmail com)
michael
parents:
743
diff
changeset
|
226 put_byte(pb, 0x01); // byte 16 |
|
80aec794c2ed
Animated GIF looping patch by (Todd Kirby // ffmpeg.php gmail com)
michael
parents:
743
diff
changeset
|
227 put_le16(pb, (uint16_t)loop_count); |
|
80aec794c2ed
Animated GIF looping patch by (Todd Kirby // ffmpeg.php gmail com)
michael
parents:
743
diff
changeset
|
228 put_byte(pb, 0x00); // byte 19 |
|
80aec794c2ed
Animated GIF looping patch by (Todd Kirby // ffmpeg.php gmail com)
michael
parents:
743
diff
changeset
|
229 } |
|
51
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
230 #endif |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
231 return 0; |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
232 } |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
233 |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
234 /* this is maybe slow, but allows for extensions */ |
| 65 | 235 static inline unsigned char gif_clut_index(uint8_t r, uint8_t g, uint8_t b) |
|
51
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
236 { |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
237 return ((((r)/47)%6)*6*6+(((g)/47)%6)*6+(((b)/47)%6)); |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
238 } |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
239 |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
240 |
| 885 | 241 static int gif_image_write_image(ByteIOContext *pb, |
|
51
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
242 int x1, int y1, int width, int height, |
| 241 | 243 const uint8_t *buf, int linesize, int pix_fmt) |
|
51
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
244 { |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
245 PutBitContext p; |
| 65 | 246 uint8_t buffer[200]; /* 100 * 9 / 8 = 113 */ |
| 60 | 247 int i, left, w, v; |
| 241 | 248 const uint8_t *ptr; |
|
51
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
249 /* image block */ |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
250 |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
251 put_byte(pb, 0x2c); |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
252 put_le16(pb, x1); |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
253 put_le16(pb, y1); |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
254 put_le16(pb, width); |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
255 put_le16(pb, height); |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
256 put_byte(pb, 0x00); /* flags */ |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
257 /* no local clut */ |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
258 |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
259 put_byte(pb, 0x08); |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
260 |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
261 left= width * height; |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
262 |
| 276 | 263 init_put_bits(&p, buffer, 130); |
|
51
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
264 |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
265 /* |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
266 * the thing here is the bitstream is written as little packets, with a size byte before |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
267 * but it's still the same bitstream between packets (no flush !) |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
268 */ |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
269 ptr = buf; |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
270 w = width; |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
271 while(left>0) { |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
272 |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
273 gif_put_bits_rev(&p, 9, 0x0100); /* clear code */ |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
274 |
| 507 | 275 for(i=(left<GIF_CHUNKS)?left:GIF_CHUNKS;i;i--) { |
| 60 | 276 if (pix_fmt == PIX_FMT_RGB24) { |
| 277 v = gif_clut_index(ptr[0], ptr[1], ptr[2]); | |
| 278 ptr+=3; | |
| 279 } else { | |
| 280 v = *ptr++; | |
| 281 } | |
| 282 gif_put_bits_rev(&p, 9, v); | |
|
51
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
283 if (--w == 0) { |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
284 w = width; |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
285 buf += linesize; |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
286 ptr = buf; |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
287 } |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
288 } |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
289 |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
290 if(left<=GIF_CHUNKS) { |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
291 gif_put_bits_rev(&p, 9, 0x101); /* end of stream */ |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
292 gif_flush_put_bits_rev(&p); |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
293 } |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
294 if(pbBufPtr(&p) - p.buf > 0) { |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
295 put_byte(pb, pbBufPtr(&p) - p.buf); /* byte count of the packet */ |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
296 put_buffer(pb, p.buf, pbBufPtr(&p) - p.buf); /* the actual buffer */ |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
297 p.buf_ptr = p.buf; /* dequeue the bytes off the bitstream */ |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
298 } |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
299 left-=GIF_CHUNKS; |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
300 } |
| 507 | 301 put_byte(pb, 0x00); /* end of image block */ |
| 885 | 302 |
|
51
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
303 return 0; |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
304 } |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
305 |
| 0 | 306 typedef struct { |
| 65 | 307 int64_t time, file_time; |
| 308 uint8_t buffer[100]; /* data chunks */ | |
| 0 | 309 } GIFContext; |
| 310 | |
| 311 static int gif_write_header(AVFormatContext *s) | |
| 312 { | |
| 313 GIFContext *gif = s->priv_data; | |
| 314 ByteIOContext *pb = &s->pb; | |
| 315 AVCodecContext *enc, *video_enc; | |
|
790
80aec794c2ed
Animated GIF looping patch by (Todd Kirby // ffmpeg.php gmail com)
michael
parents:
743
diff
changeset
|
316 int i, width, height, loop_count /*, rate*/; |
| 0 | 317 |
| 318 /* XXX: do we reject audio streams or just ignore them ? | |
| 319 if(s->nb_streams > 1) | |
| 320 return -1; | |
| 321 */ | |
| 322 gif->time = 0; | |
| 323 gif->file_time = 0; | |
| 324 | |
| 325 video_enc = NULL; | |
| 326 for(i=0;i<s->nb_streams;i++) { | |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
790
diff
changeset
|
327 enc = s->streams[i]->codec; |
| 0 | 328 if (enc->codec_type != CODEC_TYPE_AUDIO) |
| 329 video_enc = enc; | |
| 330 } | |
| 331 | |
| 332 if (!video_enc) { | |
| 333 av_free(gif); | |
| 334 return -1; | |
| 335 } else { | |
| 336 width = video_enc->width; | |
| 337 height = video_enc->height; | |
|
790
80aec794c2ed
Animated GIF looping patch by (Todd Kirby // ffmpeg.php gmail com)
michael
parents:
743
diff
changeset
|
338 loop_count = s->loop_output; |
| 743 | 339 // rate = video_enc->time_base.den; |
| 0 | 340 } |
| 341 | |
|
1220
ea469913fb68
Do not set the codec's pixel format in the format's write_header()
lucabe
parents:
1169
diff
changeset
|
342 if (video_enc->pix_fmt != PIX_FMT_RGB24) { |
|
ea469913fb68
Do not set the codec's pixel format in the format's write_header()
lucabe
parents:
1169
diff
changeset
|
343 av_log(s, AV_LOG_ERROR, "ERROR: gif only handles the rgb24 pixel format. Use -pix_fmt rgb24.\n"); |
|
ea469913fb68
Do not set the codec's pixel format in the format's write_header()
lucabe
parents:
1169
diff
changeset
|
344 return AVERROR_IO; |
|
ea469913fb68
Do not set the codec's pixel format in the format's write_header()
lucabe
parents:
1169
diff
changeset
|
345 } |
| 0 | 346 |
|
790
80aec794c2ed
Animated GIF looping patch by (Todd Kirby // ffmpeg.php gmail com)
michael
parents:
743
diff
changeset
|
347 gif_image_write_header(pb, width, height, loop_count, NULL); |
| 0 | 348 |
| 349 put_flush_packet(&s->pb); | |
| 350 return 0; | |
| 351 } | |
| 352 | |
| 885 | 353 static int gif_write_video(AVFormatContext *s, |
| 241 | 354 AVCodecContext *enc, const uint8_t *buf, int size) |
| 0 | 355 { |
| 356 ByteIOContext *pb = &s->pb; | |
| 357 GIFContext *gif = s->priv_data; | |
|
51
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
358 int jiffies; |
| 65 | 359 int64_t delay; |
| 0 | 360 |
| 361 /* graphic control extension block */ | |
| 362 put_byte(pb, 0x21); | |
| 363 put_byte(pb, 0xf9); | |
| 364 put_byte(pb, 0x04); /* block size */ | |
| 365 put_byte(pb, 0x04); /* flags */ | |
| 885 | 366 |
| 0 | 367 /* 1 jiffy is 1/70 s */ |
| 368 /* the delay_time field indicates the number of jiffies - 1 */ | |
| 369 delay = gif->file_time - gif->time; | |
| 370 | |
| 371 /* XXX: should use delay, in order to be more accurate */ | |
| 372 /* instead of using the same rounded value each time */ | |
| 373 /* XXX: don't even remember if I really use it for now */ | |
| 743 | 374 jiffies = (70*enc->time_base.num/enc->time_base.den) - 1; |
| 0 | 375 |
| 376 put_le16(pb, jiffies); | |
| 377 | |
| 378 put_byte(pb, 0x1f); /* transparent color index */ | |
| 379 put_byte(pb, 0x00); | |
| 380 | |
|
51
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
381 gif_image_write_image(pb, 0, 0, enc->width, enc->height, |
| 60 | 382 buf, enc->width * 3, PIX_FMT_RGB24); |
| 0 | 383 |
| 384 put_flush_packet(&s->pb); | |
| 385 return 0; | |
| 386 } | |
| 387 | |
| 468 | 388 static int gif_write_packet(AVFormatContext *s, AVPacket *pkt) |
| 0 | 389 { |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
790
diff
changeset
|
390 AVCodecContext *codec = s->streams[pkt->stream_index]->codec; |
| 0 | 391 if (codec->codec_type == CODEC_TYPE_AUDIO) |
| 392 return 0; /* just ignore audio */ | |
| 393 else | |
| 468 | 394 return gif_write_video(s, codec, pkt->data, pkt->size); |
| 0 | 395 } |
| 396 | |
| 397 static int gif_write_trailer(AVFormatContext *s) | |
| 398 { | |
| 399 ByteIOContext *pb = &s->pb; | |
| 400 | |
| 401 put_byte(pb, 0x3b); | |
| 402 put_flush_packet(&s->pb); | |
| 403 return 0; | |
| 404 } | |
| 405 | |
|
51
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
406 /* better than nothing gif image writer */ |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
407 int gif_write(ByteIOContext *pb, AVImageInfo *info) |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
408 { |
| 885 | 409 gif_image_write_header(pb, info->width, info->height, AVFMT_NOOUTPUTLOOP, |
| 60 | 410 (uint32_t *)info->pict.data[1]); |
| 885 | 411 gif_image_write_image(pb, 0, 0, info->width, info->height, |
| 412 info->pict.data[0], info->pict.linesize[0], | |
| 60 | 413 PIX_FMT_PAL8); |
|
51
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
414 put_byte(pb, 0x3b); |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
415 put_flush_packet(pb); |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
416 return 0; |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
417 } |
|
7c5d91c4ca14
added primitive image GIF encoder based on animated gif encoder
bellard
parents:
46
diff
changeset
|
418 |
| 1169 | 419 AVOutputFormat gif_muxer = { |
| 0 | 420 "gif", |
| 421 "GIF Animation", | |
| 422 "image/gif", | |
| 423 "gif", | |
| 424 sizeof(GIFContext), | |
| 425 CODEC_ID_NONE, | |
| 426 CODEC_ID_RAWVIDEO, | |
| 427 gif_write_header, | |
| 428 gif_write_packet, | |
| 429 gif_write_trailer, | |
| 430 }; |
