superflouos ()

Originally committed as revision 8701 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Michael Niedermayer 18 years ago
parent 0ddfb84d6d
commit c4a7b86100
  1. 2
      libavcodec/lzwenc.c

@ -183,7 +183,7 @@ static void clearTable(LZWEncodeState * s)
* @return Number of bytes written
*/
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;
s->output_bytes += ret;
return ret;

Loading…
Cancel
Save