OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:next_timestamp
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/mock/
mock_packet_buffer.h
38
int(uint32_t*
next_timestamp
));
40
int(uint32_t timestamp, uint32_t*
next_timestamp
));
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
packet_buffer.h
68
// output variable |
next_timestamp
|.
71
virtual int NextTimestamp(uint32_t*
next_timestamp
) const;
75
// variable |
next_timestamp
|.
79
uint32_t*
next_timestamp
) const;
packet_buffer.cc
119
int PacketBuffer::NextTimestamp(uint32_t*
next_timestamp
) const {
123
if (!
next_timestamp
) {
126
*
next_timestamp
= buffer_.front()->header.timestamp;
131
uint32_t*
next_timestamp
) const {
135
if (!
next_timestamp
) {
142
*
next_timestamp
= (*it)->header.timestamp;
/external/chromium_org/media/filters/
source_buffer_stream.h
236
// Returns true if |
next_timestamp
| and |next_is_keyframe| are valid for
238
bool IsNextTimestampValid(DecodeTimestamp
next_timestamp
,
source_buffer_stream.cc
490
DecodeTimestamp
next_timestamp
, bool next_is_keyframe) const {
491
return (last_appended_buffer_timestamp_ !=
next_timestamp
) ||
742
DecodeTimestamp
next_timestamp
= new_buffers.front()->GetDecodeTimestamp();
746
prev_timestamp !=
next_timestamp
) {
749
RemoveInternal(prev_timestamp,
next_timestamp
, true, deleted_buffers);
763
prev_timestamp ==
next_timestamp
&&
[
all
...]
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
jitter_buffer_unittest.cc
793
uint32_t
next_timestamp
;
local
794
EXPECT_TRUE(jitter_buffer_->NextCompleteTimestamp(0, &
next_timestamp
));
795
EXPECT_EQ(packet_->timestamp,
next_timestamp
);
796
VCMEncodedFrame* frame = jitter_buffer_->ExtractAndSetDecode(
next_timestamp
);
820
EXPECT_FALSE(jitter_buffer_->NextCompleteTimestamp(0, &
next_timestamp
));
821
EXPECT_TRUE(jitter_buffer_->NextMaybeIncompleteTimestamp(&
next_timestamp
));
822
EXPECT_EQ(packet_->timestamp - 33 * 90,
next_timestamp
);
[
all
...]
Completed in 57 milliseconds