aboutsummaryrefslogtreecommitdiff
path: root/cast/streaming/rtp_packet_parser.cc
diff options
context:
space:
mode:
Diffstat (limited to 'cast/streaming/rtp_packet_parser.cc')
-rw-r--r--cast/streaming/rtp_packet_parser.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/cast/streaming/rtp_packet_parser.cc b/cast/streaming/rtp_packet_parser.cc
index 5fbf005a..b7a838e3 100644
--- a/cast/streaming/rtp_packet_parser.cc
+++ b/cast/streaming/rtp_packet_parser.cc
@@ -10,10 +10,8 @@
#include "cast/streaming/packet_util.h"
#include "util/logging.h"
-using openscreen::ReadBigEndian;
-
+namespace openscreen {
namespace cast {
-namespace streaming {
RtpPacketParser::RtpPacketParser(Ssrc sender_ssrc)
: sender_ssrc_(sender_ssrc), highest_rtp_frame_id_(FrameId::first()) {}
@@ -114,5 +112,5 @@ absl::optional<RtpPacketParser::ParseResult> RtpPacketParser::Parse(
RtpPacketParser::ParseResult::ParseResult() = default;
RtpPacketParser::ParseResult::~ParseResult() = default;
-} // namespace streaming
} // namespace cast
+} // namespace openscreen