Skip to content

Commit 61ebf9c

Browse files
Eric LaurentAndroid (Google) Code Review
authored andcommitted
Merge "audio service: make dock audio is off by default" into jb-mr1-dev
2 parents 643e337 + 5ba0ffa commit 61ebf9c

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)