OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:inputDesc
(Results
1 - 3
of
3
) sorted by null
/hardware/libhardware_legacy/audio/
AudioPolicyManagerBase.cpp
228
AudioInputDescriptor *
inputDesc
= mInputs.valueFor(activeInput);
229
audio_devices_t newDevice = getDeviceForInputSource(
inputDesc
->mInputSource);
230
if ((newDevice != AUDIO_DEVICE_NONE) && (newDevice !=
inputDesc
->mDevice)) {
232
inputDesc
->mDevice, newDevice, activeInput);
233
inputDesc
->mDevice = newDevice;
469
AudioInputDescriptor *
inputDesc
= mInputs.valueFor(activeInput);
470
audio_devices_t newDevice = getDeviceForInputSource(
inputDesc
->mInputSource);
471
if ((newDevice != AUDIO_DEVICE_NONE) && (newDevice !=
inputDesc
->mDevice)) {
473
inputDesc
->mDevice, newDevice, activeInput);
474
inputDesc
->mDevice = newDevice
[
all
...]
/frameworks/av/services/audioflinger/
AudioPolicyService.cpp
324
InputDesc
*
inputDesc
;
326
inputDesc
= new
InputDesc
(audioSession);
327
mInputs.add(input,
inputDesc
);
329
inputDesc
= mInputs.valueAt(idx);
345
inputDesc
->mEffects.add(fx);
347
setPreProcessorEnabled(
inputDesc
, true);
383
InputDesc
*
inputDesc
= mInputs.valueAt(index)
[
all
...]
AudioPolicyService.h
308
class
InputDesc
{
310
InputDesc
(int session) : mSessionId(session) {}
311
/*virtual*/ ~
InputDesc
() {}
318
void setPreProcessorEnabled(const
InputDesc
*
inputDesc
, bool enabled);
348
KeyedVector< audio_io_handle_t,
InputDesc
* > mInputs;
Completed in 79 milliseconds