Searched refs:mTimestamps (Results 1 – 6 of 6) sorted by relevance
29 ArrayList<Long> mTimestamps = new ArrayList<Long>(); field in AccumulatingMidiReceiver36 mTimestamps.add(timestamp); in onSend()44 return mTimestamps.toArray(new Long[mTimestamps.size()]); in getTimestamps()
84 return (i + 1) % mTimestamps.size(); in next()92 if (mLastTimestampIndex < 0 || mTimestamps.empty()) { in validate()96 const auto aValidTimestamp = mTimestamps[mLastTimestampIndex]; in validate()105 const auto iter = std::min_element(mTimestamps.begin(), mTimestamps.end(), in validate()147 if (mTimestamps.size() < kMinimumSamplesForPrediction) { in addVsyncTimestamp()150 mTimestamps.push_back(timestamp); in addVsyncTimestamp()152 } else if (!mTimestamps.empty()) { in addVsyncTimestamp()154 std::max(timestamp, *std::max_element(mTimestamps.begin(), mTimestamps.end())); in addVsyncTimestamp()163 if (mTimestamps.size() != kHistorySize) { in addVsyncTimestamp()164 mTimestamps.push_back(timestamp); in addVsyncTimestamp()[all …]
152 std::vector<nsecs_t> mTimestamps GUARDED_BY(mMutex);
78 mTimestamps.pushBack(timestamp); in pushSample()79 const int numSamples = mTimestamps.size(); in pushSample()111 const float dt = mTimestamps[numSamples - i] - mTimestamps[numSamples - i - 1]; in pushSample()123 mTimestamps.clear(); in reset()127 if (mTimestamps.size() == mTimestamps.capacity()) { in jerkMagnitude()
62 RingBuffer<int64_t> mTimestamps{4};
989 private final Vector<Long> mTimestamps = new Vector<Long>(); field in WebVttTrack1059 !mTimestamps.contains(span.mTimestampMs)) { in onCueParsed()1060 mTimestamps.add(span.mTimestampMs); in onCueParsed()1065 if (mTimestamps.size() > 0) { in onCueParsed()1066 cue.mInnerTimesMs = new long[mTimestamps.size()]; in onCueParsed()1067 for (int ix=0; ix < mTimestamps.size(); ++ix) { in onCueParsed()1068 cue.mInnerTimesMs[ix] = mTimestamps.get(ix); in onCueParsed()1070 mTimestamps.clear(); in onCueParsed()