Loading services/core/java/com/android/server/audio/AudioService.java +3 −1 Original line number Diff line number Diff line Loading @@ -8597,7 +8597,9 @@ public class AudioService extends IAudioService.Stub if (isMutable()) { // For call stream, align mute only when muted, not when index is set to 0 mVolumeGroupState.mute( forceMuteState ? mIsMuted : groupIndex == 0 || mIsMuted); forceMuteState ? mIsMuted : (groupIndex == 0 && !isCallStream(mStreamType)) || mIsMuted); } } } Loading Loading
services/core/java/com/android/server/audio/AudioService.java +3 −1 Original line number Diff line number Diff line Loading @@ -8597,7 +8597,9 @@ public class AudioService extends IAudioService.Stub if (isMutable()) { // For call stream, align mute only when muted, not when index is set to 0 mVolumeGroupState.mute( forceMuteState ? mIsMuted : groupIndex == 0 || mIsMuted); forceMuteState ? mIsMuted : (groupIndex == 0 && !isCallStream(mStreamType)) || mIsMuted); } } } Loading