diff options
author | Christian Hesse <mail@eworm.de> | 2016-10-05 13:54:37 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2016-10-05 22:38:05 +0200 |
commit | da1bcb7a33d75a9f56012cbd7890e7af7c0dec6a (patch) | |
tree | 01931ec62d2b526cf4451503d06dccaf210167c9 /mpd-notification.h | |
parent | 854b9a8f8a78825dfe9a045588eccb7b47805f74 (diff) | |
download | mpd-notification-da1bcb7a33d75a9f56012cbd7890e7af7c0dec6a.tar.gz mpd-notification-da1bcb7a33d75a9f56012cbd7890e7af7c0dec6a.tar.zst |
do not handle image path, but always give pixbuf
Diffstat (limited to 'mpd-notification.h')
-rw-r--r-- | mpd-notification.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mpd-notification.h b/mpd-notification.h index 429f3ed..9fdd941 100644 --- a/mpd-notification.h +++ b/mpd-notification.h @@ -34,13 +34,13 @@ /*** received_signal ***/ void received_signal(int signal); -/*** retrieve_album_art ***/ +/*** retrieve_artwork_media ***/ #ifdef HAVE_LIBAV -GdkPixbuf * retrieve_album_art(const char * music_dir, const char * uri); +GdkPixbuf * retrieve_artwork_media(const char * music_dir, const char * uri); #endif -/*** get_icon ***/ -char * get_icon(const char * music_dir, const char * uri); +/*** retrieve_artwork_image ***/ +GdkPixbuf * retrieve_artwork_image(const char * music_dir, const char * uri); /*** append_string ***/ char * append_string(char * string, const char * format, const char delim, const char * s); |