aboutsummaryrefslogtreecommitdiff
path: root/src/decoder_control.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-11-03 21:43:02 +0100
committerMax Kellermann <max@duempel.org>2008-11-03 21:43:02 +0100
commit863badd91ed25ed37a4d1a8bb1d03fdbf285a631 (patch)
tree131774a268dbfa2aa153f23a56b0ae62a4b9ad99 /src/decoder_control.h
parentb3dfcfef52f30ccdec4011bf0c9fa051feb3590e (diff)
decoder: no CamelCase
Renamed variables and functions.
Diffstat (limited to 'src/decoder_control.h')
-rw-r--r--src/decoder_control.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/decoder_control.h b/src/decoder_control.h
index 5f7bbf54..df090847 100644
--- a/src/decoder_control.h
+++ b/src/decoder_control.h
@@ -44,9 +44,9 @@ struct decoder_control {
volatile enum decoder_state state;
volatile enum decoder_command command;
volatile uint16_t error;
- bool seekError;
+ bool seek_error;
bool seekable;
- volatile double seekWhere;
+ volatile double seek_where;
/** the format of the song file */
struct audio_format in_audio_format;
@@ -56,7 +56,7 @@ struct decoder_control {
struct song *current_song;
struct song *volatile next_song;
- volatile float totalTime;
+ volatile float total_time;
};
extern struct decoder_control dc;