diff options
author | Jonathan Neuschäfer <j.neuschaefer@gmx.net> | 2011-07-25 21:55:43 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2011-08-27 11:30:34 +0200 |
commit | 310895f0606ebe1f88e20755f221c51cc66a63df (patch) | |
tree | 1e3c4727d39cc9dc889780511b7d7d365038ea63 /src/timer.c | |
parent | 4428894abaa4d40c443cabbf6c1eb467d6f55791 (diff) | |
download | mpd-310895f0606ebe1f88e20755f221c51cc66a63df.tar.gz mpd-310895f0606ebe1f88e20755f221c51cc66a63df.tar.xz mpd-310895f0606ebe1f88e20755f221c51cc66a63df.zip |
rename 'Timer' to 'struct timer'
Diffstat (limited to 'src/timer.c')
-rw-r--r-- | src/timer.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/timer.c b/src/timer.c index cc2e2c178..bbc7a4ab9 100644 --- a/src/timer.c +++ b/src/timer.c @@ -37,9 +37,9 @@ static uint64_t now(void) return ((uint64_t)tv.tv_sec * 1000000) + tv.tv_usec; } -Timer *timer_new(const struct audio_format *af) +struct timer *timer_new(const struct audio_format *af) { - Timer *timer = g_new(Timer, 1); + struct timer *timer = g_new(struct timer, 1); timer->time = 0; timer->started = 0; timer->rate = af->sample_rate * audio_format_frame_size(af); @@ -47,24 +47,24 @@ Timer *timer_new(const struct audio_format *af) return timer; } -void timer_free(Timer *timer) +void timer_free(struct timer *timer) { g_free(timer); } -void timer_start(Timer *timer) +void timer_start(struct timer *timer) { timer->time = now(); timer->started = 1; } -void timer_reset(Timer *timer) +void timer_reset(struct timer *timer) { timer->time = 0; timer->started = 0; } -void timer_add(Timer *timer, int size) +void timer_add(struct timer *timer, int size) { assert(timer->started); @@ -72,7 +72,7 @@ void timer_add(Timer *timer, int size) } unsigned -timer_delay(const Timer *timer) +timer_delay(const struct timer *timer) { int64_t delay = (int64_t)(timer->time - now()) / 1000; if (delay < 0) @@ -84,7 +84,7 @@ timer_delay(const Timer *timer) return delay / 1000; } -void timer_sync(Timer *timer) +void timer_sync(struct timer *timer) { int64_t sleep_duration; |