(s)
| 10881 | * Flush the bit buffer and align the output on a byte boundary |
| 10882 | */ |
| 10883 | function bi_windup(s) |
| 10884 | { |
| 10885 | if (s.bi_valid > 8) { |
| 10886 | put_short(s, s.bi_buf); |
| 10887 | } else if (s.bi_valid > 0) { |
| 10888 | //put_byte(s, (Byte)s->bi_buf); |
| 10889 | s.pending_buf[s.pending++] = s.bi_buf; |
| 10890 | } |
| 10891 | s.bi_buf = 0; |
| 10892 | s.bi_valid = 0; |
| 10893 | } |
| 10894 | |
| 10895 | /* =========================================================================== |
| 10896 | * Copy a stored block, storing first the length and its |
no test coverage detected