Remove NetEq extra delay option.
Bug: b/156734419 Change-Id: I787e6961ad283990d633029c0cf296e10b825875 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/237403 Reviewed-by: Gustaf Ullberg <gustaf@webrtc.org> Reviewed-by: Henrik Lundin <henrik.lundin@webrtc.org> Commit-Queue: Jakob Ivarsson <jakobi@webrtc.org> Cr-Commit-Position: refs/heads/main@{#35326}
This commit is contained in:
committed by
WebRTC LUCI CQ
parent
fa68ac0c4e
commit
4a97d7281f
@ -33,8 +33,7 @@ NetEqStatsPlotter::NetEqStatsPlotter(bool make_matlab_plot,
|
||||
stats_getter_.reset(new NetEqStatsGetter(std::move(delay_analyzer)));
|
||||
}
|
||||
|
||||
void NetEqStatsPlotter::SimulationEnded(int64_t simulation_time_ms,
|
||||
NetEq* /*neteq*/) {
|
||||
void NetEqStatsPlotter::SimulationEnded(int64_t simulation_time_ms) {
|
||||
if (make_matlab_plot_) {
|
||||
auto matlab_script_name = base_file_name_;
|
||||
std::replace(matlab_script_name.begin(), matlab_script_name.end(), '.',
|
||||
|
||||
@ -28,7 +28,7 @@ class NetEqStatsPlotter : public NetEqSimulationEndedCallback {
|
||||
bool show_concealment_events,
|
||||
std::string base_file_name);
|
||||
|
||||
void SimulationEnded(int64_t simulation_time_ms, NetEq* neteq) override;
|
||||
void SimulationEnded(int64_t simulation_time_ms) override;
|
||||
|
||||
NetEqStatsGetter* stats_getter() { return stats_getter_.get(); }
|
||||
|
||||
|
||||
@ -91,8 +91,7 @@ int64_t NetEqTest::Run() {
|
||||
simulation_time += step_result.simulation_step_ms;
|
||||
} while (!step_result.is_simulation_finished);
|
||||
if (callbacks_.simulation_ended_callback) {
|
||||
callbacks_.simulation_ended_callback->SimulationEnded(simulation_time,
|
||||
neteq_.get());
|
||||
callbacks_.simulation_ended_callback->SimulationEnded(simulation_time);
|
||||
}
|
||||
return simulation_time;
|
||||
}
|
||||
|
||||
@ -61,7 +61,7 @@ class NetEqGetAudioCallback {
|
||||
class NetEqSimulationEndedCallback {
|
||||
public:
|
||||
virtual ~NetEqSimulationEndedCallback() = default;
|
||||
virtual void SimulationEnded(int64_t simulation_time_ms, NetEq* neteq) = 0;
|
||||
virtual void SimulationEnded(int64_t simulation_time_ms) = 0;
|
||||
};
|
||||
|
||||
// Class that provides an input--output test for NetEq. The input (both packets
|
||||
|
||||
Reference in New Issue
Block a user