Home
last modified time | relevance | path

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

/external/aac/libAACdec/src/
Daacdecoder.cpp3388 FIXP_PCM *pTD = pTimeData; in CAacDecoder_DecodeFrame() local
3393 FIXP_DBL L = FX_PCM2FX_DBL(pTD[0]); in CAacDecoder_DecodeFrame()
3394 FIXP_DBL R = FX_PCM2FX_DBL(pTD[offset2]); in CAacDecoder_DecodeFrame()
3398 pTD[0] = FX_DBL2FX_PCM(fAddSaturate(L + R, (FIXP_DBL)0x8000)); in CAacDecoder_DecodeFrame()
3399 pTD[offset2] = FX_DBL2FX_PCM(fAddSaturate(L - R, (FIXP_DBL)0x8000)); in CAacDecoder_DecodeFrame()
3401 pTD[0] = FX_DBL2FX_PCM(L + R); in CAacDecoder_DecodeFrame()
3402 pTD[offset2] = FX_DBL2FX_PCM(L - R); in CAacDecoder_DecodeFrame()
3404 pTD++; in CAacDecoder_DecodeFrame()