Home | History | Annotate | Download | only in android

Lines Matching refs:configuration

22   SLDataFormat_PCM configuration;
23 configuration.formatType = SL_DATAFORMAT_PCM;
24 configuration.numChannels = kNumChannels;
29 configuration.samplesPerSec = sample_rate * 1000;
30 configuration.bitsPerSample = SL_PCMSAMPLEFORMAT_FIXED_16;
31 configuration.containerSize = SL_PCMSAMPLEFORMAT_FIXED_16;
32 configuration.channelMask = SL_SPEAKER_FRONT_CENTER;
33 if (2 == configuration.numChannels) {
34 configuration.channelMask =
37 configuration.endianness = SL_BYTEORDER_LITTLEENDIAN;
38 return configuration;