/frameworks/av/media/libstagefright/codecs/mp3dec/src/ |
pvmp3_get_side_info.cpp | 122 int stereo = (info->mode == MPG_MD_MONO) ? 1 : 2; local 126 if (stereo == 1) 140 for (ch = 0; ch < stereo; ch++) 151 for (ch = 0; ch < stereo; ch++) 217 si->private_bits = getbits_crc(inputStream, stereo, crc, info->error_protection); 219 for (ch = 0; ch < stereo; ch++)
|
/cts/suite/audio_quality/lib/src/audio/ |
AudioRemote.cpp | 61 bool AudioRemotePlayback::startPlaybackForRemoteData(int id, bool stereo, int numberRepetition) 63 return mRemote->startPlayback(stereo, mSamplingRate, mMode, mVolume, id, numberRepetition); 75 bool stereo = buffer->isStereo(); local 76 return mRemote->startRecording(stereo, mSamplingRate, mMode, mVolume, buffer);
|
Buffer.cpp | 24 Buffer::Buffer(size_t capacity, size_t size, bool stereo) 28 mStereo(stereo) 82 bool stereo; local 84 stereo = true; 86 stereo = false; 98 Buffer* buffer = new Buffer(size, size, stereo); 136 LOGD("stereo mismatch %d %d", mStereo, b.mStereo);
|
/bionic/libc/kernel/common/linux/ |
tegra_audio.h | 29 int stereo; member in struct:tegra_audio_in_config
|
/external/kernel-headers/original/linux/ |
tegra_audio.h | 31 int stereo; member in struct:tegra_audio_in_config
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/ |
mixer_oss.h | 33 unsigned int stereo: 1; member in struct:snd_mixer_oss_slot
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/ |
mixer_oss.h | 33 unsigned int stereo: 1; member in struct:snd_mixer_oss_slot
|
/external/qemu/audio/ |
wavcapture.c | 97 int stereo, bits16, shift; local 111 stereo = nchannels == 2; 115 as.nchannels = 1 << stereo; 125 shift = bits16 + stereo;
|
wavaudio.c | 117 int bits16 = 0, stereo = 0; local 128 stereo = wav_as.nchannels == 2; 161 le_store (hdr + 28, hw->info.freq << (bits16 + stereo), 4); 162 le_store (hdr + 32, 1 << (bits16 + stereo), 2); 427 "Number of channels (1 - mono, 2 - stereo)", NULL, 0},
|
/external/qemu/distrib/sdl-1.2.15/src/audio/dma/ |
SDL_dmaaudio.c | 250 static int DMA_ReopenAudio(_THIS, const char *audiodev, int format, int stereo, 288 /* Set mono or stereo audio */ 290 if ( (ioctl(audio_fd, SNDCTL_DSP_STEREO, &stereo) < 0) || 291 (value != stereo) ) { 312 int stereo; local 395 /* Set mono or stereo audio (currently only two channels supported) */ 396 stereo = (spec->channels > 1); 397 ioctl(audio_fd, SNDCTL_DSP_STEREO, &stereo); 398 if ( stereo ) { 408 if ( DMA_ReopenAudio(this, audiodev, format, stereo, spec) < 0 ) [all...] |
/external/speex/libspeex/ |
stereo.c | 2 File: stereo.c 66 /* This is an ugly compatibility hack that properly resets the stereo state 77 SpeexStereoState *stereo = speex_alloc(sizeof(SpeexStereoState)); local 78 speex_stereo_state_reset(stereo); 79 return stereo; 84 RealSpeexStereoState *stereo = (RealSpeexStereoState*)_stereo; local 86 stereo->balance = 65536; 87 stereo->e_ratio = 16384; 88 stereo->smooth_left = 16384; 89 stereo->smooth_right = 16384 226 RealSpeexStereoState *stereo = (RealSpeexStereoState*)_stereo; local 253 RealSpeexStereoState *stereo = (RealSpeexStereoState*)_stereo; local 276 RealSpeexStereoState *stereo; local [all...] |
/cts/suite/audio_quality/test/ |
RemoteAudioFakeTcpTest.cpp | 161 bool stereo = false; local 164 int mode = AudioHardware::EModeVoice | (stereo ? 0x80000000 : 0); 187 ASSERT_TRUE(mRemoteAudio->startPlayback(stereo, samplingF, mode, volume, id, repeat)); 194 bool stereo = false; local 197 int mode = AudioHardware::EModeVoice | (stereo ? 0x80000000 : 0); 231 ASSERT_TRUE(mRemoteAudio->startPlayback(stereo, samplingF, mode, volume, id, repeat)); 241 ASSERT_TRUE(mRemoteAudio->startPlayback(stereo, samplingF, mode, volume, id, repeat)); 251 ASSERT_TRUE(mRemoteAudio->startPlayback(stereo, samplingF, mode, volume, id, repeat)); 256 bool stereo = false; local 259 int mode = AudioHardware::EModeVoice | (stereo ? 0x80000000 : 0) [all...] |
/external/chromium_org/third_party/opus/src/celt/ |
rate.c | 204 /* Add in the cost of a stereo split, if necessary. */ 219 /* Compensate for the extra DoF in stereo */ 257 int stereo; local 266 stereo = C>1; 387 /* Code the intensity and dual stereo parameters. */ 447 /* Compensate for the extra DoF in stereo */ 472 ebits[j] = bits[j] >> stereo >> BITRES; 499 extra_fine = IMIN(excess>>(stereo+BITRES),MAX_FINE_BITS-ebits[j]); 517 ebits[j] = bits[j] >> stereo >> BITRES; 547 /* Reserve bits for the intensity and dual stereo parameters. * [all...] |
bands.c | 598 static int compute_qn(int N, int b, int offset, int pulse_cap, int stereo) 604 if (stereo && N==2) 606 /* The upper limit ensures that in a stereo split with itheta==16384, we'll 648 int stereo, int *fill) 675 offset = (pulse_cap>>1) - (stereo&&N==2 ? QTHETA_OFFSET_TWOPHASE : QTHETA_OFFSET); 676 qn = compute_qn(N, *b, offset, pulse_cap, stereo); 677 if (stereo && i>=intensity) 685 itheta = stereo_itheta(X, Y, stereo, N); 694 time split, a step for stereo, and a triangular one for the rest. */ 695 if (stereo && N>2 827 int stereo; local [all...] |
/external/qemu/distrib/sdl-1.2.15/src/audio/ |
SDL_wave.c | 120 Sint8 nybble, stereo; local 139 stereo = (MS_ADPCM_state.wavefmt.channels == 2); 141 state[1] = &MS_ADPCM_state.state[stereo]; 145 if ( stereo ) { 150 if ( stereo ) { 156 if ( stereo ) { 162 if ( stereo ) { 173 if ( stereo ) { 181 if ( stereo ) {
|
/frameworks/wilhelm/src/itf/ |
IOutputMixExt.c | 26 // stereo is a frame consisting of a pair of 16-bit PCM samples 31 } stereo; typedef in typeref:struct:__anon30734 167 /** \brief This is the track mixer: fill the specified 16-bit stereo PCM buffer */ 173 // Force to be a multiple of a frame, assumes stereo 16-bit PCM 236 stereo *mixBuffer = (stereo *) dstWriter; 237 const stereo *source = (const stereo *) track->mReader; 243 for (j = 0; j < actual; j += sizeof(stereo), ++mixBuffer, ++source) { 249 for (j = 0; j < actual; j += sizeof(stereo), ++mixBuffer, ++source) [all...] |
/frameworks/wilhelm/tests/automated/ |
BufferQueue_test.cpp | 40 } stereo; typedef in typeref:struct:__anon30799 45 // 1 second of stereo audio at 44.1 kHz 46 static stereo stereoBuffer1[44100 * 1]; 311 // create audio player with buffer queue data source in stereo PCM format and ask for mute solo
|
/external/aac/libSBRdec/src/ |
sbrdecoder.cpp | 490 /* Handle case of Parametric Stereo */ 918 int stereo; local 942 stereo = (hSbrElement->elementID == ID_CPE) ? 1 : 0; 1049 if (stereo) { 1198 int stereo = (hSbrElement->elementID == ID_CPE) ? 1 : 0; local [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/ |
SDL_sysvideo.h | 307 int stereo; member in struct:SDL_VideoDevice::__anon25017
|
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
webrtcsdp_unittest.cc | 122 int stereo; member in struct:CodecParams [all...] |
/external/opencv/cvaux/include/ |
cvaux.h | 228 * A few functions from old stereo gesture recognition demosions * 308 /*******************************Stereo correspondence*************************************/ 459 // Purpose: find stereo correspondence on stereo-pair 462 // leftImage - left image of stereo-pair (format 8uC1). 463 // rightImage - right image of stereo-pair (format 8uC1). 526 /* New part for stereo */ 1550 CvStereoCamera stereo; member in class:CvCalibFilter [all...] |
/prebuilts/tools/common/m2/internal/com/android/external/eclipse/swt/3.5.0/ |
swt-3.5.0.jar | |
/prebuilts/tools/darwin-x86/swt/ |
swt.jar | |
/prebuilts/tools/darwin-x86_64/swt/ |
swt.jar | |
/prebuilts/tools/linux-x86/swt/ |
swt.jar | |