Mercurial > libavcodec.hg
changeset 4833:cad24e81a7b4 libavcodec
superflouos ()
author | michael |
---|---|
date | Mon, 09 Apr 2007 22:25:27 +0000 |
parents | 8a5cbe8e014e |
children | 300b60dee58c |
files | lzwenc.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lzwenc.c Mon Apr 09 22:21:49 2007 +0000 +++ b/lzwenc.c Mon Apr 09 22:25:27 2007 +0000 @@ -183,7 +183,7 @@ * @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;