OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CHANNEL_COUNT
(Results
1 - 3
of
3
) sorted by null
/external/replicaisland/src/com/replica/replicaisland/
ChannelSystem.java
22
private static final int
CHANNEL_COUNT
= 8;
30
mChannels = new FixedSizeArray<Channel>(
CHANNEL_COUNT
);
34
for (int x = 0; x <
CHANNEL_COUNT
; x++) {
43
for (int x = 0; x <
CHANNEL_COUNT
; x++) {
57
assert mRegisteredChannelCount <
CHANNEL_COUNT
: "Channel pool exhausted!";
59
if (mRegisteredChannelCount <
CHANNEL_COUNT
) {
/external/drrickorang/LoopbackApp/app/src/main/cpp/lb2/
loopback2.cpp
28
static constexpr int
CHANNEL_COUNT
= 1;
54
CHANNEL_COUNT
, samplingRate, ignoreFirstFrames, loopbackTone));
61
reinterpret_cast<sample_t*>(byteBufferPtr), byteBufferLength,
CHANNEL_COUNT
);
64
CHANNEL_COUNT
, samplingRate, frequency1, std::move(byteBuffer)));
95
AudioBufferView<double>(pSamples, maxSamples /
CHANNEL_COUNT
,
CHANNEL_COUNT
));
/cts/tests/tests/media/src/android/media/cts/
MediaExtractorTest.java
484
final int
CHANNEL_COUNT
= 2;
485
final int SAMPLES = PCM_FRAMES *
CHANNEL_COUNT
;
492
format.setInteger(MediaFormat.KEY_CHANNEL_COUNT,
CHANNEL_COUNT
);
495
+ " channel count: " +
CHANNEL_COUNT
);
Completed in 414 milliseconds