Ignore:
Timestamp:
05/03/07 12:39:37 (17 years ago)
Author:
r2d
Message:

writeBits can't output more than 31 bits !

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libmpc/trunk/libmpcenc/bitstream.c

    r221 r307  
    133133        nb &= (1 << k) - 1;
    134134
    135         while( l > 32 ){
    136                 writeBits(e, 0, 32);
    137                 l -= 32;
     135        while( l > 31 ){
     136                writeBits(e, 0, 31);
     137                l -= 31;
    138138        }
    139139        writeBits(e, 1, l);
Note: See TracChangeset for help on using the changeset viewer.