diff options
author | Max Kellermann <max@duempel.org> | 2014-08-19 22:39:44 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-08-19 22:39:44 +0200 |
commit | e2adb82e29940c4fc784cef21e6cd1ae389e7a2e (patch) | |
tree | 38422743bdb2ae60455bddb3e8d0e7d2c88f721b /src/decoder/plugins/DsdLib.hxx | |
parent | bb472206dee0adcff09b2efccfb5795101b45705 (diff) | |
download | mpd-e2adb82e29940c4fc784cef21e6cd1ae389e7a2e.tar.gz mpd-e2adb82e29940c4fc784cef21e6cd1ae389e7a2e.tar.xz mpd-e2adb82e29940c4fc784cef21e6cd1ae389e7a2e.zip |
decoder/DsdLib: use offset_type instead of uint64_t
Diffstat (limited to 'src/decoder/plugins/DsdLib.hxx')
-rw-r--r-- | src/decoder/plugins/DsdLib.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/decoder/plugins/DsdLib.hxx b/src/decoder/plugins/DsdLib.hxx index 4d5830702..8295bcbf6 100644 --- a/src/decoder/plugins/DsdLib.hxx +++ b/src/decoder/plugins/DsdLib.hxx @@ -21,6 +21,7 @@ #define MPD_DECODER_DSDLIB_HXX #include "system/ByteOrder.hxx" +#include "input/Offset.hxx" #include "Compiler.h" #include <stddef.h> @@ -60,11 +61,11 @@ public: bool dsdlib_skip_to(Decoder *decoder, InputStream &is, - uint64_t offset); + offset_type offset); bool dsdlib_skip(Decoder *decoder, InputStream &is, - uint64_t delta); + offset_type delta); /** * Check if the sample frequency is a valid DSD frequency. |