Searched refs:next_timestamp (Results 1 – 4 of 4) sorted by relevance
147 int PacketBuffer::NextTimestamp(uint32_t* next_timestamp) const { in NextTimestamp()151 if (!next_timestamp) { in NextTimestamp()154 *next_timestamp = buffer_.front()->header.timestamp; in NextTimestamp()159 uint32_t* next_timestamp) const { in NextHigherTimestamp()163 if (!next_timestamp) { in NextHigherTimestamp()170 *next_timestamp = (*it)->header.timestamp; in NextHigherTimestamp()
71 virtual int NextTimestamp(uint32_t* next_timestamp) const;79 uint32_t* next_timestamp) const;
38 int(uint32_t* next_timestamp));40 int(uint32_t timestamp, uint32_t* next_timestamp));
1331 uint32_t next_timestamp; in TEST_F() local1332 EXPECT_TRUE(jitter_buffer_->NextCompleteTimestamp(0, &next_timestamp)); in TEST_F()1333 EXPECT_EQ(packet_->timestamp, next_timestamp); in TEST_F()1334 VCMEncodedFrame* frame = jitter_buffer_->ExtractAndSetDecode(next_timestamp); in TEST_F()1358 EXPECT_FALSE(jitter_buffer_->NextCompleteTimestamp(0, &next_timestamp)); in TEST_F()1359 EXPECT_TRUE(jitter_buffer_->NextMaybeIncompleteTimestamp(&next_timestamp)); in TEST_F()1360 EXPECT_EQ(packet_->timestamp - 33 * 90, next_timestamp); in TEST_F()