Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit be7a3b28 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "AudioPlaybackConfiguration: port volume affects mute logic" into main

parents 39801849 31d05ac9
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -786,7 +786,9 @@ public final class AudioPlaybackConfiguration implements Parcelable {
    private boolean isMuteAffectingActiveState() {
        return (mMutedState & MUTED_BY_CLIENT_VOLUME) != 0
                || (mMutedState & MUTED_BY_VOLUME_SHAPER) != 0
                || (mMutedState & MUTED_BY_OP_PLAY_AUDIO) != 0;
                || (mMutedState & MUTED_BY_OP_PLAY_AUDIO) != 0
                || (mMutedState & MUTED_BY_STREAM_VOLUME) != 0
                || (mMutedState & MUTED_BY_PORT_VOLUME) != 0;
    }

    /**