aboutsummaryrefslogtreecommitdiffstats
path: root/src/playerData.h
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2008-04-13 01:16:03 +0000
committerEric Wong <normalperson@yhbt.net>2008-04-13 01:16:03 +0000
commitdec6b1612e953c6029d963ff55d2b4a669b60f43 (patch)
treea1138cb07f67c821ee5000618302d21367ab2245 /src/playerData.h
parent98acfa8ac5bac09ca49a7c21938b5a5801e01ca5 (diff)
downloadmpd-dec6b1612e953c6029d963ff55d2b4a669b60f43.tar.gz
mpd-dec6b1612e953c6029d963ff55d2b4a669b60f43.tar.xz
mpd-dec6b1612e953c6029d963ff55d2b4a669b60f43.zip
Stop passing our single DecoderControl object everywhere
This at least makes the argument list to a lot of our plugin functions shorter and removes a good amount of line nois^W^Wcode, hopefully making things easier to read and follow. git-svn-id: https://svn.musicpd.org/mpd/trunk@7353 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r--src/playerData.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/playerData.h b/src/playerData.h
index 2a8da0ca3..2777edc17 100644
--- a/src/playerData.h
+++ b/src/playerData.h
@@ -27,10 +27,10 @@
extern unsigned int buffered_before_play;
extern PlayerControl pc;
+extern DecoderControl dc;
typedef struct _PlayerData {
OutputBuffer buffer;
- DecoderControl decoderControl;
mpd_uint8 *audioDeviceStates;
} PlayerData;