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

Unified Diff: webrtc/logging/rtc_event_log/rtc_event_log.proto

Issue 2380683005: Moved RtcEventLog files from call/ to logging/ (new top level dir) (Closed)
Patch Set: Rebase to master Created 4 years, 2 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
Index: webrtc/logging/rtc_event_log/rtc_event_log.proto
diff --git a/webrtc/call/rtc_event_log.proto b/webrtc/logging/rtc_event_log/rtc_event_log.proto
similarity index 99%
rename from webrtc/call/rtc_event_log.proto
rename to webrtc/logging/rtc_event_log/rtc_event_log.proto
index b14306e3628d3982079fcfb906af93a5d34e7507..a6d169579659e496379394de86cb9b4fac220b13 100644
--- a/webrtc/call/rtc_event_log.proto
+++ b/webrtc/logging/rtc_event_log/rtc_event_log.proto
@@ -2,7 +2,6 @@ syntax = "proto2";
option optimize_for = LITE_RUNTIME;
package webrtc.rtclog;
-
enum MediaType {
ANY = 0;
AUDIO = 1;
@@ -10,7 +9,6 @@ enum MediaType {
DATA = 3;
}
-
// This is the main message to dump to a file, it can contain multiple event
// messages, but it is possible to append multiple EventStreams (each with a
// single event) to a file.
@@ -19,7 +17,6 @@ message EventStream {
repeated Event stream = 1;
}
-
message Event {
// required - Elapsed wallclock time in us since the start of the log.
optional int64 timestamp_us = 1;
@@ -70,7 +67,6 @@ message Event {
optional AudioSendConfig audio_sender_config = 11;
}
-
message RtpPacket {
// required - True if the packet is incoming w.r.t. the user logging the data
optional bool incoming = 1;
@@ -87,7 +83,6 @@ message RtpPacket {
// Do not add code to log user payload data without a privacy review!
}
-
message RtcpPacket {
// required - True if the packet is incoming w.r.t. the user logging the data
optional bool incoming = 1;
@@ -150,7 +145,6 @@ message VideoReceiveConfig {
repeated DecoderConfig decoders = 7;
}
-
// Maps decoder names to payload types.
message DecoderConfig {
// required
@@ -160,7 +154,6 @@ message DecoderConfig {
optional int32 payload_type = 2;
}
-
// Maps RTP header extension names to numerical IDs.
message RtpHeaderExtension {
// required
@@ -170,7 +163,6 @@ message RtpHeaderExtension {
optional int32 id = 2;
}
-
// RTX settings for incoming video payloads that may be received.
// RTX is disabled if there's no config present.
message RtxConfig {
@@ -181,7 +173,6 @@ message RtxConfig {
optional int32 rtx_payload_type = 2;
}
-
message RtxMap {
// required
optional int32 payload_type = 1;
@@ -190,7 +181,6 @@ message RtxMap {
optional RtxConfig config = 2;
}
-
message VideoSendConfig {
// Synchronization source (stream identifier) for outgoing stream.
// One stream can have several ssrcs for e.g. simulcast.
@@ -210,7 +200,6 @@ message VideoSendConfig {
optional EncoderConfig encoder = 5;
}
-
// Maps encoder names to payload types.
message EncoderConfig {
// required
@@ -220,7 +209,6 @@ message EncoderConfig {
optional int32 payload_type = 2;
}
-
message AudioReceiveConfig {
// required - Synchronization source (stream identifier) to be received.
optional uint32 remote_ssrc = 1;
@@ -232,7 +220,6 @@ message AudioReceiveConfig {
repeated RtpHeaderExtension header_extensions = 3;
}
-
message AudioSendConfig {
// required - Synchronization source (stream identifier) for outgoing stream.
optional uint32 ssrc = 1;
« no previous file with comments | « webrtc/logging/rtc_event_log/rtc_event_log.cc ('k') | webrtc/logging/rtc_event_log/rtc_event_log2rtp_dump.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698