Home | History | Annotate | Download | only in automated

Lines Matching defs:pcm

80     SLDataFormat_PCM pcm;
120 pcm.formatType = SL_DATAFORMAT_PCM;
121 pcm.numChannels = 2;
122 pcm.samplesPerSec = SL_SAMPLINGRATE_44_1;
123 pcm.bitsPerSample = SL_PCMSAMPLEFORMAT_FIXED_16;
124 pcm.containerSize = 16;
125 pcm.channelMask = SL_SPEAKER_FRONT_LEFT | SL_SPEAKER_FRONT_RIGHT;
126 pcm.endianness = SL_BYTEORDER_LITTLEENDIAN;
129 audiosrc.pFormat = &pcm;
140 int pcm = (int) (pcm_ * 32766.0 * gVolume);
141 ASSERT_TRUE(-32768 <= pcm && pcm <= 32767) << "pcm out of bound " << pcm;
142 stereoBuffer1[i].left = pcm;
143 stereoBuffer1[nframes - 1 - i].right = pcm;
311 // create audio player with buffer queue data source in stereo PCM format and ask for mute solo
318 // create audio player with buffer queue data source in mono PCM format and ask for mute solo
319 pcm.numChannels = 1;
320 pcm.channelMask = SL_SPEAKER_FRONT_CENTER;