aboutsummaryrefslogtreecommitdiff
path: root/cast/streaming/ssrc.h
diff options
context:
space:
mode:
Diffstat (limited to 'cast/streaming/ssrc.h')
-rw-r--r--cast/streaming/ssrc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cast/streaming/ssrc.h b/cast/streaming/ssrc.h
index 0cd23566..b84d7ac0 100644
--- a/cast/streaming/ssrc.h
+++ b/cast/streaming/ssrc.h
@@ -7,8 +7,8 @@
#include <stdint.h>
+namespace openscreen {
namespace cast {
-namespace streaming {
// A Synchronization Source is a 32-bit opaque identifier used in RTP packets
// for identifying the source (or recipient) of a logical sequence of encoded
@@ -33,7 +33,7 @@ Ssrc GenerateSsrc(bool higher_priority);
// ret > 0: Stream |ssrc_b| has higher priority.
int ComparePriority(Ssrc ssrc_a, Ssrc ssrc_b);
-} // namespace streaming
} // namespace cast
+} // namespace openscreen
#endif // CAST_STREAMING_SSRC_H_