Searched defs:splice_timestamp (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/media/filters/
H A Dfake_demuxer_stream.h66 void set_splice_timestamp(base::TimeDelta splice_timestamp) { argument
67 splice_timestamp_ = splice_timestamp;
H A Daudio_renderer_impl.cc688 void AudioRendererImpl::OnNewSpliceBuffer(base::TimeDelta splice_timestamp) { argument
690 splicer_->SetSpliceTimestamp(splice_timestamp);
H A Dsource_buffer_stream.cc759 DCHECK(new_buffers.front()->splice_timestamp() !=
931 // Every pre splice buffer must have the same splice_timestamp().
932 DCHECK(pending_buffer_->splice_timestamp() ==
933 splice_buffers[splice_buffers_index_]->splice_timestamp());
957 DCHECK(splice_buffers.back()->splice_timestamp() == kNoTimestamp());
1400 const base::TimeDelta splice_timestamp = new_buffers.front()->timestamp(); local
1402 DecodeTimestamp::FromPresentationTime(splice_timestamp);
1424 if (pre_splice_buffers.front()->timestamp() >= splice_timestamp)
1449 pre_splice_buffers.back()->duration() - splice_timestamp;
H A Dvideo_frame_stream_unittest.cc596 const base::TimeDelta splice_timestamp = base::TimeDelta(); local
597 demuxer_stream_->set_splice_timestamp(splice_timestamp);
598 EXPECT_CALL(*this, OnNewSpliceBuffer(splice_timestamp)).Times(AnyNumber());
/external/chromium_org/media/base/
H A Ddecoder_buffer.h145 base::TimeDelta splice_timestamp() const { function in class:media::DecoderBuffer
151 // splice around |splice_timestamp|.
152 void set_splice_timestamp(base::TimeDelta splice_timestamp) { argument
154 splice_timestamp_ = splice_timestamp;
H A Daudio_splicer.cc345 void AudioSplicer::SetSpliceTimestamp(base::TimeDelta splice_timestamp) { argument
346 if (splice_timestamp == kNoTimestamp()) {
353 if (splice_timestamp_ == splice_timestamp)
361 splice_timestamp_ = splice_timestamp;

Completed in 4128 milliseconds