Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have pcm audio stored in a byte array. It is 16 bits per sample. I want to make it 8 bit per sample audio.

Can anyone suggest a good algorithm to do that?

I haven't mentioned the bitrate because I think it isn't important for the algorithm - right?

share|improve this question
1  
The bitrate can be important (but not necessarily) - for e.g. when dealing with A/D converters (when dealing with audio you finally output it via A/D) you could increase the sample rate by a factor of 65k (if I calculated correctly) to get the higher resolution with less bits (its called oversampling). – flolo Apr 19 '11 at 14:03
1  
It's not java, but take a look at how ffmpeg implements it. Browse the code around here: ffmpeg.org/doxygen/0.5/pcm_8c-source.html – Aleadam Apr 19 '11 at 14:08

2 Answers

up vote 7 down vote accepted

I can't see right now why it's not enough to just take the upper byte, i.e. discard the lower 8 bits of each sample.

That of course assumes that the samples are linear; if they're not then maybe you need to do something to linearize them before dropping bits.

short sixteenBit = 0xfeed;
byte eightBit = sixteenBit >> 8;
// eightBit is now 0xfe.

As suggested by AShelly in a comment, it might be a good idea to round, i.e. add 1 if the byte we're discarding is higher than half its maximum:

eightBit += eightBit < 0xff && ((sixteenBit & 0xff) > 0x80);

The test against 0xff implements clamping, so we don't risk adding 1 to 0xff and wrapping that to 0x00 which would be bad.

share|improve this answer
1  
You might also want to round instead of truncate. Add 'eightbit += (sixteenbit & 0x80)>>7;' to add 1 if the lower byte is more than half its range. – AShelly Apr 19 '11 at 14:40
1  
@AShelly: true, that might be a good idea ... Your code will cause values in the range 0xff00 to 0xffff to wrap to 0x00 though, which is probably worse than not rounding at all. I'll edit. – unwind Apr 20 '11 at 10:12
thanks. If my input is in a byte array(byte[] arr not short) does this mean to just drop half of the bytes i.e. take arr[0] , arr[2], arr[4] etc. ? – gosho_ot_pochivka Apr 20 '11 at 11:07
@gosho-ot-pochivka: Yes, I think so. I'm a bit worried about sign issues, if the samples are signed 16-bit numbers, but since the sign bit will be preserved, it should be fine. – unwind Apr 27 '11 at 13:55

Normalize the 16 bit samples, then rescale by the maximum value of your 8 bit sample.

This yields a more accurate conversion as the lower 8 bits of each sample aren't being discarded. However, my solution is more computationally expensive than the selected answer.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.