/* * Copyright (c) 2018 The WebRTC project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree. */ #include "video/video_stream_decoder_impl.h" #include "rtc_base/logging.h" #include "rtc_base/ptr_util.h" namespace webrtc { VideoStreamDecoderImpl::VideoStreamDecoderImpl( VideoStreamDecoder::Callbacks* callbacks, VideoDecoderFactory* decoder_factory, std::map> decoder_settings) : callbacks_(callbacks), decoder_factory_(decoder_factory), decoder_settings_(std::move(decoder_settings)), bookkeeping_queue_("video_stream_decoder_bookkeeping_queue"), jitter_estimator_(Clock::GetRealTimeClock()), timing_(Clock::GetRealTimeClock()), frame_buffer_(Clock::GetRealTimeClock(), &jitter_estimator_, &timing_, nullptr) {} VideoStreamDecoderImpl::~VideoStreamDecoderImpl() { frame_buffer_.Stop(); } void VideoStreamDecoderImpl::OnFrame( std::unique_ptr frame) { if (!bookkeeping_queue_.IsCurrent()) { struct OnFrameTask : rtc::QueuedTask { OnFrameTask(std::unique_ptr frame, VideoStreamDecoderImpl* video_stream_decoder) : frame_(std::move(frame)), video_stream_decoder_(video_stream_decoder) {} bool Run() { video_stream_decoder_->OnFrame(std::move(frame_)); return true; } std::unique_ptr frame_; VideoStreamDecoderImpl* video_stream_decoder_; }; bookkeeping_queue_.PostTask( rtc::MakeUnique(std::move(frame), this)); return; } RTC_DCHECK_RUN_ON(&bookkeeping_queue_); uint64_t continuous_pid = frame_buffer_.InsertFrame(std::move(frame)); video_coding::VideoLayerFrameId continuous_id(continuous_pid, 0); if (last_continuous_id_ < continuous_id) { last_continuous_id_ = continuous_id; callbacks_->OnContinuousUntil(last_continuous_id_); } } } // namespace webrtc