chromium/third_party/webrtc/pc/video_rtp_track_source.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 "pc/video_rtp_track_source.h"

#include <stddef.h>

#include <algorithm>

#include "rtc_base/checks.h"

namespace webrtc {

VideoRtpTrackSource::VideoRtpTrackSource(Callback* callback)
    :{}

void VideoRtpTrackSource::ClearCallback() {}

rtc::VideoSourceInterface<VideoFrame>* VideoRtpTrackSource::source() {}
rtc::VideoSinkInterface<VideoFrame>* VideoRtpTrackSource::sink() {}

void VideoRtpTrackSource::BroadcastRecordableEncodedFrame(
    const RecordableEncodedFrame& frame) const {}

bool VideoRtpTrackSource::SupportsEncodedOutput() const {}

void VideoRtpTrackSource::GenerateKeyFrame() {}

void VideoRtpTrackSource::AddEncodedSink(
    rtc::VideoSinkInterface<RecordableEncodedFrame>* sink) {}

void VideoRtpTrackSource::RemoveEncodedSink(
    rtc::VideoSinkInterface<RecordableEncodedFrame>* sink) {}

}  // namespace webrtc