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
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2007-05-30 20:16:35 +02:00
|
|
|
#include "timer.h"
|
2008-09-07 19:19:55 +02:00
|
|
|
#include "audio_format.h"
|
2008-10-08 10:49:29 +02:00
|
|
|
|
2009-01-03 14:52:53 +01:00
|
|
|
#include <glib.h>
|
|
|
|
|
2008-10-08 10:49:29 +02:00
|
|
|
#include <assert.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <sys/time.h>
|
2009-01-03 14:52:53 +01:00
|
|
|
#include <stddef.h>
|
2007-05-30 20:16:35 +02:00
|
|
|
|
|
|
|
static uint64_t now(void)
|
|
|
|
{
|
|
|
|
struct timeval tv;
|
|
|
|
|
|
|
|
gettimeofday(&tv, NULL);
|
|
|
|
|
|
|
|
return ((uint64_t)tv.tv_sec * 1000000) + tv.tv_usec;
|
|
|
|
}
|
|
|
|
|
2008-09-09 10:01:29 +02:00
|
|
|
Timer *timer_new(const struct audio_format *af)
|
2007-05-30 20:16:35 +02:00
|
|
|
{
|
2009-01-03 14:52:53 +01:00
|
|
|
Timer *timer = g_new(Timer, 1);
|
2007-05-30 20:16:35 +02:00
|
|
|
timer->time = 0;
|
|
|
|
timer->started = 0;
|
2008-10-10 14:41:37 +02:00
|
|
|
timer->rate = af->sample_rate * audio_format_frame_size(af);
|
2007-05-30 20:16:35 +02:00
|
|
|
|
|
|
|
return timer;
|
|
|
|
}
|
|
|
|
|
|
|
|
void timer_free(Timer *timer)
|
|
|
|
{
|
2009-01-03 14:52:53 +01:00
|
|
|
g_free(timer);
|
2007-05-30 20:16:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void timer_start(Timer *timer)
|
|
|
|
{
|
2007-06-12 19:58:17 +02:00
|
|
|
timer->time = now();
|
2007-05-30 20:16:35 +02:00
|
|
|
timer->started = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void timer_reset(Timer *timer)
|
|
|
|
{
|
|
|
|
timer->time = 0;
|
|
|
|
timer->started = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void timer_add(Timer *timer, int size)
|
|
|
|
{
|
|
|
|
assert(timer->started);
|
|
|
|
|
|
|
|
timer->time += ((uint64_t)size * 1000000) / timer->rate;
|
|
|
|
}
|
|
|
|
|
2010-11-05 09:39:50 +01:00
|
|
|
unsigned
|
|
|
|
timer_delay(const Timer *timer)
|
|
|
|
{
|
2010-11-05 08:02:38 +01:00
|
|
|
int64_t delay = (timer->time - now()) / 1000;
|
2010-11-05 09:39:50 +01:00
|
|
|
if (delay < 0)
|
|
|
|
return 0;
|
|
|
|
|
2010-11-05 08:02:38 +01:00
|
|
|
if (delay > G_MAXINT)
|
|
|
|
delay = G_MAXINT;
|
2010-11-05 09:39:50 +01:00
|
|
|
|
|
|
|
return delay / 1000;
|
|
|
|
}
|
|
|
|
|
2007-05-30 20:16:35 +02:00
|
|
|
void timer_sync(Timer *timer)
|
|
|
|
{
|
2008-01-26 13:46:21 +01:00
|
|
|
int64_t sleep_duration;
|
2007-05-30 20:16:35 +02:00
|
|
|
|
|
|
|
assert(timer->started);
|
|
|
|
|
2008-01-26 13:46:21 +01:00
|
|
|
sleep_duration = timer->time - now();
|
|
|
|
if (sleep_duration > 0)
|
2009-02-19 13:33:03 +01:00
|
|
|
g_usleep(sleep_duration);
|
2007-05-30 20:16:35 +02:00
|
|
|
}
|