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

Commit 99f24661 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "[AudioServer] Fix CTS for volume groups based on non public streams"

parents 9f4da761 e0487fa8
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -2135,6 +2135,13 @@ public class AudioService extends IAudioService.Stub

        // For legacy reason, propagate to all streams associated to this volume group
        for (final int groupedStream : vgs.getLegacyStreamTypes()) {
            try {
                ensureValidStreamType(groupedStream);
            } catch (IllegalArgumentException e) {
                Log.d(TAG, "volume group " + volumeGroup + " has internal streams (" + groupedStream
                        + "), do not change associated stream volume");
                continue;
            }
            setStreamVolume(groupedStream, index, flags, callingPackage, callingPackage,
                            Binder.getCallingUid());
        }