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

Remove duplicate implementions and complex inheritance. Slight change to the event log visualizer NetEq simulations to only include time after the first packet has been received. Bug: None Change-Id: I8a7bd3d4d2b601fc134292554476020f9b3eee92 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/300300 Commit-Queue: Jakob Ivarsson <jakobi@webrtc.org> Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Henrik Lundin <henrik.lundin@webrtc.org> Cr-Commit-Position: refs/heads/main@{#39773}
28 lines
1,015 B
C++
28 lines
1,015 B
C++
/*
|
|
* Copyright (c) 2018 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 MODULES_AUDIO_CODING_NETEQ_TOOLS_NETEQ_EVENT_LOG_INPUT_H_
|
|
#define MODULES_AUDIO_CODING_NETEQ_TOOLS_NETEQ_EVENT_LOG_INPUT_H_
|
|
|
|
#include "absl/strings/string_view.h"
|
|
#include "absl/types/optional.h"
|
|
#include "logging/rtc_event_log/rtc_event_log_parser.h"
|
|
#include "modules/audio_coding/neteq/tools/neteq_input.h"
|
|
|
|
namespace webrtc {
|
|
namespace test {
|
|
|
|
std::unique_ptr<NetEqInput> CreateNetEqEventLogInput(
|
|
const ParsedRtcEventLog& parsed_log,
|
|
absl::optional<uint32_t> ssrc);
|
|
|
|
} // namespace test
|
|
} // namespace webrtc
|
|
#endif // MODULES_AUDIO_CODING_NETEQ_TOOLS_NETEQ_EVENT_LOG_INPUT_H_
|