summaryrefslogtreecommitdiffstats
path: root/include/hardware_legacy/AudioPolicyManagerBase.h
diff options
context:
space:
mode:
authorJean-Michel Trivi <jmtrivi@google.com>2012-08-24 11:45:04 -0700
committerJean-Michel Trivi <jmtrivi@google.com>2012-08-24 15:12:57 -0700
commitc8101f5b14e745b348592c5609e55f121a11a6bf (patch)
tree7125393b0ce00a3717e36495e2493f3e12c6ef50 /include/hardware_legacy/AudioPolicyManagerBase.h
parent00d1d688bd1a21aa46de00830f62b0e3ae23ec4d (diff)
downloadhardware_libhardware_legacy-c8101f5b14e745b348592c5609e55f121a11a6bf.tar.gz
hardware_libhardware_legacy-c8101f5b14e745b348592c5609e55f121a11a6bf.tar.bz2
hardware_libhardware_legacy-c8101f5b14e745b348592c5609e55f121a11a6bf.zip
Update AudioPolicyManagerBase to only use audio_devices_t
The AudioPolicyManagerBase implementation was using some device enum values from AudioSystemLegacy.h, of type audio_devices, and some from /system/audio.h, of type audio_devices_t. Now only uses audio_devices_t, and associated functions to inspect what audio device type they correspond to. Added #define to represent "no audio device" to clarify code. Removed unused variable in AudioPolicyManagerBase::startOutput() Change-Id: Ibec311dac550d6a806397377206a43bc708914c0
Diffstat (limited to 'include/hardware_legacy/AudioPolicyManagerBase.h')
-rw-r--r--include/hardware_legacy/AudioPolicyManagerBase.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/hardware_legacy/AudioPolicyManagerBase.h b/include/hardware_legacy/AudioPolicyManagerBase.h
index 0f75d7a..5030e40 100644
--- a/include/hardware_legacy/AudioPolicyManagerBase.h
+++ b/include/hardware_legacy/AudioPolicyManagerBase.h
@@ -72,10 +72,10 @@ public:
virtual ~AudioPolicyManagerBase();
// AudioPolicyInterface
- virtual status_t setDeviceConnectionState(AudioSystem::audio_devices device,
+ virtual status_t setDeviceConnectionState(audio_devices_t device,
AudioSystem::device_connection_state state,
const char *device_address);
- virtual AudioSystem::device_connection_state getDeviceConnectionState(AudioSystem::audio_devices device,
+ virtual AudioSystem::device_connection_state getDeviceConnectionState(audio_devices_t device,
const char *device_address);
virtual void setPhoneState(int state);
virtual void setForceUse(AudioSystem::force_use usage, AudioSystem::forced_config config);