()
| 98 | } |
| 99 | |
| 100 | readUEG() { // unsigned exponential golomb |
| 101 | let leading_zeros = this._skipLeadingZero(); |
| 102 | return this.readBits(leading_zeros + 1) - 1; |
| 103 | } |
| 104 | |
| 105 | readSEG() { // signed exponential golomb |
| 106 | let value = this.readUEG(); |
no test coverage detected