diff options
author | Max Kellermann <max@duempel.org> | 2013-10-17 09:43:55 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-17 10:45:10 +0200 |
commit | 05de2e998c7df2757ae63ce6a053e27eca3d13ca (patch) | |
tree | 2c85c43cb69dc2dc7086bfddc66090928cd0d93f /src/decoder/DsdLib.hxx | |
parent | 24780d99e61af44141e8f0d0d0776a1c994e6770 (diff) | |
download | mpd-05de2e998c7df2757ae63ce6a053e27eca3d13ca.tar.gz mpd-05de2e998c7df2757ae63ce6a053e27eca3d13ca.tar.xz mpd-05de2e998c7df2757ae63ce6a053e27eca3d13ca.zip |
InputStream: use int64_t instead of goffset
Decouple some more from GLib.
Diffstat (limited to 'src/decoder/DsdLib.hxx')
-rw-r--r-- | src/decoder/DsdLib.hxx | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/decoder/DsdLib.hxx b/src/decoder/DsdLib.hxx index 2a8e15190..b1c708fca 100644 --- a/src/decoder/DsdLib.hxx +++ b/src/decoder/DsdLib.hxx @@ -21,8 +21,7 @@ #define MPD_DECODER_DSDLIB_HXX #include <stdlib.h> - -#include <glib.h> +#include <stdint.h> struct dsdlib_id { char value[4]; @@ -37,15 +36,15 @@ dsdlib_read(struct decoder *decoder, struct input_stream *is, bool dsdlib_skip_to(struct decoder *decoder, struct input_stream *is, - goffset offset); + int64_t offset); bool dsdlib_skip(struct decoder *decoder, struct input_stream *is, - goffset delta); + int64_t delta); void dsdlib_tag_id3(struct input_stream *is, const struct tag_handler *handler, - void *handler_ctx, goffset tagoffset); + void *handler_ctx, int64_t tagoffset); #endif |