Home
last modified time | relevance | path

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

/external/aac/libAACdec/src/
Daacdecoder_lib.cpp1302 self->streamInfo.outputDelay = 0; in aacDecoder_DecodeFrame()
1498 self->streamInfo.outputDelay = self->streamInfo.outputDelay >> 2; in aacDecoder_DecodeFrame()
1503 self->streamInfo.outputDelay = self->streamInfo.outputDelay >> 1; in aacDecoder_DecodeFrame()
1508 self->streamInfo.outputDelay = self->streamInfo.outputDelay << 1; in aacDecoder_DecodeFrame()
1513 self->streamInfo.outputDelay = self->streamInfo.outputDelay << 2; in aacDecoder_DecodeFrame()
1517 self->streamInfo.outputDelay = in aacDecoder_DecodeFrame()
1518 (self->streamInfo.outputDelay << 3) / 3; in aacDecoder_DecodeFrame()
1526 self->streamInfo.outputDelay += in aacDecoder_DecodeFrame()
1580 self->streamInfo.outputDelay += mpegSurroundDecoder_GetDelay( in aacDecoder_DecodeFrame()
1904 self->streamInfo.outputDelay += pcmLimiter_GetDelay(self->hLimiter); in aacDecoder_DecodeFrame()
Daacdecoder.cpp1222 pStreamInfo->outputDelay = 0; in CStreamInfoInit()
3452 self->streamInfo.outputDelay += in CAacDecoder_DecodeFrame()
/external/aac/libSACdec/src/
Dsac_dec_lib.cpp1972 INT outputDelay = 0; in mpegSurroundDecoder_GetDelay() local
1986 outputDelay += 256; in mpegSurroundDecoder_GetDelay()
1990 outputDelay += 320 + 257; /* cos to exp delay + QMF synthesis */ in mpegSurroundDecoder_GetDelay()
1992 outputDelay += 320 + 384; /* QMF and hybrid analysis */ in mpegSurroundDecoder_GetDelay()
1998 return (outputDelay); in mpegSurroundDecoder_GetDelay()
/external/aac/libSBRdec/src/
Dsbrdecoder.cpp1978 UINT outputDelay = 0; in sbrDecoder_GetDelay() local
1991 outputDelay += in sbrDecoder_GetDelay()
1994 outputDelay += 32; in sbrDecoder_GetDelay()
2000 outputDelay += (flags & SBRDEC_DOWNSAMPLE) ? 481 : 962; in sbrDecoder_GetDelay()
2002 outputDelay -= 257; /* QMF synthesis */ in sbrDecoder_GetDelay()
2008 return (outputDelay); in sbrDecoder_GetDelay()
/external/aac/libAACdec/include/
Daacdecoder_lib.h831 UINT outputDelay; /*!< The number of samples the output is additionally member