Thanks to visit codestin.com
Credit goes to github.com

Skip to content
uupaa edited this page Dec 1, 2015 · 3 revisions

ExpGolomb.js は、https://en.wikipedia.org/wiki/Exponential-Golomb_coding の実装です。

Exponential-Golomb_coding は身近なところだと、H.264/AVC の NAL Unit (SPS) のデコードなどで使われています。

ExpGolomb.encode(3)       // -> "00100"
ExpGolomb.decode("00100") // -> 3

ExpGolomb.encode(65536)   // -> "000000000000000010000000000000001"
ExpGolomb.decode("000000000000000010000000000000001") // -> 65536

ExpGolomb.encode(131070)  // -> "000000000000000011111111111111111"
ExpGolomb.decode("000000000000000011111111111111111") // -> 131070
 

Clone this wiki locally