summaryrefslogtreecommitdiff
path: root/apps/hosted
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2011-02-27 20:47:44 +0000
committerThomas Martitz <kugel@rockbox.org>2011-02-27 20:47:44 +0000
commit883ff8507e42f7fbba6416e60fb116164219aa5f (patch)
tree3708181c7a19309f02bb4b93d073745c119338a2 /apps/hosted
parent952d82b7bd20f1bef7f3c316ebeb71c0d1e6d20b (diff)
downloadrockbox-883ff8507e42f7fbba6416e60fb116164219aa5f.tar.gz
rockbox-883ff8507e42f7fbba6416e60fb116164219aa5f.zip
Android: Show cover art in the widget (including option to hide it).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29437 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/hosted')
-rw-r--r--apps/hosted/notification.c13
1 files changed, 11 insertions, 2 deletions
diff --git a/apps/hosted/notification.c b/apps/hosted/notification.c
index 339c92acd3..bde91b039f 100644
--- a/apps/hosted/notification.c
+++ b/apps/hosted/notification.c
@@ -24,6 +24,7 @@
24#include "notification.h" 24#include "notification.h"
25#include "appevents.h" 25#include "appevents.h"
26#include "metadata.h" 26#include "metadata.h"
27#include "albumart.h"
27#include "misc.h" 28#include "misc.h"
28#include "debug.h" 29#include "debug.h"
29 30
@@ -33,8 +34,10 @@ extern jobject RockboxService_instance;
33 34
34static jmethodID updateNotification, finishNotification; 35static jmethodID updateNotification, finishNotification;
35static jobject NotificationManager_instance; 36static jobject NotificationManager_instance;
36static jstring title, artist, album; 37static jstring title, artist, album, albumart;
37 38
39/* completely arbitrary dimensions. neded for find_albumart() */
40const struct dim dim = { .width = 200, .height = 200 };
38#define NZV(a) (a && a[0]) 41#define NZV(a) (a && a[0])
39 42
40/* 43/*
@@ -49,6 +52,7 @@ static void track_changed_callback(void *param)
49 e->DeleteLocalRef(env_ptr, title); 52 e->DeleteLocalRef(env_ptr, title);
50 e->DeleteLocalRef(env_ptr, artist); 53 e->DeleteLocalRef(env_ptr, artist);
51 e->DeleteLocalRef(env_ptr, album); 54 e->DeleteLocalRef(env_ptr, album);
55 e->DeleteLocalRef(env_ptr, albumart);
52 56
53 char buf[200]; 57 char buf[200];
54 const char * ptitle = id3->title; 58 const char * ptitle = id3->title;
@@ -62,8 +66,12 @@ static void track_changed_callback(void *param)
62 artist = e->NewStringUTF(env_ptr, id3->artist ?: ""); 66 artist = e->NewStringUTF(env_ptr, id3->artist ?: "");
63 album = e->NewStringUTF(env_ptr, id3->album ?: ""); 67 album = e->NewStringUTF(env_ptr, id3->album ?: "");
64 68
69 albumart = NULL;
70 if (find_albumart(id3, buf, sizeof(buf), &dim))
71 albumart = e->NewStringUTF(env_ptr, buf);
72
65 e->CallVoidMethod(env_ptr, NotificationManager_instance, 73 e->CallVoidMethod(env_ptr, NotificationManager_instance,
66 updateNotification, title, artist, album); 74 updateNotification, title, artist, album, albumart);
67 } 75 }
68} 76}
69 77
@@ -94,6 +102,7 @@ void notification_init(void)
94 updateNotification = e->GetMethodID(env_ptr, class, "updateNotification", 102 updateNotification = e->GetMethodID(env_ptr, class, "updateNotification",
95 "(Ljava/lang/String;" 103 "(Ljava/lang/String;"
96 "Ljava/lang/String;" 104 "Ljava/lang/String;"
105 "Ljava/lang/String;"
97 "Ljava/lang/String;)V"); 106 "Ljava/lang/String;)V");
98 finishNotification = e->GetMethodID(env_ptr, class, "finishNotification", 107 finishNotification = e->GetMethodID(env_ptr, class, "finishNotification",
99 "()V"); 108 "()V");