I am working with audio in the iPhone OS and am a bit confused.

I am currently getting input from my audio buffer in the form of pcm values ranging from -32767 to 32768. I am hoping to perform a dbSPL conversion using the formula 20LOG10(p/pref).

I am aware that pRef is .00002 pascals, and would like to convert the pcm values to pascals.

My question is a) what are these pcm values representing exactly. b) how do I turn these values to pascals.

Thanks so much

link|improve this question

72% accept rate
feedback

2 Answers

up vote 1 down vote accepted

You can't do this conversion without additional information. The mapping of PCM values to physical units of pressure (pascals) depends on the volume setting, characteristics of the output device (earbuds? a PA system?), and the position of the observer with respect to the output device (right next to the speaker? 100 meters away?).

To answer the first part of your question: if you were to graph the sound pressure versus time for, say, a 1 kHz sine wave tone, the linear-quantized PCM values at the sample times would be roughly proportional to the sound pressure variations from ambient at that instant. ("Roughly", because input and output devices seldom have absolutely flat response curves over the entire audio frequency range.)

link|improve this answer
feedback

Your question is neither “iphone”, “objective-c” or “objective-c++”. But it can be answered very simple: http://en.wikipedia.org/wiki/Pulse-code_modulation

Greetings

link|improve this answer
1  
I appreciate your effort, but would rather not have you answer a question that you do not have any knowledge about. I have read the wikipedia several times, and the answer is "simple" not there. It is relevant to iPhone because hardware plays a role in this calculation. – rsoni Jul 25 '10 at 17:17
feedback

Your Answer

 
or
required, but never shown

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