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

Side by Side Diff: webrtc/modules/audio_coding/audio_network_adaptor/config.proto

Issue 2568043002: Making audio network adaptor config proto a JAVA package. (Closed)
Patch Set: Created 4 years 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 syntax = "proto2"; 1 syntax = "proto2";
2 option optimize_for = LITE_RUNTIME; 2 option optimize_for = LITE_RUNTIME;
3 option java_package = "org.webrtc.AudioNetworkAdaptor";
4 option java_outer_classname = "Config";
3 package webrtc.audio_network_adaptor.config; 5 package webrtc.audio_network_adaptor.config;
4 6
5 message FecController { 7 message FecController {
6 message Threshold { 8 message Threshold {
7 // Threshold defines a curve in the bandwidth/packet-loss domain. The 9 // Threshold defines a curve in the bandwidth/packet-loss domain. The
8 // curve is characterized by the two conjunction points: A and B. 10 // curve is characterized by the two conjunction points: A and B.
9 // 11 //
10 // packet ^ | 12 // packet ^ |
11 // loss | A| 13 // loss | A|
12 // | \ A: (low_bandwidth_bps, low_bandwidth_packet_loss) 14 // | \ A: (low_bandwidth_bps, low_bandwidth_packet_loss)
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 message ControllerManager { 101 message ControllerManager {
100 repeated Controller controllers = 1; 102 repeated Controller controllers = 1;
101 103
102 // Least time since last reordering for a new reordering to be made. 104 // Least time since last reordering for a new reordering to be made.
103 optional int32 min_reordering_time_ms = 2; 105 optional int32 min_reordering_time_ms = 2;
104 106
105 // Least squared distance from last scoring point for a new reordering to be 107 // Least squared distance from last scoring point for a new reordering to be
106 // made. 108 // made.
107 optional float min_reordering_squared_distance = 3; 109 optional float min_reordering_squared_distance = 3;
108 } 110 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698