MediaConnection: Remove latency range interface

* In preparation for the introduction of BMediaGraph.
This commit is contained in:
Barrett17
2018-02-24 15:42:16 +01:00
parent dc4c49c305
commit c61ffa962e
3 changed files with 2 additions and 38 deletions
@@ -72,17 +72,6 @@ protected:
virtual void Connected(const media_format& format);
virtual void Disconnected();
// Specify a latency range to allow the connection behave correctly.
// Ideally the minimum latency should be the algorithmic latency you expect
// from the node and will be used as starting point. The max latency is the
// maximum acceptable by you, over that point the node will adjust it's
// performance time to recover if a big delay happen.
void SetLatencyRange(bigtime_t min,
bigtime_t max);
void GetLatencyRange(bigtime_t* min,
bigtime_t* max) const;
private:
void _ConnectionRegistered(BMediaClient* owner,
@@ -104,9 +93,6 @@ private:
bool fConnected;
bigtime_t fMinLatency;
bigtime_t fMaxLatency;
virtual void _ReservedMediaConnection0();
virtual void _ReservedMediaConnection1();
virtual void _ReservedMediaConnection2();