HomeSort by relevance Sort by last modified time
    Searched refs:timestamp (Results 1 - 25 of 3012) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/webrtc/system_wrappers/source/
rtp_to_ntp_unittest.cc 40 uint32_t timestamp = 0; local
43 rtcp.push_front(RtcpMeasurement(ntp_sec, ntp_frac, timestamp));
45 timestamp -= kTimestampTicksPerMs;
46 rtcp.push_front(RtcpMeasurement(ntp_sec, ntp_frac, timestamp));
48 timestamp -= kTimestampTicksPerMs;
51 // has a much smaller RTP timestamp than the newer.
52 EXPECT_FALSE(RtpToNtpMs(timestamp, rtcp, &timestamp_in_ms));
59 uint32_t timestamp = 0xFFFFFFFF; local
62 rtcp.push_front(RtcpMeasurement(ntp_sec, ntp_frac, timestamp));
64 timestamp += kTimestampTicksPerMs
79 uint32_t timestamp = 0xFFFFFFFF - 2 * kTimestampTicksPerMs; local
99 uint32_t timestamp = 0; local
116 uint32_t timestamp = 0xFFFFFFFF; local
136 uint32_t timestamp = 0; local
    [all...]
  /external/chromium_org/ppapi/api/private/
pp_video_frame_private.idl 18 * A timestamp placing the frame in a video stream.
20 PP_TimeTicks timestamp;
  /external/chromium_org/third_party/WebKit/Source/modules/webmidi/
MIDIOutput.idl 38 [RaisesException] void send(Uint8Array data, optional double timestamp);
39 [RaisesException] void send(sequence<unsigned long> data, optional double timestamp);
  /external/chromium_org/ui/compositor/
compositor_animation_observer.h 17 virtual void OnAnimationStep(base::TimeTicks timestamp) = 0;
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
timestamp_map.h 21 uint32_t timestamp; member in struct:webrtc::VCMTimestampDataTuple
38 int32_t Add(uint32_t timestamp, void* data);
39 void* Pop(uint32_t timestamp);
inter_frame_delay.cc 31 // Calculates the delay of a frame with the given timestamp.
34 VCMInterFrameDelay::CalculateDelay(uint32_t timestamp,
42 _prevTimestamp = timestamp;
48 CheckForWrapArounds(timestamp);
57 if ((wrapAroundsSincePrev == 0 && timestamp < _prevTimestamp) || wrapAroundsSincePrev < 0)
63 // Compute the compensated timestamp difference and convert it to ms and
65 _dTS = static_cast<int64_t>((timestamp + wrapAroundsSincePrev *
69 // the wall clock time difference and the timestamp difference between
73 _prevTimestamp = timestamp;
89 // Investigates if the timestamp clock has overflowed since the last timestamp an
    [all...]
inter_frame_delay.h 27 // Calculates the delay of a frame with the given timestamp.
31 // - timestamp : RTP timestamp of a received frame
36 bool CalculateDelay(uint32_t timestamp,
47 // Controls if the RTP timestamp counter has had a wrap around
51 // - timestmap : RTP timestamp of the current frame.
52 void CheckForWrapArounds(uint32_t timestamp);
54 int64_t _zeroWallClock; // Local timestamp of the first video packet received
56 // The previous timestamp passed to the delay estimate
58 // The previous wall clock timestamp used by the delay estimat
    [all...]
timestamp_map.cc 48 VCMTimestampMap::Add(uint32_t timestamp, void* data)
50 _map[_nextAddIx].timestamp = timestamp;
64 VCMTimestampMap::Pop(uint32_t timestamp)
68 if (_map[_nextPopIx].timestamp == timestamp)
70 // found start time for this timestamp
76 else if (_map[_nextPopIx].timestamp > timestamp)
78 // the timestamp we are looking for is not in the lis
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
Geoposition.h 39 static Geoposition* create(Coordinates* coordinates, DOMTimeStamp timestamp)
41 return new Geoposition(coordinates, timestamp);
49 DOMTimeStamp timestamp() const { return m_timestamp; } function in class:blink::FINAL
53 Geoposition(Coordinates* coordinates, DOMTimeStamp timestamp)
55 , m_timestamp(timestamp)
Geoposition.idl 31 readonly attribute DOMTimeStamp timestamp;
GeolocationPosition.h 35 static GeolocationPosition* create(double timestamp, double latitude, double longitude, double accuracy)
37 return new GeolocationPosition(timestamp, latitude, longitude, accuracy);
39 static GeolocationPosition* create(double timestamp, double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed)
41 return new GeolocationPosition(timestamp, latitude, longitude, accuracy, providesAltitude, altitude, providesAltitudeAccuracy, altitudeAccuracy, providesHeading, heading, providesSpeed, speed);
45 double timestamp() const { return m_timestamp; } function in class:blink::GeolocationPosition
61 GeolocationPosition(double timestamp, double latitude, double longitude, double accuracy)
62 : m_timestamp(timestamp)
77 GeolocationPosition(double timestamp, double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed)
78 : m_timestamp(timestamp)
  /external/chromium_org/content/browser/renderer_host/input/
synthetic_smooth_scroll_gesture.h 34 const base::TimeTicks& timestamp,
47 const base::TimeTicks& timestamp, SyntheticGestureTarget* target);
49 const base::TimeTicks& timestamp, SyntheticGestureTarget* target);
52 const base::TimeTicks& timestamp);
55 const base::TimeTicks& timestamp) const;
58 const base::TimeTicks& timestamp);
61 const base::TimeTicks& timestamp);
63 const base::TimeTicks& timestamp);
66 gfx::Vector2dF GetPositionDeltaAtTime(const base::TimeTicks& timestamp)
69 base::TimeTicks ClampTimestamp(const base::TimeTicks& timestamp) const
    [all...]
synthetic_pinch_gesture.h 24 const base::TimeTicks& timestamp,
35 void ForwardTouchInputEvents(const base::TimeTicks& timestamp,
38 void UpdateTouchPoints(const base::TimeTicks& timestamp);
40 const base::TimeTicks& timestamp);
42 const base::TimeTicks& timestamp);
44 const base::TimeTicks& timestamp);
46 const base::TimeTicks& timestamp);
49 float GetDeltaForPointer0AtTime(const base::TimeTicks& timestamp) const;
50 base::TimeTicks ClampTimestamp(const base::TimeTicks& timestamp) const;
51 bool HasReachedTarget(const base::TimeTicks& timestamp) const
    [all...]
synthetic_pinch_gesture.cc 28 const base::TimeTicks& timestamp, SyntheticGestureTarget* target) {
35 start_time_ = timestamp;
40 ForwardTouchInputEvents(timestamp, target);
49 const base::TimeTicks& timestamp, SyntheticGestureTarget* target) {
58 PressTouchPoints(target, timestamp);
62 base::TimeTicks event_timestamp = ClampTimestamp(timestamp);
78 const base::TimeTicks& timestamp) {
81 ForwardTouchEvent(target, timestamp);
86 const base::TimeTicks& timestamp) {
93 ForwardTouchEvent(target, timestamp);
    [all...]
synthetic_gesture.h 47 const base::TimeTicks& timestamp, SyntheticGestureTarget* target) = 0;
50 static double ConvertTimestampToSeconds(const base::TimeTicks& timestamp);
synthetic_tap_gesture.cc 24 const base::TimeTicks& timestamp, SyntheticGestureTarget* target) {
36 ForwardTouchOrMouseInputEvents(timestamp, target);
45 const base::TimeTicks& timestamp, SyntheticGestureTarget* target) {
48 Press(target, timestamp);
51 Release(target, timestamp);
54 start_time_ = timestamp;
59 if (timestamp - start_time_ >= GetDuration()) {
72 const base::TimeTicks& timestamp) {
75 touch_event_.timeStampSeconds = ConvertTimestampToSeconds(timestamp);
84 mouse_event.timeStampSeconds = ConvertTimestampToSeconds(timestamp);
    [all...]
synthetic_smooth_scroll_gesture.cc 41 const base::TimeTicks& timestamp, SyntheticGestureTarget* target) {
49 current_scroll_segment_stop_time_ = timestamp;
54 ForwardTouchInputEvents(timestamp, target);
56 ForwardMouseInputEvents(timestamp, target);
65 const base::TimeTicks& timestamp, SyntheticGestureTarget* target) {
66 base::TimeTicks event_timestamp = timestamp;
80 event_timestamp = ClampTimestamp(timestamp);
98 if (timestamp - current_scroll_segment_stop_time_ >=
116 const base::TimeTicks& timestamp, SyntheticGestureTarget* target) {
132 base::TimeTicks event_timestamp = ClampTimestamp(timestamp);
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/
TestSensorEvent.java 31 public final long timestamp; field in class:TestSensorEvent
47 * Construct a TestSensorEvent from {@link SensorEvent} data and a received timestamp.
50 * @param receivedTimestamp the timestamp when
56 timestamp = event.timestamp;
65 public TestSensorEvent(Sensor sensor, long timestamp, int accuracy, float[] values) {
66 this(sensor, timestamp, timestamp, accuracy, values);
72 public TestSensorEvent(Sensor sensor, long timestamp, long receivedTimestamp, int accuracy,
75 this.timestamp = timestamp
    [all...]
  /external/chromium_org/ppapi/c/private/
pp_video_frame_private.h 33 * A timestamp placing the frame in a video stream.
35 PP_TimeTicks timestamp; member in struct:PP_VideoFrame_Private
  /external/chromium_org/media/base/
text_cue.cc 9 TextCue::TextCue(const base::TimeDelta& timestamp,
14 : timestamp_(timestamp),
decoder_buffer_queue.cc 30 // TODO(scherkus): FFmpeg returns some packets with no timestamp after
32 if (buffer->timestamp() == kNoTimestamp()) {
33 DVLOG(1) << "Buffer has no timestamp";
38 earliest_valid_timestamp_ = buffer->timestamp();
41 if (buffer->timestamp() < earliest_valid_timestamp_) {
44 << buffer->timestamp().InMicroseconds()
50 earliest_valid_timestamp_ = buffer->timestamp();
86 base::TimeDelta start = in_order_queue_.front()->timestamp();
87 base::TimeDelta end = in_order_queue_.back()->timestamp();
  /external/chromium_org/tools/telemetry/telemetry/timeline/
sample.py 17 def __init__(self, parent_thread, category, name, timestamp, args=None):
19 category, name, timestamp, 0, args=args)
  /external/chromium_org/media/filters/
source_buffer_range.h 17 // SourceBufferRange are ordered sequentially in decode timestamp order with no
37 // Buffers with the same timestamp are only allowed under certain conditions.
45 // same timestamp situation that is allowed. False is returned otherwise.
51 // |media_segment_start_time| refers to the starting timestamp for the media
75 // Updates |next_buffer_index_| to point to the Buffer containing |timestamp|.
76 // Assumes |timestamp| is valid and in this range.
77 void Seek(DecodeTimestamp timestamp);
80 // |timestamp|.
81 void SeekAheadTo(DecodeTimestamp timestamp);
84 // |timestamp|
    [all...]
  /external/chromium_org/ppapi/cpp/private/
video_frame_private.cc 15 PP_TimeTicks timestamp)
17 video_frame_.timestamp = timestamp;
32 set_timestamp(other.timestamp());
44 set_timestamp(other.timestamp());
  /external/chromium_org/media/formats/mp2t/
timestamp_unroller.cc 20 int64 TimestampUnroller::GetUnrolledTimestamp(int64 timestamp) {
24 // |timestamp| has a precision of |nbits|
26 DCHECK_EQ((timestamp >> nbits), 0);
29 previous_unrolled_timestamp_ = timestamp;
31 return timestamp;
34 // |timestamp| is known modulo 2^33, so estimate the highest bits
35 // to minimize the discontinuity with the previous unrolled timestamp.
37 // of |timestamp|. If the bits of the previous unrolled timestamp are
38 // {b63, b62, ..., b0} and bits of |timestamp| are {0, ..., 0, a32, ..., a0
    [all...]

Completed in 1920 milliseconds

1 2 3 4 5 6 7 8 91011>>