diff options
author | Max Kellermann <max@duempel.org> | 2013-01-07 23:23:58 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-07 23:25:08 +0100 |
commit | 960b9a966450f4870a14c81170e3b625f9c13a8a (patch) | |
tree | 1066a84c6825aea6f61bf9db8fdf4e54c8f66144 /src/input_stream.h | |
parent | acb45caa4205d6e07c46b14079a7ffe0a2141d3d (diff) | |
download | mpd-960b9a966450f4870a14c81170e3b625f9c13a8a.tar.gz mpd-960b9a966450f4870a14c81170e3b625f9c13a8a.tar.xz mpd-960b9a966450f4870a14c81170e3b625f9c13a8a.zip |
input_stream: add method _cheap_seeking()
Move code from the Vorbis decoder plugin.
Diffstat (limited to '')
-rw-r--r-- | src/input_stream.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/input_stream.h b/src/input_stream.h index 3a29625af..d5b1dae2e 100644 --- a/src/input_stream.h +++ b/src/input_stream.h @@ -168,6 +168,13 @@ void input_stream_lock_wait_ready(struct input_stream *is); /** + * Determines whether seeking is cheap. This is true for local files. + */ +gcc_pure gcc_nonnull(1) +bool +input_stream_cheap_seeking(const struct input_stream *is); + +/** * Seeks to the specified position in the stream. This will most * likely fail if the "seekable" flag is false. * |