File tree 2 files changed +4
-1
lines changed
modules/audio_coding/neteq/tools 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,9 @@ class NetEqSimulator {
60
60
int packet_size_ms = 0 ;
61
61
};
62
62
63
+ // Runs the simulation until the end. Returns the duration of the produced
64
+ // audio in ms.
65
+ virtual int64_t Run () = 0;
63
66
// Runs the simulation until we hit the next GetAudio event. If the simulation
64
67
// is finished, is_simulation_finished will be set to true in the returned
65
68
// SimulationStepResult.
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ class NetEqTest : public NetEqSimulator {
92
92
~NetEqTest () override ;
93
93
94
94
// Runs the test. Returns the duration of the produced audio in ms.
95
- int64_t Run ();
95
+ int64_t Run () override ;
96
96
// Runs the simulation until we hit the next GetAudio event. If the simulation
97
97
// is finished, is_simulation_finished will be set to true in the returned
98
98
// SimulationStepResult.
You can’t perform that action at this time.
0 commit comments