Add UTC time to init event in AEC debug dump.

Bug: webrtc:9616
Change-Id: I1350212f0b8835fb64427483269da96d51670c01
Reviewed-on: https://webrtc-review.googlesource.com/92620
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Reviewed-by: Minyue Li <minyue@webrtc.org>
Reviewed-by: Per Åhgren <peah@webrtc.org>
Reviewed-by: Henrik Lundin <henrik.lundin@webrtc.org>
Reviewed-by: Per Kjellander <perkj@webrtc.org>
Reviewed-by: Alex Loiko <aleloi@webrtc.org>
Commit-Queue: Minyue Li <minyue@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#24267}
This commit is contained in:
Minyue Li
2018-08-10 15:38:52 +02:00
committed by Commit Bot
parent f820a5ea1c
commit 656d609a95
14 changed files with 39 additions and 11 deletions

View File

@ -322,6 +322,11 @@ int do_main(int argc, char* argv[]) {
num_reverse_channels = msg.num_reverse_channels();
fprintf(settings_file, " Reverse channels: %" PRIuS "\n",
num_reverse_channels);
if (msg.has_timestamp_ms()) {
const int64_t timestamp = msg.timestamp_ms();
fprintf(settings_file, " Timestamp in millisecond: %" PRId64 "\n",
timestamp);
}
fprintf(settings_file, "\n");