| 314 | } |
| 315 | |
| 316 | static void VP8LSetEndOfStream(VP8LBitReader* const br) { |
| 317 | br->eos_ = 1; |
| 318 | br->bit_pos_ = 0; // To avoid undefined behaviour with shifts. |
| 319 | } |
| 320 | |
| 321 | // If not at EOS, reload up to VP8L_LBITS byte-by-byte |
| 322 | static void ShiftBytes(VP8LBitReader* const br) { |
no outgoing calls
no test coverage detected