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

Commit 199bb4a6 authored by Kevin Chyn's avatar Kevin Chyn Committed by Android (Google) Code Review
Browse files

Merge "Add FIRST_FRAME_RECEIVED to AcquiredInfo"

parents 25a79e2b 898a2e3d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -41,4 +41,5 @@ enum AcquiredInfo {
  START = 20,
  SENSOR_DIRTY = 21,
  VENDOR = 22,
  FIRST_FRAME_RECEIVED = 23,
}
+10 −6
Original line number Diff line number Diff line
@@ -198,10 +198,9 @@ enum AcquiredInfo {
    /**
     * This message represents the earliest message sent at the beginning of the authentication
     * pipeline. It is expected to be used to measure latency. For example, in a camera-based
     * authentication system it's expected to be sent prior to camera initialization. Note this
     * should be sent whenever authentication is restarted (see IBiometricsFace#userActivity).
     * The framework will measure latency based on the time between the last START message and the
     * onAuthenticated callback.
     * authentication system it's expected to be sent prior to camera initialization. The framework
     * will measure latency based on the time between the last START message and the onAuthenticated
     * callback.
     */
    START = 20,

@@ -214,6 +213,11 @@ enum AcquiredInfo {
     * Vendor-specific acquisition message. See ISessionCallback#onAcquired vendorCode
     * documentation.
     */
    VENDOR = 22
    VENDOR = 22,

    /**
     * The first frame from the camera has been received.
     */
    FIRST_FRAME_RECEIVED = 23
}