Browse Source

superflouos ()

Originally committed as revision 8701 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 19 years ago
parent
commit
c4a7b86100
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/lzwenc.c

+ 1
- 1
libavcodec/lzwenc.c View File

@@ -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