diff options
author | Max Kellermann <max@duempel.org> | 2008-11-03 21:43:02 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-11-03 21:43:02 +0100 |
commit | 863badd91ed25ed37a4d1a8bb1d03fdbf285a631 (patch) | |
tree | 131774a268dbfa2aa153f23a56b0ae62a4b9ad99 /src/player_thread.c | |
parent | b3dfcfef52f30ccdec4011bf0c9fa051feb3590e (diff) | |
download | mpd-863badd91ed25ed37a4d1a8bb1d03fdbf285a631.tar.gz mpd-863badd91ed25ed37a4d1a8bb1d03fdbf285a631.tar.xz mpd-863badd91ed25ed37a4d1a8bb1d03fdbf285a631.zip |
decoder: no CamelCase
Renamed variables and functions.
Diffstat (limited to 'src/player_thread.c')
-rw-r--r-- | src/player_thread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/player_thread.c b/src/player_thread.c index e1f31b38c..5df189f78 100644 --- a/src/player_thread.c +++ b/src/player_thread.c @@ -329,7 +329,7 @@ static void do_play(void) if (player.paused) closeAudioDevice(); - pc.totalTime = dc.totalTime; + pc.totalTime = dc.total_time; pc.audio_format = dc.in_audio_format; play_audio_format = dc.out_audio_format; sizeToTime = audioFormatSizeToTime(&dc.out_audio_format); @@ -367,7 +367,7 @@ static void do_play(void) calculate how many chunks will be required for it */ crossFadeChunks = - cross_fade_calc(pc.crossFade, dc.totalTime, + cross_fade_calc(pc.crossFade, dc.total_time, &dc.out_audio_format, music_pipe_size() - pc.buffered_before_play); |