aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder_api.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-01-17 13:23:12 +0100
committerMax Kellermann <max@duempel.org>2009-01-17 13:23:12 +0100
commit43eefe9c41478f5605e4abd7e6c7fc6d710341e8 (patch)
tree3527e603227741b19b33410fbac1ff23fa5f372b /src/decoder_api.c
parent356526457c49384d6ff5b652aa0f33dc74d23508 (diff)
downloadmpd-43eefe9c41478f5605e4abd7e6c7fc6d710341e8.tar.gz
mpd-43eefe9c41478f5605e4abd7e6c7fc6d710341e8.tar.xz
mpd-43eefe9c41478f5605e4abd7e6c7fc6d710341e8.zip
decoder_api: pass const pointer to decoder_data()
Diffstat (limited to 'src/decoder_api.c')
-rw-r--r--src/decoder_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder_api.c b/src/decoder_api.c
index 831fb24b2..a06eb8364 100644
--- a/src/decoder_api.c
+++ b/src/decoder_api.c
@@ -187,7 +187,7 @@ update_stream_tag(struct decoder *decoder, struct input_stream *is)
enum decoder_command
decoder_data(struct decoder *decoder,
struct input_stream *is,
- void *_data, size_t length,
+ const void *_data, size_t length,
float data_time, uint16_t bitRate,
struct replay_gain_info *replay_gain_info)
{