Home
last modified time | relevance | path

Searched refs:timestamps_ (Results 1 – 4 of 4) sorted by relevance

/external/webrtc/webrtc/modules/video_coding/
Dreceiver_unittest.cc343 while (!timestamps_.empty() && in AdvanceTimeMicroseconds()
344 timestamps_.front().arrive_time <= end_time) { in AdvanceTimeMicroseconds()
345 RTC_DCHECK(timestamps_.front().arrive_time >= start_time); in AdvanceTimeMicroseconds()
347 SimulatedClock::AdvanceTimeMicroseconds(timestamps_.front().arrive_time - in AdvanceTimeMicroseconds()
349 GenerateAndInsertFrame((timestamps_.front().render_time + 500) / 1000); in AdvanceTimeMicroseconds()
350 timestamps_.pop(); in AdvanceTimeMicroseconds()
374 timestamps_.push(TimestampPair(arrive_timestamps[i] * 1000, in SetFrames()
403 std::queue<TimestampPair> timestamps_; member in webrtc::SimulatedClockWithFrames
/external/v8/src/profiler/
Dprofile-generator.cc412 timestamps_.Add(timestamp); in AddPath()
480 streaming_next_sample_ ? timestamps_[streaming_next_sample_ - 1] in StreamPendingTraceEvents()
482 for (int i = streaming_next_sample_; i < timestamps_.length(); ++i) { in StreamPendingTraceEvents()
484 static_cast<int>((timestamps_[i] - lastTimestamp).InMicroseconds())); in StreamPendingTraceEvents()
485 lastTimestamp = timestamps_[i]; in StreamPendingTraceEvents()
488 DCHECK(samples_.length() == timestamps_.length()); in StreamPendingTraceEvents()
Dprofile-generator.h284 return timestamps_.at(index); in sample_timestamp()
303 List<base::TimeTicks> timestamps_; variable
/external/webrtc/talk/app/webrtc/java/jni/
Dandroidmediaencoder_jni.cc212 std::vector<int32_t> timestamps_; // Video frames timestamp queue. member in webrtc_jni::MediaCodecVideoEncoder
491 timestamps_.clear(); in InitEncodeOnCodecThread()
658 timestamps_.push_back(input_frame.timestamp()); in EncodeOnCodecThread()
863 output_timestamp_ = timestamps_.front(); in DeliverPendingOutputs()
864 timestamps_.erase(timestamps_.begin()); in DeliverPendingOutputs()