HomeSort by relevance Sort by last modified time
    Searched defs:numChannels (Results 1 - 25 of 133) sorted by null

1 2 3 4 5 6

  /development/perftests/panorama/feature_mos/src/mosaic/
Pyramid.h 36 real numChannels; // Number of channels in input images
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Pyramid.h 36 real numChannels; // Number of channels in input images
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Pyramid.h 36 real numChannels; // Number of channels in input images
  /frameworks/wilhelm/src/itf/
IMuteSolo.c 33 SLuint8 numChannels = ap->mNumChannels;
34 if (1 >= numChannels) {
37 } else if (numChannels <= chan) {
73 SLuint8 numChannels = ap->mNumChannels;
74 if (1 >= numChannels) {
77 } else if (numChannels <= chan) {
105 SLuint8 numChannels = ap->mNumChannels;
106 if (1 >= numChannels) {
109 } else if (numChannels <= chan) {
145 SLuint8 numChannels = ap->mNumChannels
    [all...]
  /frameworks/av/media/libstagefright/rtsp/
ARawAudioAssembler.cpp 136 int32_t sampleRate, numChannels;
138 desc, &sampleRate, &numChannels);
141 format->setInt32(kKeyChannelCount, numChannels);
AMPEG4ElementaryAssembler.cpp 189 int32_t sampleRate, numChannels;
191 desc.c_str(), &sampleRate, &numChannels);
193 mChannelConfig = numChannels;
APacketSource.cpp 473 int32_t sampleRate, numChannels;
475 desc.c_str(), &sampleRate, &numChannels);
478 mFormat->setInt32(kKeyChannelCount, numChannels);
489 int32_t sampleRate, numChannels;
491 desc.c_str(), &sampleRate, &numChannels);
494 mFormat->setInt32(kKeyChannelCount, numChannels);
496 if (sampleRate != 8000 || numChannels != 1) {
502 int32_t sampleRate, numChannels;
504 desc.c_str(), &sampleRate, &numChannels);
507 mFormat->setInt32(kKeyChannelCount, numChannels);
    [all...]
ARTPWriter.cpp 475 int32_t sampleRate, numChannels;
477 CHECK(mSource->getFormat()->findInt32(kKeyChannelCount, &numChannels));
479 CHECK_EQ(numChannels, 1);
483 sdp.append(StringPrintf("/%d/%d", sampleRate, numChannels));
  /external/srec/audio/AudioIn/UNIX/src/
audioinwrapper.cpp 61 static int numChannels = 1;
71 numChannels = channel_count;
102 (numChannels > 1) ? AUDIO_CHANNEL_IN_STEREO : AUDIO_CHANNEL_IN_MONO,
  /external/aac/libSYS/include/
wav_file.h 146 USHORT numChannels;
201 * \param numChannels Desired number of audio channels of the resulting WAV file.
206 INT WAV_OutputOpen(HANDLE_WAV *pWav, const char *outputFilename, INT sampleRate, INT numChannels, INT bitsPerSample);
  /frameworks/wilhelm/tests/sandbox/
configbq.c 28 SLuint8 numChannels;
98 for (format = formats; format->numChannels; ++format) {
100 printf("Channels: %d, sample rate: %u, bits: %u\n", format->numChannels,
109 format_pcm.numChannels = format->numChannels;
150 float seconds = (((i * 8) / (format->bitsPerSample * format->numChannels)) * 1000.0) /
154 if (2 == format->numChannels) {
166 assert(1 == format->numChannels);
intbufq.c 113 pcm.numChannels = 2;
140 SLuint8 numChannels = 123;
141 result = (*playerMuteSolo)->GetNumChannels(playerMuteSolo, &numChannels);
142 assert(2 == numChannels);
  /external/sonivox/arm-fm-22k/host_src/
eas.h 54 EAS_I32 numChannels;
    [all...]
  /external/sonivox/arm-hybrid-22k/host_src/
eas.h 54 EAS_I32 numChannels;
    [all...]
  /external/sonivox/arm-wt-22k/host_src/
eas.h 54 EAS_I32 numChannels;
    [all...]
  /frameworks/av/media/libmedia/
IMediaPlayerService.cpp 232 int numChannels;
239 &numChannels,
246 reply->writeInt32(numChannels);
259 int numChannels;
262 status_t status = decode(fd, offset, length, &sampleRate, &numChannels, &format,
267 reply->writeInt32(numChannels);
SoundPool.cpp 497 int numChannels;
508 &numChannels,
513 status = MediaPlayer::decode(mFd, mOffset, mLength, &sampleRate, &numChannels, &format,
523 ALOGV("pointer = %p, size = %zu, sampleRate = %u, numChannels = %d",
524 mHeap->getBase(), mSize, sampleRate, numChannels);
532 if ((numChannels < 1) || (numChannels > 2)) {
533 ALOGE("Sample channel count (%d) out of range", numChannels);
540 mNumChannels = numChannels;
590 int numChannels = sample->numChannels()
    [all...]
  /frameworks/av/media/libstagefright/
AudioPlayer.cpp 125 int32_t numChannels, channelMask;
126 success = format->findInt32(kKeyChannelCount, &numChannels);
131 ALOGI_IF(numChannels > 2,
132 "source format didn't specify channel mask, using (%d) channel order", numChannels);
184 mSampleRate, numChannels, channelMask, audioFormat,
226 audio_channel_out_mask_from_count(numChannels) : channelMask;
  /frameworks/wilhelm/tests/listening/
slesTest_playMuteSolo.cpp 107 SLuint8 numChannels = 0;
108 SLresult res = (*muteSolo)->GetNumChannels(muteSolo, &numChannels); ExitOnError(res);
109 //fprintf(stdout, "Content has %d channel(s)\n", numChannels);
117 if (numChannels > 1) { // SLMuteSoloItf only works if more than one channel
137 if (numChannels > 1) { // SLMuteSoloItf only works if more than one channel
278 SLuint8 numChannels = 123;
279 result = (*muteSoloItf)->GetNumChannels(muteSoloItf, &numChannels);
280 printf("GetNumChannels after Realize but before pre-fetch: result=%u, numChannels=%u\n",
281 result, numChannels);
330 numChannels = 123
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
TexImageTransform.java 253 int numChannels = includeAlpha ? 4 : 3;
254 byte[] unsignedData = new byte[(shortData.length/2) * numChannels];
267 unsignedData[i * numChannels + 0] = UnsignedBytes.checkedCast(r);
268 unsignedData[i * numChannels + 1] = UnsignedBytes.checkedCast(g);
269 unsignedData[i * numChannels + 2] = UnsignedBytes.checkedCast(b);
272 unsignedData[i * numChannels + 3] = UnsignedBytes.checkedCast(a);
  /cts/tests/tests/media/src/android/media/cts/
AudioTrack_ListenerTest.java 102 final int numChannels = (TEST_CONF == AudioFormat.CHANNEL_CONFIGURATION_STEREO) ? 2 : 1;
104 final int bytesPerFrame = numChannels * bytesPerSample;
  /development/ndk/platforms/android-9/samples/native-audio/jni/
native-audio-jni.c 413 SLuint8 numChannels;
417 result = (*muteSoloItf)->GetNumChannels(muteSoloItf, &numChannels);
420 numChannels = 0;
425 numChannels = 0;
427 return numChannels;
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
FlatManifestWriterImpl.java 454 int numChannels = 0;
458 numChannels += 1;
463 numChannels += 2;
469 numChannels += 2;
476 numChannels += 1;
481 numChannels += 1;
486 numChannels += 2;
492 numChannels += 2;
498 numChannels += 1;
503 numChannels += 1
    [all...]
  /external/aac/libAACdec/include/
aacdecoder_lib.h 220 While the members sampleRate, frameSize and numChannels might be quite self explaining,
224 CStreamInfo::numChannels cells. Each cell of pChannelType indicates the channel type, described in
258 CStreamInfo::numChannels = 2
280 CStreamInfo::numChannels = 6
320 CStreamInfo::numChannels = 3
    [all...]
  /external/aac/libSBRenc/include/
sbr_encoder.h 145 UCHAR numChannels; /*!< */
288 * \param numChannels The amount of audio channels
293 UINT sbrEncoder_LimitBitRate(UINT bitRate, UINT numChannels, UINT coreSampleRate, AUDIO_OBJECT_TYPE aot);
313 * \param numChannels Input: Encoder input channels. output: core encoder channels.
332 INT *numChannels,

Completed in 638 milliseconds

1 2 3 4 5 6