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; |
+} |
+ |