aboutsummaryrefslogtreecommitdiff
path: root/src/pipe.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-03-09 19:15:54 +0100
committerMax Kellermann <max@duempel.org>2009-03-09 19:15:54 +0100
commite1bd2c65d5ad75a79e7a2bac9f4b6b778951c786 (patch)
treedd615ddf17794c02d34830a929cdc23b6c89876f /src/pipe.h
parent9f79c05e431806c5023f6d1537c90b4decf413a1 (diff)
music_pipe: added music_pipe_contains()
Diffstat (limited to 'src/pipe.h')
-rw-r--r--src/pipe.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/pipe.h b/src/pipe.h
index dd97ce82..8b7b457a 100644
--- a/src/pipe.h
+++ b/src/pipe.h
@@ -47,6 +47,7 @@ void
music_pipe_free(struct music_pipe *mp);
#ifndef NDEBUG
+
/**
* Checks if the audio format if the chunk is equal to the specified
* audio_format.
@@ -54,6 +55,14 @@ music_pipe_free(struct music_pipe *mp);
bool
music_pipe_check_format(const struct music_pipe *pipe,
const struct audio_format *audio_format);
+
+/**
+ * Checks if the specified chunk is enqueued in the music pipe.
+ */
+bool
+music_pipe_contains(const struct music_pipe *mp,
+ const struct music_chunk *chunk);
+
#endif
/**