mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-27 21:20:41 +00:00
superflouos ()
Originally committed as revision 8701 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
0ddfb84d6d
commit
c4a7b86100
@ -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…
Reference in New Issue
Block a user