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 d5fa2af353
commit b9eeb6e6eb

View File

@ -187,8 +187,13 @@ ProxySong::ProxySong(const mpd_song *song)
real_uri = nullptr;
tag = &tag2;
mtime = mpd_song_get_last_modified(song);
#if LIBMPDCLIENT_CHECK_VERSION(2,3,0)
start_ms = mpd_song_get_start(song) * 1000;
end_ms = mpd_song_get_end(song) * 1000;
#else
start_ms = end_ms = 0;
#endif
TagBuilder tag_builder;
tag_builder.SetTime(mpd_song_get_duration(song));