Home
last modified time | relevance | path

Searched refs:mMinRecorderBuffSizeInBytes (Results 1 – 3 of 3) sorted by relevance

/external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
DRecorderRunnable.java51 private int mMinRecorderBuffSizeInBytes = 0; field in RecorderRunnable
97 mMinRecorderBuffSizeInBytes = recorderBufferInBytes; in RecorderRunnable()
114 if (mMinRecorderBuffSizeInBytes <= 0) { in initRecord()
115 mMinRecorderBuffSizeInBytes = AudioRecord.getMinBufferSize(mSamplingRate, in initRecord()
117 log("RecorderRunnable: computing min buff size = " + mMinRecorderBuffSizeInBytes in initRecord()
120 log("RecorderRunnable: using min buff size = " + mMinRecorderBuffSizeInBytes + in initRecord()
124 if (mMinRecorderBuffSizeInBytes <= 0) { in initRecord()
128 mMinRecorderBuffSizeInSamples = mMinRecorderBuffSizeInBytes / Constant.BYTES_PER_FRAME; in initRecord()
143 .setBufferSizeInBytes(2 * mMinRecorderBuffSizeInBytes) in initRecord()
147 mChannelConfig, mAudioFormat, 2 * mMinRecorderBuffSizeInBytes); in initRecord()
[all …]
DNativeAudioThread.java61 private int mMinRecorderBuffSizeInBytes = 0; // currently not used field in NativeAudioThread
125 mMinRecorderBuffSizeInBytes = recorderBufferInBytes; in NativeAudioThread()
140 mMinRecorderBuffSizeInBytes = old.mMinRecorderBuffSizeInBytes; in NativeAudioThread()
DLoopbackAudioThread.java63 private int mMinRecorderBuffSizeInBytes = 0; field in LoopbackAudioThread
101 mMinRecorderBuffSizeInBytes = recorderBufferInBytes; in LoopbackAudioThread()
141 mAudioFormat, mMinRecorderBuffSizeInBytes, MediaRecorder.AudioSource.MIC, this, in run()