MediaClient: Start/Stop force argument doesn't make sense

This commit is contained in:
Dario Casalinuovo
2017-01-15 19:28:14 +01:00
parent 728c730c45
commit 550e05af20
2 changed files with 8 additions and 4 deletions
+6 -2
View File
@@ -110,13 +110,17 @@ public:
// always use the protected HandleSomething version. This is because
// otherwise you could break the connection mechanism and mine interoperability
// from remote nodes.
status_t Start(bool force = false);
status_t Stop(bool force = false);
status_t Start();
status_t Stop();
status_t Seek(bigtime_t mediaTime,
bigtime_t performanceTime);
status_t Roll(bigtime_t start, bigtime_t stop,
bigtime_t seek);
// Preroll the client to buffer startup latency
status_t Preroll();
// This function return when the client reach the specified performanceTime
status_t SyncTo(bigtime_t performanceTime,
bigtime_t timeout = -1);