aboutsummaryrefslogtreecommitdiff
path: root/cast/streaming/rtcp_session.cc
diff options
context:
space:
mode:
Diffstat (limited to 'cast/streaming/rtcp_session.cc')
-rw-r--r--cast/streaming/rtcp_session.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/cast/streaming/rtcp_session.cc b/cast/streaming/rtcp_session.cc
index 2b4af644..c9bf34ff 100644
--- a/cast/streaming/rtcp_session.cc
+++ b/cast/streaming/rtcp_session.cc
@@ -6,12 +6,12 @@
#include "util/logging.h"
+namespace openscreen {
namespace cast {
-namespace streaming {
RtcpSession::RtcpSession(Ssrc sender_ssrc,
Ssrc receiver_ssrc,
- openscreen::Clock::time_point start_time)
+ Clock::time_point start_time)
: sender_ssrc_(sender_ssrc),
receiver_ssrc_(receiver_ssrc),
ntp_converter_(start_time) {
@@ -22,5 +22,5 @@ RtcpSession::RtcpSession(Ssrc sender_ssrc,
RtcpSession::~RtcpSession() = default;
-} // namespace streaming
} // namespace cast
+} // namespace openscreen