chromium/third_party/webrtc/test/frame_forwarder.cc

/*
 *  Copyright (c) 2019 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 "test/frame_forwarder.h"

#include "rtc_base/checks.h"

namespace webrtc {
namespace test {

FrameForwarder::FrameForwarder() :{}
FrameForwarder::~FrameForwarder() {}

void FrameForwarder::IncomingCapturedFrame(const VideoFrame& video_frame) {}

void FrameForwarder::AddOrUpdateSink(rtc::VideoSinkInterface<VideoFrame>* sink,
                                     const rtc::VideoSinkWants& wants) {}

void FrameForwarder::AddOrUpdateSinkLocked(
    rtc::VideoSinkInterface<VideoFrame>* sink,
    const rtc::VideoSinkWants& wants) {}

void FrameForwarder::RemoveSink(rtc::VideoSinkInterface<VideoFrame>* sink) {}

rtc::VideoSinkWants FrameForwarder::sink_wants() const {}

rtc::VideoSinkWants FrameForwarder::sink_wants_locked() const {}

bool FrameForwarder::has_sinks() const {}

}  // namespace test
}  // namespace webrtc