decoder: no CamelCase

Renamed variables and functions.
This commit is contained in:
Max Kellermann
2008-11-03 21:43:02 +01:00
parent b3dfcfef52
commit 863badd91e
5 changed files with 31 additions and 31 deletions

View File

@@ -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;