summaryrefslogtreecommitdiff
path: root/apps/hosted/android/notification.c
diff options
context:
space:
mode:
authorAlexander Levin <al.le@rockbox.org>2011-12-22 18:48:43 +0000
committerAlexander Levin <al.le@rockbox.org>2011-12-22 18:48:43 +0000
commit63c4ef9f57fa6947f9244e087180d9d5781c1032 (patch)
tree6ca4feb33d1b0cd8a63b06f291fa3b5e24032ef5 /apps/hosted/android/notification.c
parent5b5871bd011095e11cc31a247dc9b2e104c79d79 (diff)
downloadrockbox-63c4ef9f57fa6947f9244e087180d9d5781c1032.tar.gz
rockbox-63c4ef9f57fa6947f9244e087180d9d5781c1032.zip
Rename 'mp3entry.embed_albumart' to 'mp3entry.has_embedded_albumart' (FS#12470). No functional changes.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31405 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/hosted/android/notification.c')
-rw-r--r--apps/hosted/android/notification.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/hosted/android/notification.c b/apps/hosted/android/notification.c
index 443200698c..2c814b06a6 100644
--- a/apps/hosted/android/notification.c
+++ b/apps/hosted/android/notification.c
@@ -68,7 +68,7 @@ static void track_changed_callback(void *param)
68 album = e->NewStringUTF(env_ptr, id3->album ?: ""); 68 album = e->NewStringUTF(env_ptr, id3->album ?: "");
69 69
70 albumart = NULL; 70 albumart = NULL;
71 if (id3->embed_albumart && id3->albumart.type == AA_TYPE_JPG) 71 if (id3->has_embedded_albumart && id3->albumart.type == AA_TYPE_JPG)
72 { /* extract albumart to a temporary file using mmap() */ 72 { /* extract albumart to a temporary file using mmap() */
73 snprintf(buf, sizeof(buf), "/sdcard/rockbox/.temp_albumart_%d.jpg", 73 snprintf(buf, sizeof(buf), "/sdcard/rockbox/.temp_albumart_%d.jpg",
74 thread_self()); 74 thread_self());