Lines Matching refs:mStreamInfo

290       mStreamInfo(nullptr),  in C2SoftAacDec()
343 mStreamInfo = aacDecoder_GetStreamInfo(mAACDecoder); in initDecoder()
344 if (mStreamInfo != nullptr) { in initDecoder()
364 mDrcWrap.submitStreamData(mStreamInfo); in initDecoder()
498 >= mStreamInfo->frameSize * mStreamInfo->numChannels) { in drainRingBuffer()
501 int samplesize __unused = mStreamInfo->numChannels * sizeof(int16_t); in drainRingBuffer()
505 int numSamples = numFrames * (mStreamInfo->frameSize * mStreamInfo->numChannels); in drainRingBuffer()
699 INT prevSampleRate = mStreamInfo->sampleRate; in process()
700 INT prevNumChannels = mStreamInfo->numChannels; in process()
701 INT prevOutLoudness = mStreamInfo->outputLoudness; in process()
709 mDrcWrap.submitStreamData(mStreamInfo); in process()
761 (mStreamInfo->frameSize * mStreamInfo->numChannels)) { in process()
768 int numConsumed = mStreamInfo->numTotalBytes; in process()
774 numConsumed = mStreamInfo->numTotalBytes - numConsumed; in process()
793 mStreamInfo->frameSize * sizeof(int16_t) * mStreamInfo->numChannels; in process()
797 mStreamInfo->frameSize * mStreamInfo->numChannels)) { in process()
808 mStreamInfo->frameSize * mStreamInfo->numChannels)) { in process()
841 if (!mStreamInfo->sampleRate || !mStreamInfo->numChannels) { in process()
847 } else if ((mStreamInfo->sampleRate != prevSampleRate) || in process()
848 (mStreamInfo->numChannels != prevNumChannels)) { in process()
850 prevSampleRate, mStreamInfo->sampleRate, in process()
851 prevNumChannels, mStreamInfo->numChannels); in process()
853 C2StreamSampleRateInfo::output sampleRateInfo(0u, mStreamInfo->sampleRate); in process()
854 C2StreamChannelCountInfo::output channelCountInfo(0u, mStreamInfo->numChannels); in process()
856 maskFromCount(mStreamInfo->numChannels)); in process()
878 if (mStreamInfo->outputLoudness != prevOutLoudness) { in process()
880 drcOutLoudness(0u, (float) (mStreamInfo->outputLoudness*-0.25)); in process()
946 int32_t outputDelay = mStreamInfo->outputDelay * mStreamInfo->numChannels; in process()
948 size_t numSamplesInOutput = mStreamInfo->frameSize * mStreamInfo->numChannels; in process()
1042 if (avail > mStreamInfo->frameSize * mStreamInfo->numChannels) { in onFlush_sm()
1043 avail = mStreamInfo->frameSize * mStreamInfo->numChannels; in onFlush_sm()
1063 mDrcWrap.submitStreamData(mStreamInfo); in drainDecoder()
1075 int32_t tmpOutBufferSamples = mStreamInfo->frameSize * mStreamInfo->numChannels; in drainDecoder()