diff options
author | Max Kellermann <max@duempel.org> | 2008-04-15 05:56:35 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-04-15 05:56:35 +0000 |
commit | f201f2c922003dc4d07a7b7d71ca44976ab8eb7c (patch) | |
tree | 0677c165fb62e3b2b68eec83bbc04a4116387480 /src/pcm_utils.c | |
parent | df34beb98d37368c78ea39da6211ac78fd8b4cfa (diff) | |
download | mpd-f201f2c922003dc4d07a7b7d71ca44976ab8eb7c.tar.gz mpd-f201f2c922003dc4d07a7b7d71ca44976ab8eb7c.tar.xz mpd-f201f2c922003dc4d07a7b7d71ca44976ab8eb7c.zip |
more const pointers in pcm_utils.[ch]
git-svn-id: https://svn.musicpd.org/mpd/trunk@7360 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/pcm_utils.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/pcm_utils.c b/src/pcm_utils.c index 628c524d2..3cf57def1 100644 --- a/src/pcm_utils.c +++ b/src/pcm_utils.c @@ -24,7 +24,7 @@ #include "conf.h" #include "os_compat.h" -void pcm_volumeChange(char *buffer, int bufferSize, AudioFormat * format, +void pcm_volumeChange(char *buffer, int bufferSize, const AudioFormat * format, int volume) { mpd_sint32 temp32; @@ -389,8 +389,9 @@ static const char *pcm_convertTo16bit(mpd_sint8 bits, const char *inBuffer, } /* outFormat bits must be 16 and channels must be 1 or 2! */ -size_t pcm_convertAudioFormat(AudioFormat * inFormat, const char *inBuffer, - size_t inSize, AudioFormat * outFormat, +size_t pcm_convertAudioFormat(const AudioFormat * inFormat, + const char *inBuffer, size_t inSize, + const AudioFormat * outFormat, char *outBuffer, ConvState *convState) { const char *buf; |