Home
last modified time | relevance | path

Searched refs:decoderL (Results 1 – 3 of 3) sorted by relevance

/external/sonivox/arm-wt-22k/lib_src/
Deas_imaadpcm.c84 pState->decoderL.step = 0; in IMADecoderInit()
113 IMADecoderADPCM(&pState->decoderL, (EAS_U8)(pState->srcByte >> 4)); in IMADecoderSample()
142 pState->decoderL.acc = pState->decoderL.x1 = sTemp; in IMADecoderSample()
150 pState->decoderL.step = sTemp & 0xff; in IMADecoderSample()
189 IMADecoderADPCM(&pState->decoderL, (EAS_U8)(pState->srcByte & 0x0f)); in IMADecoderSample()
200 pState->decoderL.x1 = pState->decoderL.x0; in IMADecoderSample()
Deas_pcm.c929 pState->decoderL.acc = 0; in InitPCMStream()
930 pState->decoderL.output = 0; in InitPCMStream()
931 pState->decoderL.x0 = pState->decoderL.x1 = 0; in InitPCMStream()
932 pState->decoderL.step = 0; in InitPCMStream()
1139 …pState->decoderL.output = pState->decoderL.x0 + FMUL_15x15((pState->decoderL.x1 - pState->decoderL in RenderPCMStream()
1150 …*pOut++ += (pState->decoderL.output * (gainLeft >> SYNTH_UPDATE_PERIOD_IN_BITS)) >> PCM_MIXER_GUAR… in RenderPCMStream()
1157 …*pOut++ += (pState->decoderL.output * (gainRight >> SYNTH_UPDATE_PERIOD_IN_BITS)) >> PCM_MIXER_GUA… in RenderPCMStream()
1170 …*pOut++ += ((pState->decoderL.output + pState->decoderR.output) * (gainLeft >> SYNTH_UPDATE_PERIOD… in RenderPCMStream()
1174 …*pOut++ += (pState->decoderL.output * (gainLeft >> SYNTH_UPDATE_PERIOD_IN_BITS)) >> PCM_MIXER_GUAR… in RenderPCMStream()
1185 pState->decoderL.x0 = pState->decoderL.x1; in RenderPCMStream()
[all …]
Deas_pcmdata.h100 S_DECODER_STATE decoderL; /* left (mono) ADPCM state */ member