mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 22:00:47 +01:00

Bug: webrtc:10170 Change-Id: Ie643e47c55b8c35ca9b8ef31eda5b1673f19d7b3 Reviewed-on: https://webrtc-review.googlesource.com/c/116066 Commit-Queue: Sebastian Jansson <srte@webrtc.org> Reviewed-by: Oskar Sundbom <ossu@webrtc.org> Reviewed-by: Björn Terelius <terelius@webrtc.org> Cr-Commit-Position: refs/heads/master@{#26160}
41 lines
1.5 KiB
C++
41 lines
1.5 KiB
C++
/*
|
|
* Copyright 2019 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.
|
|
*/
|
|
#include "logging/rtc_event_log/rtc_event_processor.h"
|
|
|
|
namespace webrtc {
|
|
|
|
RtcEventProcessor::RtcEventProcessor() = default;
|
|
|
|
RtcEventProcessor::~RtcEventProcessor() = default;
|
|
void RtcEventProcessor::ProcessEventsInOrder() {
|
|
// |event_lists_| is a min-heap of lists ordered by the timestamp of the
|
|
// first element in the list. We therefore process the first element of the
|
|
// first list, then reinsert the remainder of that list into the heap
|
|
// if the list still contains unprocessed elements.
|
|
while (!event_lists_.empty()) {
|
|
event_lists_.front()->ProcessNext();
|
|
std::pop_heap(event_lists_.begin(), event_lists_.end(), Cmp);
|
|
if (event_lists_.back()->IsEmpty()) {
|
|
event_lists_.pop_back();
|
|
} else {
|
|
std::push_heap(event_lists_.begin(), event_lists_.end(), Cmp);
|
|
}
|
|
}
|
|
}
|
|
|
|
bool RtcEventProcessor::Cmp(const RtcEventProcessor::ListPtrType& a,
|
|
const RtcEventProcessor::ListPtrType& b) {
|
|
int64_t time_diff = a->GetNextTime() - b->GetNextTime();
|
|
if (time_diff == 0)
|
|
return a->GetTieBreaker() > b->GetTieBreaker();
|
|
return time_diff > 0;
|
|
}
|
|
|
|
} // namespace webrtc
|