Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(602)

Unified Diff: media/cast/test/proto/network_simulation_model.proto

Issue 362123005: Cast: Update simulator tool with more inputs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: namespace Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/cast/test/proto/BUILD.gn ('k') | media/cast/test/simulator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/test/proto/network_simulation_model.proto
diff --git a/media/cast/test/proto/network_simulation_model.proto b/media/cast/test/proto/network_simulation_model.proto
new file mode 100644
index 0000000000000000000000000000000000000000..902712f7fafd0a7d520c47ce7041e716db490f8a
--- /dev/null
+++ b/media/cast/test/proto/network_simulation_model.proto
@@ -0,0 +1,27 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// Contains parameters for a network simulation model.
+
+syntax = "proto2";
+
+option optimize_for = LITE_RUNTIME;
+
+package media.cast.proto;
+
+message NetworkSimulationModel {
+ optional NetworkSimulationModelType type = 1;
+ optional IPPModel ipp = 2;
+}
+
+enum NetworkSimulationModelType {
+ INTERRUPTED_POISSON_PROCESS = 1;
+}
+
+message IPPModel {
+ optional double coef_burstiness = 1;
+ optional double coef_variance = 2;
+ repeated double average_rate = 3;
+}
+
« no previous file with comments | « media/cast/test/proto/BUILD.gn ('k') | media/cast/test/simulator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698