| 291 | } |
| 292 | |
| 293 | void ArithmeticEncoder::writeInt(U32 sym) |
| 294 | { |
| 295 | writeShort((U16)(sym & 0xFFFF)); // lower 16 bits |
| 296 | writeShort((U16)(sym >> 16)); // UPPER 16 bits |
| 297 | } |
| 298 | |
| 299 | void ArithmeticEncoder::writeFloat(F32 sym) /* danger in float reinterpretation */ |
| 300 | { |
no outgoing calls
no test coverage detected