diff options
author | Max Kellermann <max@duempel.org> | 2013-01-28 23:35:01 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-28 23:35:01 +0100 |
commit | cffc78ad6a978c8ef0afae4fbdd4b189612a7167 (patch) | |
tree | 2496679726754549fd6aad4da0ab558b07bbe0bf /src/decoder/WavpackDecoderPlugin.cxx | |
parent | dcf55c7e328578d435eb14277cb6ba9e072f7e9c (diff) | |
download | mpd-cffc78ad6a978c8ef0afae4fbdd4b189612a7167.tar.gz mpd-cffc78ad6a978c8ef0afae4fbdd4b189612a7167.tar.xz mpd-cffc78ad6a978c8ef0afae4fbdd4b189612a7167.zip |
InputStream: store references instead of pointers
Diffstat (limited to 'src/decoder/WavpackDecoderPlugin.cxx')
-rw-r--r-- | src/decoder/WavpackDecoderPlugin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder/WavpackDecoderPlugin.cxx b/src/decoder/WavpackDecoderPlugin.cxx index d2a1355a9..b7348e218 100644 --- a/src/decoder/WavpackDecoderPlugin.cxx +++ b/src/decoder/WavpackDecoderPlugin.cxx @@ -517,7 +517,7 @@ wavpack_streamdecode(struct decoder * decoder, struct input_stream *is) struct wavpack_input isp, isp_wvc; bool can_seek = is->seekable; - is_wvc = wavpack_open_wvc(decoder, is->uri, *is->mutex, *is->cond, + is_wvc = wavpack_open_wvc(decoder, is->uri, is->mutex, is->cond, &isp_wvc); if (is_wvc != NULL) { open_flags |= OPEN_WVC; |