
Audio::TagLib::ID3v2::SynchData - A few functions for ID3v2 synch safe integer conversion

use Audio::TagLib::ID3v2::SynchData;
print Audio::TagLib::ID3v2::SynchData->toUInt(
Audio::TagLib::ByteVector->new("11")), "\n"; # got 6321
print Audio::TagLib::ID3v2::SynchData->fromUInt(6321)->data(), "\n";
# got "11"

In the ID3v2.4 standard most integer values are encoded as "synch safe" integers which are encoded in such a way that they will not give false MPEG syncs and confuse MPEG decoders. This namespace provides some methods for converting to and from these values to ByteVectors for things rendering and parsing ID3v2 data.
This returns the unsigned integer value of $data where $data is a ByteVector that contains synchsafe integer. The default length of 4 is used if another value is not specified.
Returns a 4 byte (32 bit) synchsafe integer based on $value.
None by default.


Dongxu Ma, <dongxu@cpan.org>

Copyright (C) 2005 by Dongxu Ma
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.7 or, at your option, any later version of Perl 5 you may have available.