[Ffmpeg-cvslog] r8700 - trunk/libavcodec/lzwenc.c
michael
subversion
Tue Apr 10 00:21:49 CEST 2007
Author: michael
Date: Tue Apr 10 00:21:49 2007
New Revision: 8700
Modified:
trunk/libavcodec/lzwenc.c
Log:
remove code_prefix variable, no speed change
Modified: trunk/libavcodec/lzwenc.c
==============================================================================
--- trunk/libavcodec/lzwenc.c (original)
+++ trunk/libavcodec/lzwenc.c Tue Apr 10 00:21:49 2007
@@ -220,29 +220,27 @@ void ff_lzw_encode_init(LZWEncodeState *
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);
}
More information about the ffmpeg-cvslog
mailing list