Exponential-Golomb coding

This is an old revision of this page, as edited by Calbaer (talk | contribs) at 23:14, 26 September 2006 (Describing Exp-Golomb code for k>0, not just k=0; nonnegative, not positve). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Exponential-Golomb code (or just Exp-Golomb code) is a family of universal codes, parameterized by whole number . To code a nonnegative integer in exp-Golomb code :

  1. Write all but the last bits plus 1 in binary.
  2. Count the bits written, subtract one, and write that number of starting zero bits preceding the previous bit string.
  3. Write the last bits in binary.

For the code begins:

 0 => 1 => 1
 1 => 10 => 010
 2 => 11 => 011
 3 => 100 => 00100
 4 => 101 => 00101
 5 => 110 => 00110
 6 => 111 => 00111
 7 => 1000 => 0001000
 8 => 1001 => 0001001
...

Exp-Golomb coding for is used in the H.264/MPEG-4 AVC video compression standard, in which there is also a variation for the coding of signed numbers by assigning the value 0 to the binary codeword '0' and assigning subsequent codewords to input values of increasing magnitude and alternating sign.

Exp-Golomb coding is also used in the Dirac video codec.

The exp-Golomb code is identical to the Elias gamma code of the same number plus one. Thus it can encode zero, whereas Elias gamma can only encode numbers greater than zero.

Despite the similar name, exp-Golomb is only somewhat similar to Golomb coding, which is a type of entropy coding but not a universal code.

See also: Elias gamma coding, Elias delta coding, Elias omega coding