Commit c4a7b861 authored by Michael Niedermayer's avatar Michael Niedermayer

superflouos ()

Originally committed as revision 8701 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 0ddfb84d
...@@ -183,7 +183,7 @@ static void clearTable(LZWEncodeState * s) ...@@ -183,7 +183,7 @@ static void clearTable(LZWEncodeState * s)
* @return Number of bytes written * @return Number of bytes written
*/ */
static int writtenBytes(LZWEncodeState *s){ static int writtenBytes(LZWEncodeState *s){
int ret = (put_bits_count(&s->pb)) >> 3; int ret = put_bits_count(&s->pb) >> 3;
ret -= s->output_bytes; ret -= s->output_bytes;
s->output_bytes += ret; s->output_bytes += ret;
return ret; return ret;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment