summaryrefslogtreecommitdiff
path: root/src/com/google/snappy/MyTimer.java
blob: 146003727ecad01533a3c9cbc8f3bdff6578a8c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.google.snappy;

/**
 * A global spot to store some times.
 */
public class MyTimer {
    // Got control in onCreate()
    public static long t0;
    // Sent open() to camera.
    public static long t_open_start;
    // Open from camera done.
    public static long t_open_end;
    // Told camera to configure capture session.
    public static long t_session_go;
    // Told session to do repeating request.
    public static long t_burst;

}