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

Commit 46c3304a authored by Matthew Xie's avatar Matthew Xie Committed by Android Git Automerger
Browse files

am 485813a0: Merge "Delay the second message for 30ms more than the last...

am 485813a0: Merge "Delay the second message for 30ms more than the last message for a2dp" into lmp-mr1-dev

* commit '485813a0':
  Delay the second message for 30ms more than the last message for a2dp
parents fff84a23 485813a0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4714,7 +4714,7 @@ public class AudioService extends IAudioService.Stub {
            synchronized (mLastDeviceConnectMsgTime) {
                long time = SystemClock.uptimeMillis();
                if (mLastDeviceConnectMsgTime > time) {
                    delay = (int)(mLastDeviceConnectMsgTime - time);
                    delay = (int)(mLastDeviceConnectMsgTime - time) + 30;
                }
            }
        }