This CL adds more useful information to NetEqState, and implements setting action_times_ms, which can be used to get a better idea of what actually happened during a timestep. Bug: webrtc:9667 Change-Id: I789a3e1ad852066fdf4e9b4c96b8fb6033dacb27 Reviewed-on: https://webrtc-review.googlesource.com/98163 Reviewed-by: Minyue Li <minyue@webrtc.org> Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Commit-Queue: Ivo Creusen <ivoc@webrtc.org> Cr-Commit-Position: refs/heads/master@{#24643}
28 lines
1.0 KiB
C++
28 lines
1.0 KiB
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.
|
|
*/
|
|
|
|
#include "api/test/neteq_simulator.h"
|
|
|
|
namespace webrtc {
|
|
namespace test {
|
|
|
|
NetEqSimulator::SimulationStepResult::SimulationStepResult() = default;
|
|
NetEqSimulator::SimulationStepResult::SimulationStepResult(
|
|
const NetEqSimulator::SimulationStepResult& other) = default;
|
|
NetEqSimulator::SimulationStepResult::~SimulationStepResult() = default;
|
|
|
|
NetEqSimulator::NetEqState::NetEqState() = default;
|
|
NetEqSimulator::NetEqState::NetEqState(const NetEqState& other) = default;
|
|
NetEqSimulator::NetEqState::NetEqState(NetEqState&& other) = default;
|
|
NetEqSimulator::NetEqState::~NetEqState() = default;
|
|
|
|
} // namespace test
|
|
} // namespace webrtc
|