2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2020-01-18 19:22:19 +01:00
|
|
|
* Copyright 2003-2020 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2007-05-30 20:16:35 +02:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2007-05-30 20:16:35 +02:00
|
|
|
*/
|
|
|
|
|
2013-05-12 15:03:42 +02:00
|
|
|
#ifndef MPD_TIMER_HXX
|
|
|
|
#define MPD_TIMER_HXX
|
2007-05-30 20:16:35 +02:00
|
|
|
|
2016-12-28 10:11:07 +01:00
|
|
|
#include <chrono>
|
2007-05-30 20:16:35 +02:00
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
struct AudioFormat;
|
2008-09-07 19:19:55 +02:00
|
|
|
|
2013-05-12 15:03:42 +02:00
|
|
|
class Timer {
|
2016-12-28 10:11:07 +01:00
|
|
|
typedef std::chrono::microseconds Time;
|
|
|
|
|
|
|
|
Time time;
|
2016-12-28 10:11:48 +01:00
|
|
|
bool started = false;
|
2013-05-12 15:03:42 +02:00
|
|
|
const int rate;
|
|
|
|
public:
|
2013-08-03 21:00:50 +02:00
|
|
|
explicit Timer(AudioFormat af);
|
2013-01-15 18:58:02 +01:00
|
|
|
|
2013-05-12 15:03:42 +02:00
|
|
|
bool IsStarted() const { return started; }
|
2007-05-30 20:16:35 +02:00
|
|
|
|
2013-05-12 15:03:42 +02:00
|
|
|
void Start();
|
|
|
|
void Reset();
|
2007-05-30 20:16:35 +02:00
|
|
|
|
2016-12-28 10:17:29 +01:00
|
|
|
void Add(size_t size);
|
2007-05-30 20:16:35 +02:00
|
|
|
|
2013-05-12 15:03:42 +02:00
|
|
|
/**
|
2016-12-28 10:11:07 +01:00
|
|
|
* Returns the duration to sleep to get back to sync.
|
2013-05-12 15:03:42 +02:00
|
|
|
*/
|
2016-12-28 10:11:07 +01:00
|
|
|
std::chrono::steady_clock::duration GetDelay() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
static Time Now() {
|
|
|
|
return std::chrono::duration_cast<Time>(std::chrono::steady_clock::now().time_since_epoch());
|
|
|
|
}
|
2013-05-12 15:03:42 +02:00
|
|
|
};
|
2013-01-15 18:58:02 +01:00
|
|
|
|
2007-05-30 20:16:35 +02:00
|
|
|
#endif
|