Searched refs:numFrames (Results 1 – 4 of 4) sorted by relevance
/hardware/google/av/media/codecs/vorbis/ |
D | C2SoftVorbisDec.cpp | 396 int numFrames = 0; in process() local 404 numFrames = vorbis_dsp_pcmout( in process() 407 if (numFrames < 0) { in process() 408 ALOGD("vorbis_dsp_pcmout returned %d", numFrames); in process() 409 numFrames = 0; in process() 414 if (numFrames > mNumFramesLeftOnPage) { in process() 415 ALOGV("discarding %d frames at end of page", numFrames - mNumFramesLeftOnPage); in process() 416 numFrames = mNumFramesLeftOnPage; in process() 418 mNumFramesLeftOnPage -= numFrames; in process() 421 if (numFrames) { in process() [all …]
|
/hardware/google/av/media/codecs/aac/ |
D | C2SoftAacEnc.cpp | 308 size_t numFrames = (capacity + mInputSize + (eos ? mNumBytesPerInputFrame - 1 : 0)) in process() local 311 capacity, mInputSize, numFrames, mNumBytesPerInputFrame); in process() 318 if (numFrames) { in process() 321 c2_status_t err = pool->fetchLinearBlock(mOutBufferSize * numFrames, usage, &block); in process()
|
D | C2SoftAacDec.cpp | 360 int numFrames = outInfo.decodedSizes.size(); in drainRingBuffer() local 361 int numSamples = numFrames * (mStreamInfo->frameSize * mStreamInfo->numChannels); in drainRingBuffer() 370 numSamples, available, numFrames); in drainRingBuffer()
|
/hardware/google/av/media/codecs/cmds/ |
D | codec2.cpp | 290 long numFrames = 0; in play() local 342 work->input.ordinal.frameIndex = numFrames; in play() 364 ALOGV("Frame #%ld size = %zu", numFrames, size); in play() 373 ++numFrames; in play()
|