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

Unified Diff: webrtc/modules/audio_coding/audio_network_adaptor/event_log_writer.h

Issue 2559953002: Log audio network adapter decisions in event log. (Closed)
Patch Set: Log Ana 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
Index: webrtc/modules/audio_coding/audio_network_adaptor/event_log_writer.h
diff --git a/webrtc/modules/audio_coding/audio_network_adaptor/event_log_writer.h b/webrtc/modules/audio_coding/audio_network_adaptor/event_log_writer.h
new file mode 100644
index 0000000000000000000000000000000000000000..d3aadbd40ef800f990876c3a8f5ccd7e4fc93437
--- /dev/null
+++ b/webrtc/modules/audio_coding/audio_network_adaptor/event_log_writer.h
@@ -0,0 +1,40 @@
+/*
+ * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
+ *
+ * Use of this source code is governed by a BSD-style license
+ * that can be found in the LICENSE file in the root of the source
+ * tree. An additional intellectual property rights grant can be found
+ * in the file PATENTS. All contributing project authors may
+ * be found in the AUTHORS file in the root of the source tree.
+ */
+
+#ifndef WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_EVENT_LOG_WRITER_H_
+#define WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_EVENT_LOG_WRITER_H_
+
+#include "webrtc/base/constructormagic.h"
+#include "webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h"
+
+namespace webrtc {
+class RtcEventLog;
+
+class EventLogWriter {
+ public:
+ EventLogWriter(RtcEventLog* event_log,
+ int min_bitreate_change_bps,
+ float min_packet_loss_change_fraction);
+ explicit EventLogWriter(RtcEventLog* event_log);
+ ~EventLogWriter();
+ void MayLogEncoderRuntimeConfig(
+ const AudioNetworkAdaptor::EncoderRuntimeConfig& config);
+
+ private:
+ RtcEventLog* event_log_;
+ rtc::Optional<AudioNetworkAdaptor::EncoderRuntimeConfig> last_runtime_config_;
+ const int min_bitreate_change_bps_;
minyue-webrtc 2016/12/12 10:33:12 bitrate and do we want to make it a ratio? 5 ->
michaelt 2016/12/12 10:50:08 My original idea was to use a ratio value for bit-
+ const float min_packet_loss_change_fraction_;
minyue-webrtc 2016/12/12 10:33:12 also a ratio?
michaelt 2016/12/12 10:50:08 This is a ratio all already. I may could change th
+ RTC_DISALLOW_COPY_AND_ASSIGN(EventLogWriter);
+};
+
+} // namespace webrtc
+
+#endif // WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_EVENT_LOG_WRITER_H_

Powered by Google App Engine
This is Rietveld 408576698