HomeSort by relevance Sort by last modified time
    Searched refs:IsNewerTimestamp (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/webrtc/modules/
module_common_types_unittest.cc 41 TEST(IsNewerTimestamp, Equal) {
42 EXPECT_FALSE(IsNewerTimestamp(0x00000001, 0x000000001));
45 TEST(IsNewerTimestamp, NoWrap) {
46 EXPECT_TRUE(IsNewerTimestamp(0xFFFFFFFF, 0xFFFFFFFE));
47 EXPECT_TRUE(IsNewerTimestamp(0x00000001, 0x00000000));
48 EXPECT_TRUE(IsNewerTimestamp(0x00010000, 0x0000FFFF));
51 TEST(IsNewerTimestamp, ForwardWrap) {
52 EXPECT_TRUE(IsNewerTimestamp(0x00000000, 0xFFFFFFFF));
53 EXPECT_TRUE(IsNewerTimestamp(0x00000000, 0xFFFF0000));
54 EXPECT_TRUE(IsNewerTimestamp(0x0000FFFF, 0xFFFFFFFF))
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
decoding_state.cc 54 return !IsNewerTimestamp(frame->TimeStamp(), time_stamp_);
61 return !IsNewerTimestamp(packet->timestamp, time_stamp_);
jitter_buffer.h 58 return IsNewerTimestamp(timestamp2, timestamp1);
jitter_buffer.cc 790 if (IsNewerTimestamp(decodable_frame->TimeStamp(), frame.TimeStamp())) {
813 if (IsNewerTimestamp(new_frame.TimeStamp(), frame->TimeStamp())) {
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
decision_logic_normal.cc 73 } else if (IsNewerTimestamp(available_timestamp, target_timestamp)) {
delay_manager.cc 90 if (!IsNewerTimestamp(timestamp, last_timestamp_) ||
  /external/chromium_org/third_party/webrtc/modules/interface/
module_common_types.h 902 inline bool IsNewerTimestamp(uint32_t timestamp, uint32_t prev_timestamp) {
915 return IsNewerTimestamp(timestamp1, timestamp2) ? timestamp1 : timestamp2;
  /external/chromium_org/third_party/webrtc/voice_engine/
channel.cc     [all...]

Completed in 653 milliseconds