I can convert an 8-bit audio sample to an int no problem.
But I store the wave data in an array of BYTEs so a 16-bit
sample consists of 2 separate BYTEs. I tried to take these
BYTEs and memcpy them into a WORD since it's the same size as the two and cast it to int but I get values like 64,292
when the values should range between -128 and 128. Can anyone please help me. When I convert 8-bit sound to 16-bit I use memcpy as said above and everything works fine.
But I store the wave data in an array of BYTEs so a 16-bit
sample consists of 2 separate BYTEs. I tried to take these
BYTEs and memcpy them into a WORD since it's the same size as the two and cast it to int but I get values like 64,292
when the values should range between -128 and 128. Can anyone please help me. When I convert 8-bit sound to 16-bit I use memcpy as said above and everything works fine.