Home
last modified time | relevance | path

Searched refs:TapLatencyEvent (Results 1 – 2 of 2) sorted by relevance

/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/audiolib/
DTapLatencyAnalyser.java35 public static class TapLatencyEvent { class in TapLatencyAnalyser
38 public TapLatencyEvent(int type, int sampleIndex) { in TapLatencyEvent() method in TapLatencyAnalyser.TapLatencyEvent
51 public TapLatencyEvent[] analyze(float[] buffer, int offset, int numSamples) { in analyze()
82 private TapLatencyEvent[] scanForEdges(float[] peakBuffer, int numSamples) { in scanForEdges()
83 ArrayList<TapLatencyEvent> events = new ArrayList<TapLatencyEvent>(); in scanForEdges()
94 events.add(new TapLatencyEvent(TYPE_TAP, sampleIndex)); in scanForEdges()
103 return events.toArray(new TapLatencyEvent[0]); in scanForEdges()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
DAudioTap2ToneActivity.java320 public TapLatencyAnalyser.TapLatencyEvent[] events;