diff options
author | Max Kellermann <max@duempel.org> | 2008-10-10 14:40:54 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-10 14:40:54 +0200 |
commit | de2cb3f37568e7680549057f8d7b6d748c388480 (patch) | |
tree | 46f9f43a1f83b49945c8a4fc77f933fad9230e01 /src/timer.c | |
parent | 6101dc6c768b09dbcdc1840a84b619a5a6a20129 (diff) |
audio_format: renamed sampleRate to sample_rate
The last bit of CamelCase in audio_format.h. Additionally, rename a
bunch of local variables.
Diffstat (limited to 'src/timer.c')
-rw-r--r-- | src/timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/timer.c b/src/timer.c index f8bbacdc4..84c03fbe6 100644 --- a/src/timer.c +++ b/src/timer.c @@ -40,7 +40,7 @@ Timer *timer_new(const struct audio_format *af) timer = xmalloc(sizeof(Timer)); timer->time = 0; timer->started = 0; - timer->rate = af->sampleRate * (af->bits / CHAR_BIT) * af->channels; + timer->rate = af->sample_rate * (af->bits / CHAR_BIT) * af->channels; return timer; } |