mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 13:50:40 +01:00

In order to eliminate the WebRTC Subtree mirror in Chromium, WebRTC is moving the content of the src/webrtc directory up to the src/ directory. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true TBR=tommi@webrtc.org Bug: chromium:611808 Change-Id: Iac59c5b51b950f174119565bac87955a7994bc38 Reviewed-on: https://webrtc-review.googlesource.com/1560 Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Henrik Kjellander <kjellander@webrtc.org> Cr-Commit-Position: refs/heads/master@{#19845}
32 lines
1.1 KiB
Protocol Buffer
32 lines
1.1 KiB
Protocol Buffer
syntax = "proto2";
|
|
option optimize_for = LITE_RUNTIME;
|
|
package webrtc.neteq_unittest;
|
|
|
|
message NetEqNetworkStatistics {
|
|
// Next field number 18.
|
|
optional uint32 current_buffer_size_ms = 1;
|
|
optional uint32 preferred_buffer_size_ms = 2;
|
|
optional uint32 jitter_peaks_found = 3;
|
|
optional uint32 packet_loss_rate = 4;
|
|
optional uint32 packet_discard_rate = 5 [deprecated = true];
|
|
optional uint32 expand_rate = 6;
|
|
optional uint32 speech_expand_rate = 7;
|
|
optional uint32 preemptive_rate = 8;
|
|
optional uint32 accelerate_rate = 9;
|
|
optional uint32 secondary_decoded_rate = 10;
|
|
optional uint32 secondary_discarded_rate = 17;
|
|
optional int32 clockdrift_ppm = 11;
|
|
optional uint64 added_zero_samples = 12;
|
|
optional int32 mean_waiting_time_ms = 13;
|
|
optional int32 median_waiting_time_ms = 14;
|
|
optional int32 min_waiting_time_ms = 15;
|
|
optional int32 max_waiting_time_ms = 16;
|
|
}
|
|
|
|
message RtcpStatistics {
|
|
optional uint32 fraction_lost = 1;
|
|
optional uint32 cumulative_lost = 2;
|
|
optional uint32 extended_max_sequence_number = 3;
|
|
optional uint32 jitter = 4;
|
|
}
|
|
|