Home
last modified time | relevance | path

Searched refs:next_timestamp (Results 1 – 4 of 4) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/neteq/
Dpacket_buffer.cc147 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()
Dpacket_buffer.h71 virtual int NextTimestamp(uint32_t* next_timestamp) const;
79 uint32_t* next_timestamp) const;
/external/webrtc/webrtc/modules/audio_coding/neteq/mock/
Dmock_packet_buffer.h38 int(uint32_t* next_timestamp));
40 int(uint32_t timestamp, uint32_t* next_timestamp));
/external/webrtc/webrtc/modules/video_coding/
Djitter_buffer_unittest.cc1331 uint32_t next_timestamp; in TEST_F() local
1332 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()