Home
last modified time | relevance | path

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

/external/aac/libAACdec/src/
Daacdecoder_lib.cpp133 HANDLE_FDK_BITSTREAM hBs = transportDec_GetBitstream(self->hInput, 0); in aacDecoder_GetFreeBytes()
165 errTp = transportDec_OutOfBandConfig(self->hInput, conf[layer], length[layer], layer); in aacDecoder_ConfigRaw()
544 transportDec_SetParam(self->hInput, TPDEC_PARAM_RESET, 1); in aacDecoder_SetParam()
588 aacDec->hInput = pIn; in aacDecoder_Open()
603 …transportDec_RegisterSbrCallback(aacDec->hInput, (cbSbr_t)sbrDecoder_Header, (void*)aacDec->hSbrDe… in aacDecoder_Open()
644 …tpErr = transportDec_FillData( self->hInput, pBuffer[layer], bufferSize[layer], &pBytesValid[layer… in aacDecoder_Fill()
702 transportDec_GetMissingAccessUnitCount( &n, self->hInput); in aacDecoder_EstimateNumberOfLostFrames()
730 hBs = transportDec_GetBitstream(self->hInput, 0); in aacDecoder_DecodeFrame()
740 err = transportDec_ReadAccessUnit(self->hInput, layer); in aacDecoder_DecodeFrame()
781 transportDec_SetParam(self->hInput, TPDEC_PARAM_RESET, 1); in aacDecoder_DecodeFrame()
[all …]
Daacdecoder.cpp862 if (transportDec_GetFormat(self->hInput) == TT_MP4_ADTS) { in CAacDecoder_Init()
1095 HANDLE_FDK_BITSTREAM bs = transportDec_GetBitstream(self->hInput, 0); in CAacDecoder_DecodeFrame()
1105 …if ( (transportDec_GetAuBitsRemaining(self->hInput, 0) < 15) && (flags & (AACDEC_CONCEAL|AACDEC_FL… in CAacDecoder_DecodeFrame()
1239 self->hInput in CAacDecoder_DecodeFrame()
1344 self->hInput in CAacDecoder_DecodeFrame()
1384 self->hInput, in CAacDecoder_DecodeFrame()
1434 self->hInput, in CAacDecoder_DecodeFrame()
1490 bitCnt = transportDec_GetAuBitsRemaining(self->hInput, 0); in CAacDecoder_DecodeFrame()
1557 if ( transportDec_GetAuBitsTotal(self->hInput, 0) > 0 ) { in CAacDecoder_DecodeFrame()
1558 INT unreadBits = transportDec_GetAuBitsRemaining(self->hInput, 0); in CAacDecoder_DecodeFrame()
[all …]
Daacdecoder.h171 HANDLE_TRANSPORTDEC hInput; /*!< Transport layer handle. */ member
/external/aac/libMpegTPDec/src/
Dtpdec_lib.cpp160 HANDLE_TRANSPORTDEC hInput; in C_ALLOC_MEM() local
162 hInput = GetRam_TransportDecoder(0); in C_ALLOC_MEM()
163 if ( hInput == NULL ) { in C_ALLOC_MEM()
168 hInput->transportFmt = transportFmt; in C_ALLOC_MEM()
177 hInput->parser.adts.decoderCanDoMpeg4 = 1; in C_ALLOC_MEM()
179 hInput->parser.adts.decoderCanDoMpeg4 = 0; in C_ALLOC_MEM()
180 adtsRead_CrcInit(&hInput->parser.adts); in C_ALLOC_MEM()
181 hInput->parser.adts.BufferFullnesStartFlag = 1; in C_ALLOC_MEM()
182 hInput->numberOfRawDataBlocks = 0; in C_ALLOC_MEM()
193 FreeRam_TransportDecoder(&hInput); in C_ALLOC_MEM()
[all …]