remove code_prefix variable, no speed change

Originally committed as revision 8700 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2007-04-09 22:21:49 +00:00
parent adf6640c8c
commit 0ddfb84d6d

View File

@ -220,29 +220,27 @@ void ff_lzw_encode_init(LZWEncodeState * s, uint8_t * outbuf, int outsize, int m
int ff_lzw_encode(LZWEncodeState * s, const uint8_t * inbuf, int insize)
{
int i;
int code_prefix = s->last_code;
if(insize * 3 > (s->bufsize - s->output_bytes) * 2){
return -1;
}
if (code_prefix == LZW_PREFIX_EMPTY)
if (s->last_code == LZW_PREFIX_EMPTY)
clearTable(s);
for (i = 0; i < insize; i++) {
uint8_t c = *inbuf++;
int code = findCode(s, c, code_prefix);
int code = findCode(s, c, s->last_code);
if (s->tab[code].hash_prefix == LZW_PREFIX_FREE) {
writeCode(s, code_prefix);
addCode(s, c, code_prefix, code);
writeCode(s, s->last_code);
addCode(s, c, s->last_code, code);
code= hash(0, c);
}
code_prefix = s->tab[code].code;
s->last_code = s->tab[code].code;
if (s->tabsize >= s->maxcode - 1) {
clearTable(s);
}
}
s->last_code = code_prefix;
return writtenBytes(s);
}