AudioService: Fix device dump in dumpsys output.

Bug: 19653026
Change-Id: Id09a502f1507477403c49be32ee0ed0f00ab288f
This commit is contained in:
John Spurlock
2015-03-09 14:21:20 -04:00
parent b32fc97282
commit 1ff1e6edf1

View File

@@ -3620,7 +3620,9 @@ public class AudioService extends IAudioService.Stub {
pw.print(" Devices: ");
final int devices = AudioSystem.getDevicesForStream(mStreamType);
int device, i = 0, n = 0;
while ((device = 1 << i) <= AudioSystem.DEVICE_OUT_DEFAULT) {
// iterate all devices from 1 to DEVICE_OUT_DEFAULT exclusive
// (the default device is not returned by getDevicesForStream)
while ((device = 1 << i) != AudioSystem.DEVICE_OUT_DEFAULT) {
if ((devices & device) != 0) {
if (n++ > 0) {
pw.print(", ");