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 179 // these below should probably come from the audioFlinger too...
189 // Temporary restriction: AudioFlinger currently supports 16-bit PCM only
413 const sp<IAudioFlinger>& audioFlinger = AudioSystem::get_audio_flinger();
414 if (audioFlinger == 0) {
415 ALOGE("Could not get audioflinger");
456 // Now that we have a reference to an I/O handle and have not yet handed it off to AudioFlinger,
469 sp<IAudioRecord> record = audioFlinger->openRecord(input,
484 ALOGE("AudioFlinger could not create record track, status: %d", status);
489 // AudioFlinger now owns the reference to the I/O handle,
995 // FIXME this fails if we have a new AudioFlinger instanc
    [all...]
AudioTrack.cpp 316 // these below should probably come from the audioFlinger too...
336 // AudioFlinger does not currently support 8-bit data in shared memory
540 // Force flush if a shared buffer is used otherwise audioflinger
924 const sp<IAudioFlinger>& audioFlinger = AudioSystem::get_audio_flinger();
925 if (audioFlinger == 0) {
926 ALOGE("Could not get audioflinger");
939 // Now that we have a reference to an I/O handle and have not yet handed it off to AudioFlinger,
1007 // 8-bit data in shared memory is not currently supported by AudioFlinger
    [all...]
  /frameworks/av/services/audioflinger/
AudioFlinger.h 77 // AudioFlinger has a hard-coded upper limit of 2 channels for capture and playback.
90 class AudioFlinger :
91 public BinderService<AudioFlinger>,
94 friend class BinderService<AudioFlinger>; // for AudioFlinger()
320 AudioFlinger() ANDROID_API;
321 virtual ~AudioFlinger();
382 // AudioFlinger::setParameters() updates, other threads read w/o lock
396 Client(const sp<AudioFlinger>& audioFlinger, pid_t pid)
    [all...]

Completed in 757 milliseconds