Home
last modified time | relevance | path

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

/frameworks/av/media/libaaudio/src/binding/
DRingBufferParcelable.cpp56 return mBytesPerFrame; in getBytesPerFrame()
60 mBytesPerFrame = bytesPerFrame; in setBytesPerFrame()
89 status = parcel->writeInt32(mBytesPerFrame); in writeToParcel()
112 status = parcel->readInt32(&mBytesPerFrame); in readFromParcel()
151 descriptor->bytesPerFrame = mBytesPerFrame; in resolve()
163 if (mBytesPerFrame < 0 || mBytesPerFrame >= 256) { in validate()
164 ALOGE("invalid mBytesPerFrame = %d", mBytesPerFrame); in validate()
178 ALOGD("mBytesPerFrame = %d", mBytesPerFrame); in dump()
DRingBufferParcelable.h78 int32_t mBytesPerFrame = 0; // index is in frames variable
/frameworks/base/core/java/android/speech/tts/
DBlockingAudioTrack.java54 private final int mBytesPerFrame; field in BlockingAudioTrack
85 mBytesPerFrame = AudioFormat.getBytesPerSample(mAudioFormat) * mChannelCount; in BlockingAudioTrack()
185 final int unconsumedFrames = numBytes / mBytesPerFrame; in getAudioLengthMs()
261 final int lengthInFrames = mBytesWritten / mBytesPerFrame; in blockUntilEstimatedCompletion()
274 final int lengthInFrames = mBytesWritten / mBytesPerFrame; in blockUntilCompletion()
/frameworks/av/media/libaaudio/src/fifo/
DFifoBuffer.h95 return mBytesPerFrame; in getBytesPerFrame()
125 const int32_t mBytesPerFrame; variable
DFifoBuffer.cpp36 , mBytesPerFrame(bytesPerFrame) in FifoBuffer()
59 , mBytesPerFrame(bytesPerFrame) in FifoBuffer()
81 return frames * mBytesPerFrame; in convertFramesToBytes()