Home
last modified time | relevance | path

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

/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
DAudioSampleEntry.java61 private long bytesPerFrame; field in AudioSampleEntry
106 return bytesPerFrame; in getBytesPerFrame()
157 public void setBytesPerFrame(long bytesPerFrame) { in setBytesPerFrame() argument
158 this.bytesPerFrame = bytesPerFrame; in setBytesPerFrame()
208 bytesPerFrame = IsoTypeReader.readUInt32(content); in _parseDetails()
236 ", bytesPerFrame=" + bytesPerFrame + in toString()
269 IsoTypeWriter.writeUInt32(byteBuffer, bytesPerFrame); in getContent()
/external/webrtc/webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/
DWebRtcAudioManager.java244 final int bytesPerFrame = numChannels * (BITS_PER_SAMPLE / 8); in getMinOutputFrameSize() local
255 bytesPerFrame; in getMinOutputFrameSize()
268 final int bytesPerFrame = numChannels * (BITS_PER_SAMPLE / 8); in getMinInputFrameSize() local
272 bytesPerFrame; in getMinInputFrameSize()
DWebRtcAudioTrack.java158 final int bytesPerFrame = channels * (BITS_PER_SAMPLE / 8); in initPlayout() local
160 bytesPerFrame * (sampleRate / BUFFERS_PER_SECOND)); in initPlayout()
DWebRtcAudioRecord.java165 final int bytesPerFrame = channels * (BITS_PER_SAMPLE / 8); in initRecording() local
167 byteBuffer = ByteBuffer.allocateDirect(bytesPerFrame * framesPerBuffer); in initRecording()