Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: unpacking 6-bit values

by jmcnamara (Monsignor)
on Dec 10, 2010 at 11:05 UTC ( [id://876435]=note: print w/replies, xml ) Need Help??


in reply to unpacking 6-bit values

In C or Perl I'd break the string into 3 byte chunk and extract the 6 bit bytes using bitmasks. Something like this:
my $x = pack 'V', 1234567; my $mask0to5 = 2**6 - 1; my $mask6to11 = $mask0to5 << 6; my $mask12to18 = $mask0to5 << 12; my $mask18to24 = $mask0to5 << 18; sub unpack_6bit_bytes { my $byte_str = unpack 'V', $_[0]; my $byte_1 = $byte_str & $mask0to5; my $byte_2 = ( $byte_str & $mask6to11 ) >> 6; my $byte_3 = ( $byte_str & $mask12to18 ) >> 12; my $byte_4 = ( $byte_str & $mask18to24 ) >> 18; return ( $byte_1, $byte_2, $byte_3, $byte_4 ); } print join ' ', unpack_6bit_bytes($x);
This is rough code to demonstrate the general method and only quickly tested.

--
John.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://876435]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (2)
As of 2024-04-26 03:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found