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

  /system/media/opensles/libopensles/
android_sles_conversions.h 63 static inline int sles_to_android_channelMask(SLuint32 nbChannels, SLuint32 channelMask) {
65 return (nbChannels == 1 ?
  /frameworks/base/core/jni/
android_media_AudioRecord.cpp 138 uint32_t nbChannels = AudioSystem::popCount(channels);
155 int frameSize = nbChannels * bytesPerSample;
455 jint sampleRateInHertz, jint nbChannels, jint audioFormat) {
457 LOGV(">> android_media_AudioRecord_get_min_buff_size(%d, %d, %d)", sampleRateInHertz, nbChannels, audioFormat);
464 nbChannels);
472 return frameCount * nbChannels * (audioFormat == javaAudioRecordFields.PCM16 ? 2 : 1);
android_media_AudioTrack.cpp 189 int nbChannels = AudioSystem::popCount(channels);
238 int frameCount = buffSizeInBytes / (nbChannels * bytesPerSample);
790 jint sampleRateInHertz, jint nbChannels, jint audioFormat) {
797 return frameCount * nbChannels * (audioFormat == javaAudioTrackFields.PCM16 ? 2 : 1);
    [all...]
  /frameworks/base/media/java/android/media/
AudioRecord.java 762 int recordSource, int sampleRate, int nbChannels, int audioFormat, int buffSizeInBytes);
AudioTrack.java     [all...]

Completed in 5273 milliseconds