aboutsummaryrefslogtreecommitdiff
path: root/cast/streaming/packet_receive_stats_tracker.cc
diff options
context:
space:
mode:
Diffstat (limited to 'cast/streaming/packet_receive_stats_tracker.cc')
-rw-r--r--cast/streaming/packet_receive_stats_tracker.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/cast/streaming/packet_receive_stats_tracker.cc b/cast/streaming/packet_receive_stats_tracker.cc
index c00af536..23a5e715 100644
--- a/cast/streaming/packet_receive_stats_tracker.cc
+++ b/cast/streaming/packet_receive_stats_tracker.cc
@@ -6,10 +6,8 @@
#include <algorithm>
-using openscreen::Clock;
-
+namespace openscreen {
namespace cast {
-namespace streaming {
PacketReceiveStatsTracker::PacketReceiveStatsTracker(int rtp_timebase)
: rtp_timebase_(rtp_timebase) {}
@@ -77,5 +75,5 @@ void PacketReceiveStatsTracker::PopulateNextReport(RtcpReportBlock* report) {
report->jitter = RtpTimeDelta::FromDuration(jitter_, rtp_timebase_);
}
-} // namespace streaming
} // namespace cast
+} // namespace openscreen