aboutsummaryrefslogtreecommitdiff
path: root/src/decoder_control.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-09-07 19:19:55 +0200
committerMax Kellermann <max@duempel.org>2008-09-07 19:19:55 +0200
commitf1dd9c209c3a1cf6826d3a38b60f638e0faeadab (patch)
tree91e369d89eac8d298f1473c0dbcdf43065ae3b40 /src/decoder_control.h
parentbd81fd8b0c4f4f3c20533e21d6a837326eb8682b (diff)
audio_format: converted typedef AudioFormat to struct audio_format
Get rid of CamelCase, and don't use a typedef, so we can forward-declare it, and unclutter the include dependencies.
Diffstat (limited to 'src/decoder_control.h')
-rw-r--r--src/decoder_control.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder_control.h b/src/decoder_control.h
index e3fe53da..8c19d3d5 100644
--- a/src/decoder_control.h
+++ b/src/decoder_control.h
@@ -48,7 +48,7 @@ struct decoder_control {
volatile mpd_sint8 seekError;
volatile mpd_sint8 seekable;
volatile double seekWhere;
- AudioFormat audioFormat;
+ struct audio_format audioFormat;
Song *current_song;
Song *volatile next_song;
volatile float totalTime;