chromium/third_party/webrtc/modules/rtp_rtcp/source/source_tracker.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 "modules/rtp_rtcp/source/source_tracker.h"

#include <algorithm>
#include <utility>

#include "rtc_base/trace_event.h"

namespace webrtc {

SourceTracker::SourceTracker(Clock* clock)
    :{}

void SourceTracker::OnFrameDelivered(RtpPacketInfos packet_infos) {}

void SourceTracker::OnFrameDeliveredInternal(
    Timestamp now,
    const RtpPacketInfos& packet_infos) {}

std::vector<RtpSource> SourceTracker::GetSources() const {}

SourceTracker::SourceEntry& SourceTracker::UpdateEntry(const SourceKey& key) {}

void SourceTracker::PruneEntries(Timestamp now) const {}

}  // namespace webrtc