OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsNewerTimestamp
(Results
1 - 10
of
10
) sorted by null
/external/webrtc/webrtc/modules/
module_common_types_unittest.cc
46
TEST(
IsNewerTimestamp
, Equal) {
47
EXPECT_FALSE(
IsNewerTimestamp
(0x00000001, 0x000000001));
50
TEST(
IsNewerTimestamp
, NoWrap) {
51
EXPECT_TRUE(
IsNewerTimestamp
(0xFFFFFFFF, 0xFFFFFFFE));
52
EXPECT_TRUE(
IsNewerTimestamp
(0x00000001, 0x00000000));
53
EXPECT_TRUE(
IsNewerTimestamp
(0x00010000, 0x0000FFFF));
56
TEST(
IsNewerTimestamp
, ForwardWrap) {
57
EXPECT_TRUE(
IsNewerTimestamp
(0x00000000, 0xFFFFFFFF));
58
EXPECT_TRUE(
IsNewerTimestamp
(0x00000000, 0xFFFF0000));
59
EXPECT_TRUE(
IsNewerTimestamp
(0x0000FFFF, 0xFFFFFFFF))
[
all
...]
/external/webrtc/webrtc/modules/audio_coding/neteq/
packet_buffer.h
143
return
IsNewerTimestamp
(timestamp_limit, timestamp) &&
145
IsNewerTimestamp
(timestamp, timestamp_limit - horizon_samples));
delay_manager.cc
90
if (!
IsNewerTimestamp
(timestamp, last_timestamp_) ||
/external/webrtc/webrtc/modules/video_coding/
timestamp_map.cc
46
} else if (
IsNewerTimestamp
(ring_buffer_[next_pop_idx_].timestamp,
decoding_state.cc
57
return !
IsNewerTimestamp
(frame->TimeStamp(), time_stamp_);
64
return !
IsNewerTimestamp
(packet->timestamp, time_stamp_);
jitter_buffer.cc
140
if (it->first == timestamp ||
IsNewerTimestamp
(timestamp, it->first)) {
161
if (ss_map_.empty() || !
IsNewerTimestamp
(timestamp, ss_map_.begin()->first))
862
if (
IsNewerTimestamp
(decodable_frame->TimeStamp(), frame.TimeStamp())) {
895
if (
IsNewerTimestamp
(original_decoded_state.time_stamp(),
[
all
...]
jitter_buffer.h
55
return
IsNewerTimestamp
(timestamp2, timestamp1);
98
//
IsNewerTimestamp
is not true).
/external/webrtc/webrtc/modules/include/
module_common_types.h
744
inline bool
IsNewerTimestamp
(uint32_t timestamp, uint32_t prev_timestamp) {
764
return
IsNewerTimestamp
(timestamp1, timestamp2) ? timestamp1 : timestamp2;
/external/webrtc/webrtc/video/
video_send_stream_tests.cc
[
all
...]
/external/webrtc/webrtc/voice_engine/
channel.cc
[
all
...]
Completed in 54 milliseconds