I'm reading in an id3 tag where the size of each frame is specified in 3 bytes. How would I be able to utilize this value as an int?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
Read each byte and then put them together into your
Make sure to take endianness into account. |
|||||||||||
|
|
Read the bytes in individually, and put them into the correct places in an int:
Edit: it appears that ID3 uses network (big-endian) byte order -- changed code to match. |
|||||||||
|
int int_3byte : 24(inside a struct). I suppose C++ has an equivalent mechanism for this. – phimuemue Mar 27 '12 at 19:49