aboutsummaryrefslogtreecommitdiffstats
path: root/src/audio.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-09-07 13:51:50 +0200
committerEric Wong <normalperson@yhbt.net>2008-09-09 01:12:38 -0700
commit2a6a8a35c6b31e3c83891076dab86dc2da2d82ae (patch)
tree27ca71bfba317352b13c25850effc3497600be9d /src/audio.h
parent288c051c55e741bbf9387579ea7f066ab6f754f0 (diff)
downloadmpd-2a6a8a35c6b31e3c83891076dab86dc2da2d82ae.tar.gz
mpd-2a6a8a35c6b31e3c83891076dab86dc2da2d82ae.tar.xz
mpd-2a6a8a35c6b31e3c83891076dab86dc2da2d82ae.zip
audio: don't pass "fd" to {en,dis}ableAudioDevice()
No protocol code in the audio output library.
Diffstat (limited to '')
-rw-r--r--src/audio.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audio.h b/src/audio.h
index 92cb9cf11..7ff0d5d4a 100644
--- a/src/audio.h
+++ b/src/audio.h
@@ -59,9 +59,9 @@ void sendMetadataToAudioDevice(const struct mpd_tag *tag);
/* these functions are called in the main parent process while the child
process is busy playing to the audio */
-int enableAudioDevice(int fd, unsigned int device);
+int enableAudioDevice(unsigned int device);
-int disableAudioDevice(int fd, unsigned int device);
+int disableAudioDevice(unsigned int device);
void printAudioDevices(int fd);