Moving src/webrtc into src/.
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}
This commit is contained in:
committed by
Commit Bot
parent
6674846b4a
commit
bb547203bf
32
modules/audio_coding/neteq/neteq_unittest.proto
Normal file
32
modules/audio_coding/neteq/neteq_unittest.proto
Normal file
@ -0,0 +1,32 @@
|
||||
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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user