| 358 | } |
| 359 | |
| 360 | F32 BitStream::readSignedFloat(S32 bitCount) |
| 361 | { |
| 362 | return readInt(bitCount) * 2 / F32((1 << bitCount) - 1) - 1.0f; |
| 363 | } |
| 364 | |
| 365 | void BitStream::writeSignedInt(S32 value, S32 bitCount) |
| 366 | { |
no outgoing calls
no test coverage detected