From e9b71a0d2846321dcf3f985b9f6332d051374edd Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 4 Jan 2013 21:38:46 +0100 Subject: MusicChunk: move functions to methods --- src/PlayerThread.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/PlayerThread.cxx') diff --git a/src/PlayerThread.cxx b/src/PlayerThread.cxx index a394b8445..624698f5c 100644 --- a/src/PlayerThread.cxx +++ b/src/PlayerThread.cxx @@ -686,7 +686,7 @@ play_chunk(struct player_control *pc, const struct audio_format *format, GError **error_r) { - assert(music_chunk_check_format(chunk, format)); + assert(chunk->CheckFormat(*format)); if (chunk->tag != NULL) update_song_tag(song, chunk->tag); @@ -766,7 +766,7 @@ play_next_chunk(struct player *player) chunk->mix_ratio = nan(""); } - if (music_chunk_is_empty(other_chunk)) { + if (other_chunk->IsEmpty()) { /* the "other" chunk was a music_chunk which had only a tag, but no music data - we cannot cross-fade that; -- cgit v1.2.3