chromium/third_party/webrtc/video/video_receive_stream_timeout_tracker.cc

/*
 *  Copyright (c) 2022 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_receive_stream_timeout_tracker.h"

#include <algorithm>
#include <utility>

#include "rtc_base/logging.h"

namespace webrtc {

VideoReceiveStreamTimeoutTracker::VideoReceiveStreamTimeoutTracker(
    Clock* clock,
    TaskQueueBase* const bookkeeping_queue,
    const Timeouts& timeouts,
    TimeoutCallback callback)
    :{}

VideoReceiveStreamTimeoutTracker::~VideoReceiveStreamTimeoutTracker() {}

bool VideoReceiveStreamTimeoutTracker::Running() const {}

TimeDelta VideoReceiveStreamTimeoutTracker::TimeUntilTimeout() const {}

void VideoReceiveStreamTimeoutTracker::Start(bool waiting_for_keyframe) {}

void VideoReceiveStreamTimeoutTracker::Stop() {}

void VideoReceiveStreamTimeoutTracker::SetWaitingForKeyframe() {}

void VideoReceiveStreamTimeoutTracker::OnEncodedFrameReleased() {}

TimeDelta VideoReceiveStreamTimeoutTracker::HandleTimeoutTask() {}

void VideoReceiveStreamTimeoutTracker::SetTimeouts(Timeouts timeouts) {}

}  // namespace webrtc