HomeSort by relevance Sort by last modified time
    Searched refs:numChans (Results 1 - 13 of 13) sorted by null

  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/audiolib/
AudioFiller.java 32 * @param numChans The number of channels (in the buffer) required by the player.
36 public int fill(float[] buffer, int numFrames, int numChans);
WaveScopeView.java 55 public void setPCM16Buff(short[] smpl16Buff, int numChans, int numFrames) {
59 mNumChannels = numChans;
67 public void setPCMFloatBuff(float[] smplFloatBuff, int numChans, int numFrames) {
71 mNumChannels = numChans;
112 * @param numChans The number of interleaved channels in the specified sample block.
116 private void drawChannel16(Canvas cvs, short[] samples, int numFrames, int numChans,
118 float yScale = getHeight() / (float) (Short.MAX_VALUE * 2 * numChans);
131 smpl += numChans;
141 * @param numChans The number of interleaved channels in the specified sample block.
145 private void drawChannelFloat(Canvas cvs, float[] samples, int numFrames, int numChans,
    [all...]
WaveTableFloatFiller.java 65 public int fill(float[] buffer, int numFrames, int numChans) {
80 for (int chanIndex = 0; chanIndex < numChans; chanIndex++) {
StreamRecorder.java 119 private boolean open_internal(int numChans, int sampleRate) {
120 mNumChannels = numChans;
123 int chanPosMask = AudioUtils.countToInPositionMask(numChans);
144 public boolean open(int numChans, int sampleRate, int numBurstFrames) {
145 boolean sucess = open_internal(numChans, sampleRate);
StreamPlayer.java 106 public boolean open(int numChans, int sampleRate, int numBurstFrames, AudioFiller filler) {
107 // Log.i(TAG, "StreamPlayer.open(chans:" + numChans + ", rate:" + sampleRate +
110 mNumChans = numChans;
115 calcNumBufferFrames(sampleRate, numChans, AudioFormat.ENCODING_PCM_FLOAT);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/peripheralprofile/
USBDeviceInfoHelper.java 46 int numChans = calcMaxChannelCount(deviceInfo);
47 switch (numChans) {
59 Log.e(TAG, "getPlayChanMask() Unsupported number of channels: " + numChans);
71 int numChans = calcMaxChannelCount(deviceInfo);
72 switch (numChans) {
  /hardware/qcom/msm8996/kernel-headers/linux/
msm_audio_ac3.h 32 unsigned short numChans;
  /hardware/qcom/msm8996/original-kernel-headers/linux/
msm_audio_ac3.h 18 unsigned short numChans;
  /hardware/qcom/msm8998/kernel-headers/linux/
msm_audio_ac3.h 32 unsigned short numChans;
  /hardware/qcom/msm8998/original-kernel-headers/linux/
msm_audio_ac3.h 18 unsigned short numChans;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
USBAudioPeripheralPlayerActivity.java 59 int numChans = USBDeviceInfoHelper.calcMaxChannelCount(mOutputDevInfo);
60 mPlayer.open(numChans, mSystemSampleRate, mSystemBufferSize, mFiller);
USBAudioPeripheralRecordActivity.java 56 int numChans = mRecorder.getNumChannels();
57 int numFrames = smplFloatBuff.length / numChans;
58 mWaveView.setPCMFloatBuff(smplFloatBuff, numChans, numFrames);
76 int numChans = USBDeviceInfoHelper.calcMaxChannelCount(mInputDevInfo);
78 if (mRecorder.open(numChans, mSystemSampleRate, mSystemBufferSize)) {
  /frameworks/wilhelm/src/android/
AudioPlayer_to_android.cpp     [all...]

Completed in 659 milliseconds