Searched refs:CHANNEL_COUNT (Results 1 – 4 of 4) sorted by relevance
/external/replicaisland/src/com/replica/replicaisland/ |
D | ChannelSystem.java | 22 private static final int CHANNEL_COUNT = 8; field in ChannelSystem 30 mChannels = new FixedSizeArray<Channel>(CHANNEL_COUNT); in ChannelSystem() 34 for (int x = 0; x < CHANNEL_COUNT; x++) { in ChannelSystem() 43 for (int x = 0; x < CHANNEL_COUNT; x++) { in reset() 57 assert mRegisteredChannelCount < CHANNEL_COUNT : "Channel pool exhausted!"; in registerChannel() 59 if (mRegisteredChannelCount < CHANNEL_COUNT) { in registerChannel()
|
/external/drrickorang/LoopbackApp/app/src/main/cpp/lb2/ |
D | loopback2.cpp | 28 static constexpr int CHANNEL_COUNT = 1; variable 54 CHANNEL_COUNT, samplingRate, ignoreFirstFrames, loopbackTone)); in lb2Init() 61 reinterpret_cast<sample_t*>(byteBufferPtr), byteBufferLength, CHANNEL_COUNT); in lb2Init() 64 CHANNEL_COUNT, samplingRate, frequency1, std::move(byteBuffer))); in lb2Init() 95 AudioBufferView<double>(pSamples, maxSamples / CHANNEL_COUNT, CHANNEL_COUNT)); in lb2ProcessNext()
|
/external/adhd/sound_card_init/amp/src/max98373d/ |
D | dsm_param.rs | 170 const CHANNEL_COUNT: usize = 2; constant 177 + CHANNEL_COUNT * PARAM_COUNT * DSMParam::DWORD_PER_PARAM in test_dsmparam_try_from_tlv_ok() 183 assert!(DSMParam::try_from_tlv(tlv, CHANNEL_COUNT).is_ok()); in test_dsmparam_try_from_tlv_ok() 192 DSMParam::try_from_tlv(tlv, CHANNEL_COUNT).unwrap_err(), in test_dsmparam_try_from_invalid_len() 202 + CHANNEL_COUNT * PARAM_COUNT * DSMParam::DWORD_PER_PARAM in test_dsmparam_try_from_param_count() 207 DSMParam::try_from_tlv(tlv, CHANNEL_COUNT).unwrap_err(), in test_dsmparam_try_from_param_count()
|
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/source/ |
D | SilenceMediaSource.java | 74 private static final int CHANNEL_COUNT = 2; field in SilenceMediaSource 78 .setChannelCount(CHANNEL_COUNT) 83 new byte[Util.getPcmFrameSize(PCM_ENCODING, CHANNEL_COUNT) * 1024]; 286 return Util.getPcmFrameSize(PCM_ENCODING, CHANNEL_COUNT) * audioSampleCount; in getAudioByteCount() 290 long audioSampleCount = bytes / Util.getPcmFrameSize(PCM_ENCODING, CHANNEL_COUNT); in getAudioPositionUs()
|