db/proxy: use mpd_song_get_{start,end}() only with libmpdclient >= 2.3

This commit is contained in:
Max Kellermann 2014-06-23 08:57:51 +02:00
parent 4f61ba766d
commit 4c8a5dfb05
2 changed files with 7 additions and 0 deletions

2
NEWS
View File

@ -1,4 +1,6 @@
ver 0.18.12 (not yet released) ver 0.18.12 (not yet released)
* database
- proxy: fix build failure with libmpdclient 2.2
ver 0.18.11 (2014/05/12) ver 0.18.11 (2014/05/12)
* decoder * decoder

View File

@ -398,8 +398,13 @@ Convert(const struct mpd_song *song)
Song *s = Song::NewDetached(mpd_song_get_uri(song)); Song *s = Song::NewDetached(mpd_song_get_uri(song));
s->mtime = mpd_song_get_last_modified(song); s->mtime = mpd_song_get_last_modified(song);
#if LIBMPDCLIENT_CHECK_VERSION(2,3,0)
s->start_ms = mpd_song_get_start(song) * 1000; s->start_ms = mpd_song_get_start(song) * 1000;
s->end_ms = mpd_song_get_end(song) * 1000; s->end_ms = mpd_song_get_end(song) * 1000;
#else
s->start_ms = s->end_ms = 0;
#endif
TagBuilder tag; TagBuilder tag;
tag.SetTime(mpd_song_get_duration(song)); tag.SetTime(mpd_song_get_duration(song));