Lines Matching full:pcm
29 Signed 16-bit PCM
69 /* metadata key index for the PCM format information we want to retrieve */
72 /* size of the struct to retrieve the PCM format metadata values: the values we're interested in
79 /* we only want to query / display the PCM format once */
242 /* Example: query of the decoded PCM format */
251 // but the call was successful for the PCM format keys, so those conditions are implied
296 SLDataFormat_PCM pcm;
311 /* allocate memory to receive the PCM format metadata */
346 pcm.formatType = SL_DATAFORMAT_PCM;
348 pcm.numChannels = 1;
349 pcm.samplesPerSec = SL_SAMPLINGRATE_8;
350 pcm.bitsPerSample = SL_PCMSAMPLEFORMAT_FIXED_16;
351 pcm.containerSize = 16;
352 pcm.channelMask = SL_SPEAKER_FRONT_LEFT;
353 pcm.endianness = SL_BYTEORDER_LITTLEENDIAN;
356 decDest.pFormat = (void * ) &pcm;
461 // of a PCM decoder. An application that would want to directly get access to those values
542 fprintf(stdout, "on an AudioPlayer object to decode a URI to PCM\n");