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

Unified Diff: webrtc/modules/audio_device/audio_device_buffer.h

Issue 2665693002: Moves channel-dependent audio input processing to separate encoder task queue (Closed)
Patch Set: cleanup Created 3 years, 9 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/modules/audio_device/audio_device_buffer.h
diff --git a/webrtc/modules/audio_device/audio_device_buffer.h b/webrtc/modules/audio_device/audio_device_buffer.h
index 1466e6934b08303fa4920b3bc54d7bbd21c24b12..1bb2ce95714493483f35a45c8379a65369094529 100644
--- a/webrtc/modules/audio_device/audio_device_buffer.h
+++ b/webrtc/modules/audio_device/audio_device_buffer.h
@@ -251,6 +251,11 @@ class AudioDeviceBuffer {
// Setting this member to false prevents (possiby invalid) log messages from
// being printed in the LogStats() task.
bool log_stats_ ACCESS_ON(task_queue_);
+
+ // TODO(henrika): to be removed... (only used for tesing of this CL)!
tommi 2017/03/28 13:01:40 tesing? what is tesing?!?!? I'm so confused
+ int64_t max_diff_time_ = 0;
+ int64_t num_diff_times_ = 0;
+ int64_t acc_diff_times_ = 0;
};
} // namespace webrtc

Powered by Google App Engine
This is Rietveld 408576698