Lines Matching refs:streamType

125         audio_stream_type_t streamType,
139 status = AudioSystem::getOutputSamplingRate(&afSampleRate, streamType);
142 streamType, status);
146 status = AudioSystem::getOutputFrameCount(&afFrameCount, streamType);
149 streamType, status);
153 status = AudioSystem::getOutputLatency(&afLatency, streamType);
156 streamType, status);
169 ALOGE("AudioTrack::getMinFrameCount failed for streamType %d, sampleRate %u",
170 streamType, sampleRate);
196 audio_stream_type_t streamType,
221 mStatus = set(streamType, sampleRate, format, channelMask,
228 audio_stream_type_t streamType,
253 mStatus = set(streamType, sampleRate, format, channelMask,
288 audio_stream_type_t streamType,
308 ALOGV("set(): streamType %d, sampleRate %u, format %#x, channelMask %#x, frameCount %zu, "
310 streamType, sampleRate, format, channelMask, frameCount, flags, notificationFrames,
355 ALOGV("set() streamType %d frameCount %zu flags %04x", streamType, frameCount, flags);
364 if (streamType == AUDIO_STREAM_DEFAULT) {
365 streamType = AUDIO_STREAM_MUSIC;
368 if (uint32_t(streamType) >= AUDIO_STREAM_PUBLIC_CNT) {
369 ALOGE("Invalid stream type %d", streamType);
372 mStreamType = streamType;
1242 audio_stream_type_t AudioTrack::streamType() const
1265 audio_stream_type_t streamType = mStreamType;
1278 mSessionId, &streamType, mClientUid,
1285 mSessionId, streamType, mAttributes.usage, mSampleRate, mFormat, mChannelMask,
1427 sp<IAudioTrack> track = audioFlinger->createTrack(streamType,
1594 AudioSystem::releaseOutput(output, streamType, mSessionId);