• Home
  • Raw
  • Download

Lines Matching refs:streamInfo

545     self->streamInfo.numLostAccessUnits = 0;  in aacDecoder_SetParam()
546 self->streamInfo.numBadBytes = 0; in aacDecoder_SetParam()
547 self->streamInfo.numTotalBytes = 0; in aacDecoder_SetParam()
727 self->streamInfo.numLostAccessUnits = 0; in aacDecoder_DecodeFrame()
747 self->streamInfo.numLostAccessUnits = aacDecoder_EstimateNumberOfLostFrames(self); in aacDecoder_DecodeFrame()
763 if (self->streamInfo.numLostAccessUnits > 0) { in aacDecoder_DecodeFrame()
764 self->streamInfo.numLostAccessUnits--; in aacDecoder_DecodeFrame()
782 self->streamInfo.numLostAccessUnits = 0; in aacDecoder_DecodeFrame()
783 self->streamInfo.numBadBytes = 0; in aacDecoder_DecodeFrame()
784 self->streamInfo.numTotalBytes = 0; in aacDecoder_DecodeFrame()
809 self->streamInfo.sampleRate = self->streamInfo.aacSampleRate; in aacDecoder_DecodeFrame()
810 self->streamInfo.frameSize = self->streamInfo.aacSamplesPerFrame; in aacDecoder_DecodeFrame()
812 self->streamInfo.numChannels = self->streamInfo.aacNumChannels; in aacDecoder_DecodeFrame()
834 if ( self->streamInfo.aot == AOT_ER_AAC_ELD ) { in aacDecoder_DecodeFrame()
847 &self->streamInfo.numChannels, in aacDecoder_DecodeFrame()
848 &self->streamInfo.sampleRate, in aacDecoder_DecodeFrame()
849 self->channelOutputMapping[self->streamInfo.numChannels-1], in aacDecoder_DecodeFrame()
859 if (self->streamInfo.aacSampleRate != self->streamInfo.sampleRate) { in aacDecoder_DecodeFrame()
860 if (self->streamInfo.frameSize == 768) { in aacDecoder_DecodeFrame()
861 self->streamInfo.frameSize = (self->streamInfo.aacSamplesPerFrame * 8) / 3; in aacDecoder_DecodeFrame()
863 self->streamInfo.frameSize = self->streamInfo.aacSamplesPerFrame << 1; in aacDecoder_DecodeFrame()
888 self->streamInfo.frameSize, in aacDecoder_DecodeFrame()
889 &self->streamInfo.numChannels, in aacDecoder_DecodeFrame()
904 self->streamInfo.flags = self->flags; in aacDecoder_DecodeFrame()
909 aacDecoder_UpdateBitStreamCounters(&self->streamInfo, hBs, nBits, ErrorStatus); in aacDecoder_DecodeFrame()