diff options
author | Max Kellermann <max@duempel.org> | 2008-04-12 04:21:43 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-04-12 04:21:43 +0000 |
commit | dec2a063cd5fde4bde8e97fc572f41e884b136cb (patch) | |
tree | 32f0f6de15d90f56fea8be93a806b36249c99677 /src/audioOutput.h | |
parent | b4ea6e52b2eba41121431ea6a1569aff04dad8fd (diff) | |
download | mpd-dec2a063cd5fde4bde8e97fc572f41e884b136cb.tar.gz mpd-dec2a063cd5fde4bde8e97fc572f41e884b136cb.tar.xz mpd-dec2a063cd5fde4bde8e97fc572f41e884b136cb.zip |
const pointers in audioOutput.c
git-svn-id: https://svn.musicpd.org/mpd/trunk@7345 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/audioOutput.h')
-rw-r--r-- | src/audioOutput.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/audioOutput.h b/src/audioOutput.h index 3cede2e30..7574f5ae1 100644 --- a/src/audioOutput.h +++ b/src/audioOutput.h @@ -96,7 +96,8 @@ void loadAudioOutputPlugin(AudioOutputPlugin * audioOutputPlugin); void unloadAudioOutputPlugin(AudioOutputPlugin * audioOutputPlugin); int initAudioOutput(AudioOutput *, ConfigParam * param); -int openAudioOutput(AudioOutput * audioOutput, AudioFormat * audioFormat); +int openAudioOutput(AudioOutput * audioOutput, + const AudioFormat * audioFormat); int playAudioOutput(AudioOutput * audioOutput, const char *playChunk, size_t size); void dropBufferedAudioOutput(AudioOutput * audioOutput); |