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

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

Issue 2559953002: Log audio network adapter decisions in event log. (Closed)
Patch Set: Response to comments 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/logging/rtc_event_log/rtc_event_log.cc ('k') | webrtc/logging/rtc_event_log/rtc_event_log_parser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/logging/rtc_event_log/rtc_event_log.proto
diff --git a/webrtc/logging/rtc_event_log/rtc_event_log.proto b/webrtc/logging/rtc_event_log/rtc_event_log.proto
index a6d169579659e496379394de86cb9b4fac220b13..3577c43715e299eddb5a5140e3e763e6c7d332ae 100644
--- a/webrtc/logging/rtc_event_log/rtc_event_log.proto
+++ b/webrtc/logging/rtc_event_log/rtc_event_log.proto
@@ -2,6 +2,8 @@ syntax = "proto2";
option optimize_for = LITE_RUNTIME;
package webrtc.rtclog;
+import "webrtc/modules/audio_coding/audio_network_adaptor/debug_dump.proto";
terelius 2016/12/22 16:04:24 I'd prefer to keep all relevant event types in thi
minyue-webrtc 2016/12/29 20:28:51 Acknowledged.
+
enum MediaType {
ANY = 0;
AUDIO = 1;
@@ -37,6 +39,7 @@ message Event {
VIDEO_SENDER_CONFIG_EVENT = 9;
AUDIO_RECEIVER_CONFIG_EVENT = 10;
AUDIO_SENDER_CONFIG_EVENT = 11;
+ AUDIO_ENCODER_CONFIG_EVENT = 12;
terelius 2016/12/22 16:04:24 Your use of "CONFIG" is quite different from the o
minyue-webrtc 2016/12/29 20:28:50 Sure, I like your suggestion.
}
// required - Indicates the type of this event
@@ -65,6 +68,10 @@ message Event {
// optional - but required if type == AUDIO_SENDER_CONFIG_EVENT
optional AudioSendConfig audio_sender_config = 11;
+
+ // optional - but required if type == AUDIO_ENCODER_CONFIG_EVENT
+ optional webrtc.audio_network_adaptor.debug_dump.EncoderRuntimeConfig
+ encoder_config = 12;
terelius 2016/12/22 16:04:24 Field tag numbers in the range [1,15] require one
minyue-webrtc 2016/12/29 20:28:50 ok, that is nice. I'd pick 16 then.
}
message RtpPacket {
« no previous file with comments | « webrtc/logging/rtc_event_log/rtc_event_log.cc ('k') | webrtc/logging/rtc_event_log/rtc_event_log_parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698