Skip to content

Commit c864d95

Browse files
Eric LaurentAndroid Git Automerger
authored andcommitted
am 61ebf9c: Merge "audio service: make dock audio is off by default" into jb-mr1-dev
* commit '61ebf9cd8f0b7bfbad6840bb828f2300beef745d': audio service: make dock audio is off by default
2 parents f1c62be + 61ebf9c commit c864d95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

media/java/android/media/AudioService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ private void updateStreamVolumeAlias(boolean updateVolumes) {
636636
private void readDockAudioSettings(ContentResolver cr)
637637
{
638638
mDockAudioMediaEnabled = Settings.Global.getInt(
639-
cr, Settings.Global.DOCK_AUDIO_MEDIA_ENABLED, 1) == 1;
639+
cr, Settings.Global.DOCK_AUDIO_MEDIA_ENABLED, 0) == 1;
640640

641641
if (mDockAudioMediaEnabled) {
642642
mBecomingNoisyIntentDevices |= AudioSystem.DEVICE_OUT_ANLG_DOCK_HEADSET;

0 commit comments

Comments
 (0)