aboutsummaryrefslogtreecommitdiff
path: root/cast/streaming/constants.h
diff options
context:
space:
mode:
authormark a. foltz <mfoltz@chromium.org>2019-12-23 20:30:41 +0000
committerCommit Bot <commit-bot@chromium.org>2019-12-23 20:42:15 +0000
commitf6c90903dd65e65e997b1fa39638ff8bb72af15a (patch)
treebda7b93ecc9a29dd8de0bdb39d22b239a1394459 /cast/streaming/constants.h
parent80ed3d779e3e38de94656bf59ff4b62534c797fe (diff)
downloadopenscreen-f6c90903dd65e65e997b1fa39638ff8bb72af15a.tar.gz
Revert "Replace namespace cast::something with openscreen::cast."
This reverts commit 80ed3d779e3e38de94656bf59ff4b62534c797fe. Reason for revert: Broke chromium bots Original change's description: > Replace namespace cast::something with openscreen::cast. > > ...and fixed a few C++ style issues around use of rvals in files > touched. > > Bug: openscreen:90 > Change-Id: Ib14fb1c47dfafec1fefe0cad31bce764aae0272e > Reviewed-on: https://chromium-review.googlesource.com/c/openscreen/+/1959204 > Commit-Queue: Yuri Wiitala <miu@chromium.org> > Reviewed-by: Jordan Bayles <jophba@chromium.org> TBR=miu@chromium.org,jophba@chromium.org # Not skipping CQ checks because original CL landed > 1 day ago. Bug: openscreen:90 Change-Id: Ia67dd400b6ffcf98ec64d460855ebd8c3b8dc3de Reviewed-on: https://chromium-review.googlesource.com/c/openscreen/+/1980852 Reviewed-by: mark a. foltz <mfoltz@chromium.org> Commit-Queue: mark a. foltz <mfoltz@chromium.org>
Diffstat (limited to 'cast/streaming/constants.h')
-rw-r--r--cast/streaming/constants.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cast/streaming/constants.h b/cast/streaming/constants.h
index 4d8bd7ab..d67ba3e9 100644
--- a/cast/streaming/constants.h
+++ b/cast/streaming/constants.h
@@ -14,8 +14,8 @@
#include <chrono>
#include <ratio>
-namespace openscreen {
namespace cast {
+namespace streaming {
// Default target playout delay. The playout delay is the window of time between
// capture from the source until presentation at the receiver.
@@ -38,7 +38,7 @@ constexpr int kMaxUnackedFrames = 120;
// per second for video.
using kVideoTimebase = std::ratio<1, 90000>;
+} // namespace streaming
} // namespace cast
-} // namespace openscreen
#endif // CAST_STREAMING_CONSTANTS_H_