3 * Copyright (c) 2007 Bartlomiej Wolowiec
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
25 * @author Bartlomiej Wolowiec
33 #define LZW_MAXBITS 12
34 #define LZW_SIZTABLE (1<<LZW_MAXBITS)
35 #define LZW_HASH_SIZE 16411
36 #define LZW_HASH_SHIFT 6
38 #define LZW_PREFIX_EMPTY -1
39 #define LZW_PREFIX_FREE -2
41 /** One code in hash table */
43 /// Hash code of prefix, LZW_PREFIX_EMPTY if empty prefix, or LZW_PREFIX_FREE if no code
45 int code; ///< LZW code
46 uint8_t suffix; ///< Last character in code block
49 /** LZW encode state */
50 typedef struct LZWEncodeState {
51 int clear_code; ///< Value of clear code
52 int end_code; ///< Value of end code
53 Code tab[LZW_HASH_SIZE]; ///< Hash table
54 int tabsize; ///< Number of values in hash table
55 int bits; ///< Actual bits code
56 int bufsize; ///< Size of output buffer
57 PutBitContext pb; ///< Put bit context for output
58 int maxbits; ///< Max bits code
59 int maxcode; ///< Max value of code
60 int output_bytes; ///< Number of written bytes
61 int last_code; ///< Value of last output code or LZW_PREFIX_EMPTY
62 enum FF_LZW_MODES mode; ///< TIFF or GIF
63 int little_endian; ///< GIF is LE while TIFF is BE
67 const int ff_lzw_encode_state_size = sizeof(LZWEncodeState);
70 * Hash function adding character
71 * @param head LZW code for prefix
72 * @param add Character to add
73 * @return New hash value
75 static inline int hash(int head, const int add)
77 head ^= (add << LZW_HASH_SHIFT);
78 if (head >= LZW_HASH_SIZE)
79 head -= LZW_HASH_SIZE;
80 av_assert2(head >= 0 && head < LZW_HASH_SIZE);
85 * Hash function calculates next hash value
86 * @param head Actual hash code
87 * @param offset Offset calculated by hashOffset
88 * @return New hash value
90 static inline int hashNext(int head, const int offset)
94 head += LZW_HASH_SIZE;
99 * Hash function calculates hash offset
100 * @param head Actual hash code
101 * @return Hash offset
103 static inline int hashOffset(const int head)
105 return head ? LZW_HASH_SIZE - head : 1;
109 * Write one code to stream
111 * @param c code to write
113 static inline void writeCode(LZWEncodeState * s, int c)
115 av_assert2(0 <= c && c < 1 << s->bits);
116 if (s->little_endian)
117 put_bits_le(&s->pb, s->bits, c);
119 put_bits(&s->pb, s->bits, c);
124 * Find LZW code for block
126 * @param c Last character in block
127 * @param hash_prefix LZW code for prefix
128 * @return LZW code for block or -1 if not found in table
130 static inline int findCode(LZWEncodeState * s, uint8_t c, int hash_prefix)
132 int h = hash(FFMAX(hash_prefix, 0), c);
133 int hash_offset = hashOffset(h);
135 while (s->tab[h].hash_prefix != LZW_PREFIX_FREE) {
136 if ((s->tab[h].suffix == c)
137 && (s->tab[h].hash_prefix == hash_prefix))
139 h = hashNext(h, hash_offset);
146 * Add block to LZW code table
148 * @param c Last character in block
149 * @param hash_prefix LZW code for prefix
150 * @param hash_code LZW code for bytes block
152 static inline void addCode(LZWEncodeState * s, uint8_t c, int hash_prefix, int hash_code)
154 s->tab[hash_code].code = s->tabsize;
155 s->tab[hash_code].suffix = c;
156 s->tab[hash_code].hash_prefix = hash_prefix;
160 if (s->tabsize >= (1 << s->bits) + (s->mode == FF_LZW_GIF))
165 * Clear LZW code table
168 static void clearTable(LZWEncodeState * s)
172 writeCode(s, s->clear_code);
174 for (i = 0; i < LZW_HASH_SIZE; i++) {
175 s->tab[i].hash_prefix = LZW_PREFIX_FREE;
177 for (i = 0; i < 256; i++) {
180 s->tab[h].suffix = i;
181 s->tab[h].hash_prefix = LZW_PREFIX_EMPTY;
187 * Calculate number of bytes written
188 * @param s LZW encode state
189 * @return Number of bytes written
191 static int writtenBytes(LZWEncodeState *s){
192 int ret = put_bytes_count(&s->pb, 0);
193 ret -= s->output_bytes;
194 s->output_bytes += ret;
199 * Initialize LZW encoder. Please set s->clear_code, s->end_code and s->maxbits before run.
201 * @param outbuf Output buffer
202 * @param outsize Size of output buffer
203 * @param maxbits Maximum length of code
205 void ff_lzw_encode_init(LZWEncodeState *s, uint8_t *outbuf, int outsize,
206 int maxbits, enum FF_LZW_MODES mode, int little_endian)
210 s->maxbits = maxbits;
211 init_put_bits(&s->pb, outbuf, outsize);
212 s->bufsize = outsize;
213 av_assert0(s->maxbits >= 9 && s->maxbits <= LZW_MAXBITS);
214 s->maxcode = 1 << s->maxbits;
216 s->last_code = LZW_PREFIX_EMPTY;
219 s->little_endian = little_endian;
223 * LZW main compress function
225 * @param inbuf Input buffer
226 * @param insize Size of input buffer
227 * @return Number of bytes written or -1 on error
229 int ff_lzw_encode(LZWEncodeState * s, const uint8_t * inbuf, int insize)
233 if(insize * 3 > (s->bufsize - s->output_bytes) * 2){
237 if (s->last_code == LZW_PREFIX_EMPTY)
240 for (i = 0; i < insize; i++) {
241 uint8_t c = *inbuf++;
242 int code = findCode(s, c, s->last_code);
243 if (s->tab[code].hash_prefix == LZW_PREFIX_FREE) {
244 writeCode(s, s->last_code);
245 addCode(s, c, s->last_code, code);
248 s->last_code = s->tab[code].code;
249 if (s->tabsize >= s->maxcode - 1) {
254 return writtenBytes(s);
258 * Write end code and flush bitstream
260 * @return Number of bytes written or -1 on error
262 int ff_lzw_encode_flush(LZWEncodeState *s)
264 if (s->last_code != -1)
265 writeCode(s, s->last_code);
266 writeCode(s, s->end_code);
267 if (s->little_endian) {
268 if (s->mode == FF_LZW_GIF)
269 put_bits_le(&s->pb, 1, 0);
271 flush_put_bits_le(&s->pb);
273 if (s->mode == FF_LZW_GIF)
274 put_bits(&s->pb, 1, 0);
276 flush_put_bits(&s->pb);
280 return writtenBytes(s);