Searched refs:timestamp (Results 1 - 25 of 726) sorted by relevance

1234567891011>>

/external/webrtc/webrtc/modules/remote_bitrate_estimator/
H A Dinter_arrival.cc32 bool InterArrival::ComputeDeltas(uint32_t timestamp, argument
45 current_timestamp_group_.timestamp = timestamp;
46 current_timestamp_group_.first_timestamp = timestamp;
47 } else if (!PacketInOrder(timestamp)) {
49 } else if (NewTimestampGroup(arrival_time_ms, timestamp)) {
52 *timestamp_delta = current_timestamp_group_.timestamp -
53 prev_timestamp_group_.timestamp;
58 // arrival timestamp.
70 // The new timestamp i
85 PacketInOrder(uint32_t timestamp) argument
[all...]
H A Dinter_arrival.h22 // between two timestamp groups. A timestamp is a 32 bit unsigned number with
26 // A timestamp group is defined as all packets with a timestamp which are at
27 // most timestamp_group_length_ticks older than the first timestamp in that
35 // |timestamp| is the timestamp.
38 // |timestamp_delta| (output) is the computed timestamp delta.
41 bool ComputeDeltas(uint32_t timestamp,
53 timestamp(
62 uint32_t timestamp; member in struct:webrtc::InterArrival::TimestampGroup
[all...]
H A Dinter_arrival_unittest.cc46 // Test that neither inter_arrival instance complete the timestamp group from
57 // Test that both inter_arrival instances complete the timestamp group from
59 // timestamp delta, which is rounded from us to different ranges and must
115 // than the initial timestamp of the group.
163 uint32_t timestamp, int64_t arrival_time_ms,
168 bool computed = inter_arrival->ComputeDeltas(timestamp,
181 uint32_t timestamp, int64_t arrival_time_ms,
190 bool computed = inter_arrival->ComputeDeltas(timestamp,
268 int64_t timestamp = kTriggerNewGroupUs; local
272 timestamp
162 InternalExpectFalse(InterArrival* inter_arrival, uint32_t timestamp, int64_t arrival_time_ms, size_t packet_size) argument
180 InternalExpectTrue(InterArrival* inter_arrival, uint32_t timestamp, int64_t arrival_time_ms, size_t packet_size, uint32_t expected_timestamp_delta, int64_t expected_arrival_time_delta_ms, int expected_packet_size_delta, uint32_t timestamp_near) argument
289 int64_t timestamp = 0; local
323 int64_t timestamp = 0; local
364 int64_t timestamp = kTriggerNewGroupUs; local
390 int64_t timestamp = kTriggerNewGroupUs; local
[all...]
/external/webrtc/webrtc/modules/video_coding/
H A Dinter_frame_delay.cc28 // Calculates the delay of a frame with the given timestamp.
30 bool VCMInterFrameDelay::CalculateDelay(uint32_t timestamp, argument
36 _prevTimestamp = timestamp;
42 CheckForWrapArounds(timestamp);
51 if ((wrapAroundsSincePrev == 0 && timestamp < _prevTimestamp) ||
57 // Compute the compensated timestamp difference and convert it to ms and
60 (timestamp + wrapAroundsSincePrev * (static_cast<int64_t>(1) << 32) -
66 // the wall clock time difference and the timestamp difference between
70 _prevTimestamp = timestamp;
84 // Investigates if the timestamp cloc
87 CheckForWrapArounds(uint32_t timestamp) argument
[all...]
H A Dtimestamp_map.cc27 void VCMTimestampMap::Add(uint32_t timestamp, VCMFrameInformation* data) { argument
28 ring_buffer_[next_add_idx_].timestamp = timestamp;
38 VCMFrameInformation* VCMTimestampMap::Pop(uint32_t timestamp) { argument
40 if (ring_buffer_[next_pop_idx_].timestamp == timestamp) {
41 // Found start time for this timestamp.
46 } else if (IsNewerTimestamp(ring_buffer_[next_pop_idx_].timestamp,
47 timestamp)) {
48 // The timestamp w
[all...]
H A Dtimestamp_map.h29 void Add(uint32_t timestamp, VCMFrameInformation* data);
30 VCMFrameInformation* Pop(uint32_t timestamp);
34 uint32_t timestamp; member in struct:webrtc::VCMTimestampMap::TimestampDataTuple
H A Dinter_frame_delay.h25 // Calculates the delay of a frame with the given timestamp.
29 // - timestamp : RTP timestamp of a received frame
36 bool CalculateDelay(uint32_t timestamp,
48 // Controls if the RTP timestamp counter has had a wrap around
52 // - timestmap : RTP timestamp of the current frame.
53 void CheckForWrapArounds(uint32_t timestamp);
55 int64_t _zeroWallClock; // Local timestamp of the first video packet received
57 // The previous timestamp passed to the delay estimate
59 // The previous wall clock timestamp use
[all...]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/
H A DJavaBeanWithSqlTimestamp.java19 private java.sql.Timestamp timestamp; field in class:JavaBeanWithSqlTimestamp
23 return timestamp;
26 public void setTimestamp(java.sql.Timestamp timestamp) { argument
27 this.timestamp = timestamp;
H A DJavaBeanWithNullValues.java29 private Timestamp timestamp; field in class:JavaBeanWithNullValues
92 return timestamp;
95 public void setTimestamp(Timestamp timestamp) { argument
96 this.timestamp = timestamp;
/external/webrtc/webrtc/system_wrappers/source/
H A Drtp_to_ntp_unittest.cc40 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
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/webrtc/webrtc/modules/video_coding/codecs/vp8/
H A Dscreenshare_layers_unittest.cc39 void EncodeFrame(uint32_t timestamp, argument
43 *flags = layers_->EncodeFlags(timestamp);
44 layers_->PopulateCodecSpecific(base_sync, vp8_info, timestamp);
46 layers_->FrameEncoded(frame_size_, timestamp, kDefaultQp);
66 uint32_t timestamp = 0; local
71 EncodeFrame(timestamp, false, &vp8_info, &flags);
72 timestamp += kTimestampDelta5Fps;
79 return timestamp;
85 int SkipUntilTl(int layer, int timestamp) { argument
88 layers_->EncodeFlags(timestamp);
111 uint32_t timestamp = 0; local
137 uint32_t timestamp = 0; local
187 uint32_t timestamp = 0; local
207 uint32_t timestamp = 0; local
235 uint32_t timestamp = 0; local
287 uint32_t timestamp = RunGracePeriod(); local
316 uint32_t timestamp = 0; local
333 uint32_t timestamp = RunGracePeriod(); local
399 uint32_t timestamp = RunGracePeriod(); local
[all...]
H A Ddefault_temporal_layers_unittest.cc84 uint32_t timestamp = 0; local
86 EXPECT_EQ(expected_flags[i], tl.EncodeFlags(timestamp));
90 timestamp += 3000;
125 unsigned int timestamp = 0; local
127 EXPECT_EQ(expected_flags[i], tl.EncodeFlags(timestamp));
131 timestamp += 3000;
165 uint32_t timestamp = 0; local
167 EXPECT_EQ(expected_flags[i], tl.EncodeFlags(timestamp));
171 timestamp += 3000;
193 uint32_t timestamp local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Dwpamsg.h20 timestamp = QDateTime::currentDateTime();
25 QDateTime getTimestamp() const { return timestamp; }
30 QDateTime timestamp; member in class:WpaMsg
/external/webrtc/webrtc/audio/
H A Daudio_sink.h34 uint32_t timestamp)
39 timestamp(timestamp) {}
45 uint32_t timestamp; // The RTP timestamp of the first sample. member in struct:webrtc::AudioSinkInterface::Data
30 Data(int16_t* data, size_t samples_per_channel, int sample_rate, size_t channels, uint32_t timestamp) argument
/external/chromium-trace/catapult/telemetry/telemetry/timeline/
H A Dsample.py17 def __init__(self, parent_thread, category, name, timestamp, args=None):
19 category, name, timestamp, 0, args=args)
/external/webrtc/webrtc/test/
H A Dfake_texture_frame.cc19 uint32_t timestamp,
24 timestamp, render_time_ms, rotation);
16 CreateFrame(FakeNativeHandle* native_handle, int width, int height, uint32_t timestamp, int64_t render_time_ms, VideoRotation rotation) argument
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/ec2/cloudwatch/
H A Dtest_connection.py43 timestamp = [
71 timestamp=timestamp,
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DTimeLineGraphItem.java27 long timestamp; field in class:TimeLineGraphItem
33 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp, boolean isSpecial,boolean isBaseline) { argument
34 this(title, description, value, color,display, timestamp,isSpecial);
38 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp, boolean isSpecial) { argument
39 this(title, description, value, color,display, timestamp);
43 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp) { argument
44 this(title, description, value, color,timestamp);
48 TimeLineGraphItem(String title, String description, double value, Color color,long timestamp) { argument
53 this.timestamp=timestamp;
[all...]
/external/libweave/src/states/
H A Dstate_change_queue_unittest.cc30 auto timestamp = base::Time::Now(); local
32 timestamp, *CreateDictionaryValue("{'prop': {'name': 23}}")));
35 EXPECT_EQ(timestamp, changes.front().timestamp);
53 EXPECT_EQ(timestamp1, changes[0].timestamp);
55 EXPECT_EQ(timestamp2, changes[1].timestamp);
61 base::Time timestamp = base::Time::Now(); local
65 timestamp, *CreateDictionaryValue("{'prop': {'name1': 1}}")));
68 timestamp, *CreateDictionaryValue("{'prop': {'name2': 2}}")));
71 timestamp, *CreateDictionaryValu
[all...]
/external/libdrm/freedreno/
H A Dfreedreno_pipe.c73 int fd_pipe_wait(struct fd_pipe *pipe, uint32_t timestamp) argument
75 return fd_pipe_wait_timeout(pipe, timestamp, ~0);
78 int fd_pipe_wait_timeout(struct fd_pipe *pipe, uint32_t timestamp, argument
81 return pipe->funcs->wait(pipe, timestamp, timeout);
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_screen.h48 unsigned timestamp; member in struct:softpipe_screen
/external/webrtc/webrtc/modules/audio_coding/neteq/
H A Dpacket.h39 // Comparison operators. Establish a packet ordering based on (1) timestamp,
42 // account. If both timestamp and sequence numbers are identical and one of
44 // two regular packets with the same sequence number and timestamp a primary
47 return (this->header.timestamp == rhs.header.timestamp &&
54 if (this->header.timestamp == rhs.header.timestamp) {
63 // given same RTP sequence number and timestamp, guarantees that a
65 // |packet_buffer_| compared to a sync packet of same timestamp and
76 return (static_cast<uint32_t>(rhs.header.timestamp
[all...]
H A Ddtmf_buffer.cc60 // being reported, in timestamp units, expressed as an unsigned
62 // or segment began at the instant identified by the RTP timestamp
84 event->timestamp = rtp_timestamp;
95 // These packets will all share the same start timestamp and event number,
125 // bit is set, we know that the event ends at |timestamp| + |duration|.
126 uint32_t event_end = it->timestamp + it->duration;
139 event_end = std::min(event_end, next->timestamp);
145 if (current_timestamp >= it->timestamp
153 event->timestamp = it->timestamp;
[all...]
/external/libdrm/freedreno/kgsl/
H A Dkgsl_pipe.c59 static int kgsl_pipe_wait(struct fd_pipe *pipe, uint32_t timestamp, argument
64 .timestamp = timestamp,
75 kgsl_pipe_process_pending(kgsl_pipe, timestamp);
80 uint32_t *timestamp)
91 *timestamp = req.timestamp;
148 uint32_t timestamp = kgsl_bo_get_timestamp(kgsl_bo); local
149 if (timestamp)
150 fd_pipe_wait(kgsl_pipe->p3d, timestamp);
79 kgsl_pipe_timestamp(struct kgsl_pipe *kgsl_pipe, uint32_t *timestamp) argument
155 kgsl_pipe_post_submit(struct kgsl_pipe *kgsl_pipe, uint32_t timestamp) argument
174 kgsl_pipe_process_pending(struct kgsl_pipe *kgsl_pipe, uint32_t timestamp) argument
[all...]
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
H A DStatsReport.java53 public final double timestamp; field in class:StatsReport
56 public StatsReport(String id, String type, double timestamp, Value[] values) { argument
59 this.timestamp = timestamp;
66 .append(", timestamp: ").append(timestamp).append(", values: ");

Completed in 641 milliseconds

1234567891011>>