-
Notifications
You must be signed in to change notification settings - Fork 0
Home
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