diff options
author | Max Kellermann <max@duempel.org> | 2008-11-03 21:49:29 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-11-03 21:49:29 +0100 |
commit | 862bbc21a1864e766d22dab07ac745c20fcb8f59 (patch) | |
tree | 30fd393df4c22ca8817c5e7d7f68216f6a7fd884 /src/player_control.h | |
parent | cfaf85e37de7261201d863ad80e06801d52baab6 (diff) | |
download | mpd-862bbc21a1864e766d22dab07ac745c20fcb8f59.tar.gz mpd-862bbc21a1864e766d22dab07ac745c20fcb8f59.tar.xz mpd-862bbc21a1864e766d22dab07ac745c20fcb8f59.zip |
player: no CamelCase
Renamed variables and internal functions. Most of the
player_control.h API remains in CamelCase for now.
Diffstat (limited to '')
-rw-r--r-- | src/player_control.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/player_control.h b/src/player_control.h index 8d89bfb2a..2eeb537aa 100644 --- a/src/player_control.h +++ b/src/player_control.h @@ -64,16 +64,16 @@ struct player_control { volatile enum player_command command; volatile enum player_state state; volatile int8_t error; - volatile uint16_t bitRate; + volatile uint16_t bit_rate; struct audio_format audio_format; - volatile float totalTime; - volatile float elapsedTime; + volatile float total_time; + volatile float elapsed_time; struct song *volatile next_song; struct song *errored_song; - volatile double seekWhere; - volatile float crossFade; - volatile uint16_t softwareVolume; - volatile double totalPlayTime; + volatile double seek_where; + volatile float cross_fade_seconds; + volatile uint16_t software_volume; + volatile double total_play_time; }; extern struct player_control pc; |