aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-09-07 21:50:27 +0200
committerMax Kellermann <max@duempel.org>2014-09-07 21:52:34 +0200
commite3a0f158376a38abb2eb9aa4a67b155ff9da6ffe (patch)
tree9ff83952cc09edfd6e1f42a1f148e10b46525983 /src
parenta6bb27483b30f81145c19d1048a342c0aa5401d0 (diff)
downloadmpd-e3a0f158376a38abb2eb9aa4a67b155ff9da6ffe.tar.gz
mpd-e3a0f158376a38abb2eb9aa4a67b155ff9da6ffe.tar.xz
mpd-e3a0f158376a38abb2eb9aa4a67b155ff9da6ffe.zip
Decoder*: add more assertions
Diffstat (limited to 'src')
-rw-r--r--src/DecoderAPI.cxx4
-rw-r--r--src/DecoderInternal.cxx3
2 files changed, 7 insertions, 0 deletions
diff --git a/src/DecoderAPI.cxx b/src/DecoderAPI.cxx
index e4122d60e..334d069bf 100644
--- a/src/DecoderAPI.cxx
+++ b/src/DecoderAPI.cxx
@@ -47,6 +47,7 @@ decoder_initialized(Decoder &decoder,
assert(dc.state == DecoderState::START);
assert(dc.pipe != nullptr);
+ assert(dc.pipe->IsEmpty());
assert(decoder.stream_tag == nullptr);
assert(decoder.decoder_tag == nullptr);
assert(!decoder.seeking);
@@ -405,6 +406,9 @@ decoder_data(Decoder &decoder,
length == 0)
return cmd;
+ assert(!decoder.initial_seek_pending);
+ assert(!decoder.initial_seek_running);
+
/* send stream tags */
if (update_stream_tag(decoder, is)) {
diff --git a/src/DecoderInternal.cxx b/src/DecoderInternal.cxx
index d5f40ad48..b5e6c9d57 100644
--- a/src/DecoderInternal.cxx
+++ b/src/DecoderInternal.cxx
@@ -83,6 +83,9 @@ void
decoder_flush_chunk(Decoder &decoder)
{
DecoderControl &dc = decoder.dc;
+ assert(!decoder.seeking);
+ assert(!decoder.initial_seek_running);
+ assert(!decoder.initial_seek_pending);
assert(decoder.chunk != nullptr);