diff options
author | Max Kellermann <max@duempel.org> | 2014-07-09 19:39:10 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-07-09 19:39:10 +0200 |
commit | 8759bc1b41abea5472a69f2803be7194f8612e79 (patch) | |
tree | 51084fa8d7e9e35ad670e3a82b7e7c7505fdcc3b /src/decoder/plugins/DsdLib.hxx | |
parent | 56504534d8a5083aa4aef95df7bd5d83f96a5b1d (diff) | |
download | mpd-8759bc1b41abea5472a69f2803be7194f8612e79.tar.gz mpd-8759bc1b41abea5472a69f2803be7194f8612e79.tar.xz mpd-8759bc1b41abea5472a69f2803be7194f8612e79.zip |
decoder/dsdlib: pass unsigned offsets to dsdlib_skip*()
Diffstat (limited to 'src/decoder/plugins/DsdLib.hxx')
-rw-r--r-- | src/decoder/plugins/DsdLib.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/decoder/plugins/DsdLib.hxx b/src/decoder/plugins/DsdLib.hxx index 88a76d72a..6b02f8bbc 100644 --- a/src/decoder/plugins/DsdLib.hxx +++ b/src/decoder/plugins/DsdLib.hxx @@ -64,11 +64,11 @@ dsdlib_read(Decoder *decoder, InputStream &is, bool dsdlib_skip_to(Decoder *decoder, InputStream &is, - int64_t offset); + uint64_t offset); bool dsdlib_skip(Decoder *decoder, InputStream &is, - int64_t delta); + uint64_t delta); /** * Add tags from ID3 tag. All tags commonly found in the ID3 tags of |