diff options
author | Christian Hesse <mail@eworm.de> | 2015-07-09 14:21:51 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2015-07-09 14:21:51 +0200 |
commit | a9e365e1d6fab83f7557499e45b0e06291de0240 (patch) | |
tree | 575aa3258e923ded89d3ca44a91759b6ebc4b4a3 /mpd-notification.h | |
parent | 008f3c8c53760d3e5e12c55124e0aad2a805c79d (diff) | |
download | mpd-notification-a9e365e1d6fab83f7557499e45b0e06291de0240.tar.gz mpd-notification-a9e365e1d6fab83f7557499e45b0e06291de0240.tar.zst |
do not write artwork to file but handle pixbuf to libnotify
Diffstat (limited to 'mpd-notification.h')
-rw-r--r-- | mpd-notification.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mpd-notification.h b/mpd-notification.h index c0e3f0f..d03abf4 100644 --- a/mpd-notification.h +++ b/mpd-notification.h @@ -35,7 +35,9 @@ void received_signal(int signal); /*** retrieve_album_art ***/ -char * retrieve_album_art(const char *path); +#ifdef HAVE_LIBAV +GdkPixbuf * retrieve_album_art(const char * music_dir, const char * uri); +#endif /*** get_icon ***/ char * get_icon(const char * music_dir, const char * uri); |