Search found 1 match

by squirrel
Mon Jan 19, 2009 2:39 pm
Forum: General Audio Programming
Topic: What is involved when converting bitdepth?
Replies: 1
Views: 1092

What is involved when converting bitdepth?

Hello, At the most basic level, what steps would be involved in converting bitdepth of sound data? Let´s say I have 16bit data and want to convert it to 12bit, would all it takes be, to rescale the values to a smaller range? Would this approach work? 12bitValue = (16bitValue / 0xffff * 0xfff); Or is...