aboutsummaryrefslogtreecommitdiffstats
path: root/src/pipe.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-11-13 02:09:33 +0100
committerMax Kellermann <max@duempel.org>2008-11-13 02:09:33 +0100
commit709640422c07b8f79c9ffad6ffde0d1f5f317523 (patch)
tree373a331f0ff09a67487d4525e8a3fb9b8b7e3dc0 /src/pipe.h
parent66ce1495f07cd065346cdc2067b034e142a0fa96 (diff)
downloadmpd-709640422c07b8f79c9ffad6ffde0d1f5f317523.tar.gz
mpd-709640422c07b8f79c9ffad6ffde0d1f5f317523.tar.xz
mpd-709640422c07b8f79c9ffad6ffde0d1f5f317523.zip
player: chop the tail of the music pipe after CANCEL
When a CANCEL command is received, the player should drop all chunks of the next song. Added new funciton music_pipe_chop() which is used for that.
Diffstat (limited to 'src/pipe.h')
-rw-r--r--src/pipe.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/pipe.h b/src/pipe.h
index 78389d062..7d82c1693 100644
--- a/src/pipe.h
+++ b/src/pipe.h
@@ -164,6 +164,12 @@ bool music_pipe_tag(const struct tag *tag);
void music_pipe_skip(unsigned num);
+/**
+ * Chop off the tail of the music pipe, starting with the chunk at
+ * index "first".
+ */
+void music_pipe_chop(unsigned first);
+
#ifndef NDEBUG
void music_pipe_check_format(const struct audio_format *current,
int next_index, const struct audio_format *next);