Home
last modified time | relevance | path

Searched refs:imaStepTable (Results 1 – 4 of 4) sorted by relevance

/dports/games/libretro-scummvm/scummvm-7b1e929/engines/bladerunner/
H A Dadpcm_decoder.cpp34 uint16 imaStepTable[712] = { variable
140 int diff = imaStepTable[(stepIndex << 3) | code]; in decode()
/dports/games/scummvm/scummvm-2.5.1/engines/bladerunner/
H A Dadpcm_decoder.cpp34 uint16 imaStepTable[712] = { variable
140 int diff = imaStepTable[(stepIndex << 3) | code]; in decode()
/dports/games/scummvm-tools/scummvm-tools-2.5.0/sound/
H A Dadpcm.cpp288 static const uint16 imaStepTable[89] = { variable
306 E = (2 * (code & 0x7) + 1) * imaStepTable[_status.stepIndex] / 8; in decodeMSIMA()
320 if (_status.stepIndex > ARRAYSIZE(imaStepTable) - 1) in decodeMSIMA()
321 _status.stepIndex = ARRAYSIZE(imaStepTable) - 1; in decodeMSIMA()
/dports/games/scummvm/scummvm-2.5.1/engines/ultima/nuvie/sound/decoder/wave/
H A Dadpcm.cpp813 static const uint16 imaStepTable[89] = { variable
829 sint32 E = (2 * (code & 0x7) + 1) * imaStepTable[_status.ima_ch[channel].stepIndex] / 8; in decodeIMA()
835 …annel].stepIndex = CLIP<sint32>(_status.ima_ch[channel].stepIndex, 0, ARRAYSIZE(imaStepTable) - 1); in decodeIMA()