2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2010-01-01 05:55:13 +01:00
|
|
|
* Copyright (C) 2003-2010 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
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MPD_TIMER_H
|
|
|
|
#define MPD_TIMER_H
|
|
|
|
|
2008-10-08 10:49:29 +02:00
|
|
|
#include <stdint.h>
|
2007-05-30 20:16:35 +02:00
|
|
|
|
2008-09-07 19:19:55 +02:00
|
|
|
struct audio_format;
|
|
|
|
|
2007-05-30 20:16:35 +02:00
|
|
|
typedef struct _Timer {
|
|
|
|
uint64_t time;
|
|
|
|
int started;
|
|
|
|
int rate;
|
|
|
|
} Timer;
|
|
|
|
|
2008-09-09 10:01:29 +02:00
|
|
|
Timer *timer_new(const struct audio_format *af);
|
2007-05-30 20:16:35 +02:00
|
|
|
|
|
|
|
void timer_free(Timer *timer);
|
|
|
|
|
|
|
|
void timer_start(Timer *timer);
|
|
|
|
|
|
|
|
void timer_reset(Timer *timer);
|
|
|
|
|
|
|
|
void timer_add(Timer *timer, int size);
|
|
|
|
|
|
|
|
void timer_sync(Timer *timer);
|
|
|
|
|
|
|
|
#endif
|