Commit e4746b82 authored by Max Kellermann's avatar Max Kellermann Committed by Eric Wong

constant pointers in replayGain.c

git-svn-id: https://svn.musicpd.org/mpd/trunk@7342 09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent 1308290c
......@@ -104,7 +104,7 @@ void freeReplayGainInfo(ReplayGainInfo * info)
}
void doReplayGain(ReplayGainInfo * info, char *buffer, int bufferSize,
AudioFormat * format)
const AudioFormat * format)
{
mpd_sint16 *buffer16;
mpd_sint8 *buffer8;
......
......@@ -45,6 +45,6 @@ void freeReplayGainInfo(ReplayGainInfo * info);
void initReplayGainState(void);
void doReplayGain(ReplayGainInfo * info, char *buffer, int bufferSize,
AudioFormat * format);
const AudioFormat * format);
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment