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

  /external/chromium_org/media/filters/
fake_demuxer_stream.h 66 void set_splice_timestamp(base::TimeDelta splice_timestamp) {
67 splice_timestamp_ = splice_timestamp;
video_frame_stream_unittest.cc 543 const base::TimeDelta splice_timestamp = base::TimeDelta(); local
544 demuxer_stream_->set_splice_timestamp(splice_timestamp);
545 EXPECT_CALL(*this, OnNewSpliceBuffer(splice_timestamp)).Times(AnyNumber());
source_buffer_stream.cc 1642 const base::TimeDelta splice_timestamp = new_buffers.front()->timestamp(); local
    [all...]
audio_renderer_impl.cc 755 void AudioRendererImpl::OnNewSpliceBuffer(base::TimeDelta splice_timestamp) {
757 splicer_->SetSpliceTimestamp(splice_timestamp);
decoder_stream.cc 478 const bool has_splice_ts = buffer->splice_timestamp() != kNoTimestamp();
480 splice_observer_cb_.Run(buffer->splice_timestamp());
source_buffer_stream_unittest.cc 321 // all buffers must have the same splice_timestamp().
323 ASSERT_EQ(buffer->splice_timestamp(), kNoTimestamp());
326 active_splice_timestamp == buffer->splice_timestamp());
329 active_splice_timestamp = buffer->splice_timestamp();
    [all...]
  /external/chromium_org/media/base/
decoder_buffer.h 141 base::TimeDelta splice_timestamp() const { function in class:media::DecoderBuffer
147 // splice around |splice_timestamp|.
148 void set_splice_timestamp(base::TimeDelta splice_timestamp) {
150 splice_timestamp_ = splice_timestamp;
audio_splicer.h 55 // |splice_timestamp| will be considered as "before the splice." Clients must
63 void SetSpliceTimestamp(base::TimeDelta splice_timestamp);
stream_parser_buffer.cc 30 copied_buffer->set_splice_timestamp(buffer.splice_timestamp());
157 splice_buffers_.back()->set_splice_timestamp(splice_timestamp());
169 DCHECK(preroll_buffer->splice_timestamp() == kNoTimestamp());
audio_splicer.cc 345 void AudioSplicer::SetSpliceTimestamp(base::TimeDelta splice_timestamp) {
346 if (splice_timestamp == kNoTimestamp()) {
353 if (splice_timestamp_ == splice_timestamp)
361 splice_timestamp_ = splice_timestamp;

Completed in 229 milliseconds