timer.c 1.84 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/* the Music Player Daemon (MPD)
 * Copyright (C) 2007 by Warren Dukes (warren.dukes@gmail.com)
 * This project's homepage is: http://www.musicpd.org
 *
 * 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.
 * 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#include "timer.h"
#include "utils.h"
21
#include "audio_format.h"
22

23 24
#include <glib.h>

25 26 27
#include <assert.h>
#include <limits.h>
#include <sys/time.h>
28
#include <stddef.h>
29 30 31 32 33 34 35 36 37 38

static uint64_t now(void)
{
	struct timeval tv;

	gettimeofday(&tv, NULL);

	return ((uint64_t)tv.tv_sec * 1000000) + tv.tv_usec;
}

39
Timer *timer_new(const struct audio_format *af)
40
{
41
	Timer *timer = g_new(Timer, 1);
42 43
	timer->time = 0;
	timer->started = 0;
44
	timer->rate = af->sample_rate * audio_format_frame_size(af);
45 46 47 48 49 50

	return timer;
}

void timer_free(Timer *timer)
{
51
	g_free(timer);
52 53 54 55
}

void timer_start(Timer *timer)
{
56
	timer->time = now();
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
	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;
}

void timer_sync(Timer *timer)
{
Max Kellermann's avatar
Max Kellermann committed
75
	int64_t sleep_duration;
76 77 78

	assert(timer->started);

Max Kellermann's avatar
Max Kellermann committed
79 80 81
	sleep_duration = timer->time - now();
	if (sleep_duration > 0)
		my_usleep(sleep_duration);
82
}