diff options
author | Max Kellermann <max@duempel.org> | 2010-11-07 15:30:18 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2010-11-07 15:30:18 +0100 |
commit | 4478b3ef741eecf7ed0cf94179986c6f86a57287 (patch) | |
tree | b10d931fa854e12d813ec796e16a45ae7af930e3 /src/output_all.c | |
parent | 5a263206803556a600a75dd5e1813feb510af268 (diff) | |
parent | dec7090198a0bbdd91ab8c531b84624f8bde4da9 (diff) | |
download | mpd-4478b3ef741eecf7ed0cf94179986c6f86a57287.tar.gz mpd-4478b3ef741eecf7ed0cf94179986c6f86a57287.tar.xz mpd-4478b3ef741eecf7ed0cf94179986c6f86a57287.zip |
Merge release 0.15.14 from branch 'v0.15.x'
Conflicts:
NEWS
configure.ac
src/decoder_control.c
src/decoder_control.h
src/input/rewind_input_plugin.c
src/output_control.c
src/output_thread.c
src/player_thread.c
Diffstat (limited to 'src/output_all.c')
-rw-r--r-- | src/output_all.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/output_all.c b/src/output_all.c index 5b066ba26..19c0f0166 100644 --- a/src/output_all.c +++ b/src/output_all.c @@ -323,7 +323,7 @@ audio_output_all_open(const struct audio_format *audio_format, else /* if the pipe hasn't been cleared, the the audio format must not have changed */ - assert(music_pipe_size(g_mp) == 0 || + assert(music_pipe_empty(g_mp) || audio_format_equals(audio_format, &input_audio_format)); @@ -436,7 +436,7 @@ audio_output_all_check(void) assert(g_mp != NULL); while ((chunk = music_pipe_peek(g_mp)) != NULL) { - assert(music_pipe_size(g_mp) > 0); + assert(!music_pipe_empty(g_mp)); if (!chunk_is_consumed(chunk)) /* at least one output is not finished playing |