OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
252
// these below should probably come from the
audioFlinger
too...
266
//
AudioFlinger
does not currently support 8-bit data in shared memory
468
// Force flush if a shared buffer is used otherwise
audioflinger
856
const sp<IAudioFlinger>&
audioFlinger
= AudioSystem::get_audio_flinger();
857
if (
audioFlinger
== 0) {
858
ALOGE("Could not get
audioflinger
");
925
// 8-bit data in shared memory is not currently supported by
AudioFlinger
994
sp<IAudioTrack> track =
audioFlinger
->createTrack(streamType,
996
//
AudioFlinger
only sees 16-bit PCM
1011
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 68 milliseconds