chromium/third_party/openscreen/src/cast/streaming/impl/packet_receive_stats_tracker.h

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CAST_STREAMING_IMPL_PACKET_RECEIVE_STATS_TRACKER_H_
#define CAST_STREAMING_IMPL_PACKET_RECEIVE_STATS_TRACKER_H_

#include <stdint.h>

#include <limits>

#include "cast/streaming/impl/expanded_value_base.h"
#include "cast/streaming/impl/rtcp_common.h"
#include "cast/streaming/rtp_time.h"
#include "platform/api/time.h"

namespace openscreen::cast {

// Maintains statistics for RTP packet arrival timing, jitter, and loss rates;
// and then uses these to compute and set the related fields in a RTCP Receiver
// Report block.
class PacketReceiveStatsTracker {};

}  // namespace openscreen::cast

#endif  // CAST_STREAMING_IMPL_PACKET_RECEIVE_STATS_TRACKER_H_