Decode a bit without modelling */
| 158 | |
| 159 | /* Decode a bit without modelling */ |
| 160 | U32 RangeDecoder::readBit() |
| 161 | { |
| 162 | U32 tmp; |
| 163 | tmp = culshift(1); |
| 164 | update(1, tmp, 2); |
| 165 | return tmp; |
| 166 | } |
| 167 | |
| 168 | /* Decode bits without modelling */ |
| 169 | U32 RangeDecoder::readBits(U32 bits) |
nothing calls this directly
no outgoing calls
no test coverage detected