/* * Copyright (c) 2014 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/report_block_stats.h" #include <algorithm> namespace webrtc { namespace { int FractionLost(uint32_t num_lost_sequence_numbers, uint32_t num_sequence_numbers) { … } } // namespace // Helper class for rtcp statistics. ReportBlockStats::ReportBlockStats() : … { … } ReportBlockStats::~ReportBlockStats() { … } void ReportBlockStats::Store(uint32_t ssrc, int packets_lost, uint32_t extended_highest_sequence_number) { … } int ReportBlockStats::FractionLostInPercent() const { … } } // namespace webrtc