- Synchsafe
Synchsafe integers appear in
ID3 tag s that are attached to anMP3 file.An ID3 tag [http://www.id3.org/id3v2.4.0-structure.txt ID3 tag version 2.4.0 - Main Structure] encodes several blocks of data. Some blocks (containing
metadata about the content of the file) are variable in length and are encoded as 'synchsafe' integers to distinguish them from data in other blocks.In a synchsafe integer, the
most significant bit of each byte is zero, making seven bits out of eight available.So, for example, a 32 bit synchsafe integer can only store 28 bits of information.Examples:
:(%11111111) is encoded as a 16 bit synchsafe integer (%00000001 01111111). :(%11111111 11111111) is encoded as a 24 bit synchsafe integer (%00000011 01111111 01111111).
C/C++ code to decode Synchsafe encoded values
References
Wikimedia Foundation. 2010.