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
225
AudioInputDescriptor *
inputDesc
= mInputs.valueFor(activeInput);
226
audio_devices_t newDevice = getDeviceForInputSource(
inputDesc
->mInputSource);
227
if ((newDevice != AUDIO_DEVICE_NONE) && (newDevice !=
inputDesc
->mDevice)) {
229
inputDesc
->mDevice, newDevice, activeInput);
230
inputDesc
->mDevice = newDevice;
458
AudioInputDescriptor *
inputDesc
= mInputs.valueFor(activeInput);
459
audio_devices_t newDevice = getDeviceForInputSource(
inputDesc
->mInputSource);
460
if ((newDevice != AUDIO_DEVICE_NONE) && (newDevice !=
inputDesc
->mDevice)) {
462
inputDesc
->mDevice, newDevice, activeInput);
463
inputDesc
->mDevice = newDevice
[
all
...]
/frameworks/av/services/audioflinger/
AudioPolicyService.cpp
295
InputDesc
*
inputDesc
;
297
inputDesc
= new
InputDesc
(audioSession);
298
mInputs.add(input,
inputDesc
);
300
inputDesc
= mInputs.valueAt(idx);
316
inputDesc
->mEffects.add(fx);
318
setPreProcessorEnabled(
inputDesc
, true);
354
InputDesc
*
inputDesc
= mInputs.valueAt(index)
[
all
...]
AudioPolicyService.h
280
class
InputDesc
{
282
InputDesc
(int session) : mSessionId(session) {}
283
/*virtual*/ ~
InputDesc
() {}
290
void setPreProcessorEnabled(const
InputDesc
*
inputDesc
, bool enabled);
319
KeyedVector< audio_io_handle_t,
InputDesc
* > mInputs;
Completed in 109 milliseconds