diff options
author | Eric Laurent <elaurent@google.com> | 2010-10-19 10:39:43 -0700 |
---|---|---|
committer | Eric Laurent <elaurent@google.com> | 2010-10-21 08:43:49 -0700 |
commit | b7e04753906052fc7d9d6305e258b9a8291847fb (patch) | |
tree | f99741629b3d6c09fec8d1e473af5f84f8628404 /libaudio/AudioHardwareALSA.h | |
parent | 3bcf0734204aa6043ace1c16ab3879213586915c (diff) | |
download | device_samsung_crespo-b7e04753906052fc7d9d6305e258b9a8291847fb.zip device_samsung_crespo-b7e04753906052fc7d9d6305e258b9a8291847fb.tar.gz device_samsung_crespo-b7e04753906052fc7d9d6305e258b9a8291847fb.tar.bz2 |
Several audio HAL fixes:
Anton Rogozin <ant.rogozin@samsung.com>
- Move RIL clock sync to starting of ringtone mode as requested by modem team
- BT noise reduction turning off support
Change-Id: I95a8157ca0da7a4432fe0d5bc3a4adba94cdb19a
Diffstat (limited to 'libaudio/AudioHardwareALSA.h')
-rwxr-xr-x | libaudio/AudioHardwareALSA.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libaudio/AudioHardwareALSA.h b/libaudio/AudioHardwareALSA.h index eac7b7a..c3b6caa 100755 --- a/libaudio/AudioHardwareALSA.h +++ b/libaudio/AudioHardwareALSA.h @@ -350,6 +350,8 @@ namespace android int setVoiceRecordGain(bool enable); int setVoiceRecordGain_l(bool enable); + virtual status_t setParameters(const String8& keyValuePairs); + protected: /** * doRouting actually initiates the routing. A call to setRouting @@ -375,6 +377,7 @@ namespace android HRilClient mRilClient; bool mVrModeEnabled; bool mActivatedCP; + bool mBluetoothECOff; HRilClient (*openClientRILD) (void); int (*disconnectRILD) (HRilClient); @@ -387,6 +390,7 @@ namespace android void loadRILD(void); status_t connectRILDIfRequired(void); + void setBluetoothNrEcOnOff(bool disable); }; |