[cleanup] Remove VCMTiming::get_min/max_playout_delay

These methods were only used for testing.

Change-Id: Icbb6a3cc59cbc0b5e1f42efcb86a7203704b92d8
Bug: None
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/256362
Reviewed-by: Ilya Nikolaevskiy <ilnik@webrtc.org>
Commit-Queue: Evan Shrubsole <eshr@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#36293}
This commit is contained in:
Evan Shrubsole
2022-03-22 12:12:17 +01:00
committed by WebRTC LUCI CQ
parent 92e89d7f77
commit 8f1159b518
3 changed files with 25 additions and 26 deletions

View File

@ -47,11 +47,9 @@ class VCMTiming {
// Set/get the minimum playout delay from capture to render.
void set_min_playout_delay(TimeDelta min_playout_delay);
TimeDelta min_playout_delay();
// Set/get the maximum playout delay from capture to render in ms.
void set_max_playout_delay(TimeDelta max_playout_delay);
TimeDelta max_playout_delay();
// Increases or decreases the current delay to get closer to the target delay.
// Calculates how long it has been since the previous call to this function,
@ -100,6 +98,7 @@ class VCMTiming {
TimeDelta target_delay;
TimeDelta jitter_buffer_delay;
TimeDelta min_playout_delay;
TimeDelta max_playout_delay;
TimeDelta render_delay;
size_t num_decoded_frames;
};