Convert signed formatted bytes to unsigned bytes

1.1k Views Asked by At

How can I convert byte data stored as if they were signed bytes to unsigned bytes?

The reason being is because I have some old sound files (from an Amiga), but they were stored in IFF 8SVX which used signed bytes.

2

There are 2 best solutions below

0
On

Here's how:

public void convertSignedToUnsignedBytes(byte[] b)
{
    for (int i = 0; i < b.Length; i++) {
        if (b[i] >= 128) b[i] -= 128;
        else b[i] += 128;
    }
}
1
On

If you're starting with sbyte[] signedBytes then try this:

byte[] unsignedBytes = signedBytes.Select(sb => (byte)sb).ToArray();