HomeSort by relevance Sort by last modified time
    Searched defs:audioFlinger (Results 1 - 4 of 4) sorted by null

  /frameworks/av/media/libmedia/
AudioEffect.cpp 108 const sp<IAudioFlinger>& audioFlinger = AudioSystem::get_audio_flinger();
109 if (audioFlinger == 0) {
110 ALOGE("set(): Could not get audioflinger");
130 iEffect = audioFlinger->createEffect((effect_descriptor_t *)&mDescriptor,
134 ALOGE("set(): AudioFlinger could not create effect, status: %d", mStatus);
AudioRecord.cpp 187 // these below should probably come from the audioFlinger too...
197 // Temporary restriction: AudioFlinger currently supports 16-bit PCM only
258 // Update buffer size in case it has been limited by AudioFlinger during track creation
427 const sp<IAudioFlinger>& audioFlinger = AudioSystem::get_audio_flinger();
428 if (audioFlinger == 0) {
429 ALOGE("Could not get audioflinger");
466 sp<IAudioRecord> record = audioFlinger->openRecord(input,
478 ALOGE("AudioFlinger could not create record track, status: %d", status);
943 // FIXME this fails if we have a new AudioFlinger instance
AudioTrack.cpp 249 // these below should probably come from the audioFlinger too...
263 // AudioFlinger does not currently support 8-bit data in shared memory
465 // Force flush if a shared buffer is used otherwise audioflinger
824 const sp<IAudioFlinger>& audioFlinger = AudioSystem::get_audio_flinger();
825 if (audioFlinger == 0) {
826 ALOGE("Could not get audioflinger");
892 // 8-bit data in shared memory is not currently supported by AudioFlinger
961 sp<IAudioTrack> track = audioFlinger->createTrack(streamType,
963 // AudioFlinger only sees 16-bit PCM
978 ALOGE("AudioFlinger could not create track, status: %d", status)
    [all...]
  /frameworks/av/services/audioflinger/
AudioFlinger.h 73 // AudioFlinger has a hard-coded upper limit of 2 channels for capture and playback.
89 class AudioFlinger :
90 public BinderService<AudioFlinger>,
93 friend class BinderService<AudioFlinger>; // for AudioFlinger()
289 AudioFlinger() ANDROID_API;
290 virtual ~AudioFlinger();
308 // AudioFlinger::setParameters() updates, other threads read w/o lock
322 Client(const sp<AudioFlinger>& audioFlinger, pid_t pid)
    [all...]

Completed in 82 milliseconds