summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
authorJames D. Smith <smithjd15@gmail.com>2021-09-15 20:27:31 -0600
committerJames D. Smith <smithjd15@gmail.com>2021-09-15 21:56:50 -0600
commit7882e093b23f186f089abb91c245787cc2e04a62 (patch)
treeeb74af454e23fe332d531e985e08db49aa701dc3 /apps/plugins
parent67c4231e34cd8147963a054c44a715f3413fb2e3 (diff)
downloadrockbox-7882e093b23f186f089abb91c245787cc2e04a62.tar.gz
rockbox-7882e093b23f186f089abb91c245787cc2e04a62.zip
File properties plugin: Add album artist.
Change-Id: I150e11ba309953959d374898a63d4250a90651bb
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/properties.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/plugins/properties.c b/apps/plugins/properties.c
index 0fa83c0b56..5e2ab5101c 100644
--- a/apps/plugins/properties.c
+++ b/apps/plugins/properties.c
@@ -34,6 +34,7 @@ char str_time[64];
34 34
35char str_title[MAX_PATH]; 35char str_title[MAX_PATH];
36char str_artist[MAX_PATH]; 36char str_artist[MAX_PATH];
37char str_albumartist[MAX_PATH];
37char str_album[MAX_PATH]; 38char str_album[MAX_PATH];
38char str_duration[32]; 39char str_duration[32];
39 40
@@ -52,6 +53,7 @@ static const unsigned char* const props_file[] =
52 ID2P(LANG_PROPERTIES_DATE), str_date, 53 ID2P(LANG_PROPERTIES_DATE), str_date,
53 ID2P(LANG_PROPERTIES_TIME), str_time, 54 ID2P(LANG_PROPERTIES_TIME), str_time,
54 ID2P(LANG_PROPERTIES_ARTIST), str_artist, 55 ID2P(LANG_PROPERTIES_ARTIST), str_artist,
56 ID2P(LANG_PROPERTIES_ALBUMARTIST), str_albumartist,
55 ID2P(LANG_PROPERTIES_TITLE), str_title, 57 ID2P(LANG_PROPERTIES_TITLE), str_title,
56 ID2P(LANG_PROPERTIES_ALBUM), str_album, 58 ID2P(LANG_PROPERTIES_ALBUM), str_album,
57 ID2P(LANG_PROPERTIES_DURATION), str_duration, 59 ID2P(LANG_PROPERTIES_DURATION), str_duration,
@@ -119,11 +121,13 @@ static bool file_properties(const char* selected_file)
119 long dur = id3.length / 1000; /* seconds */ 121 long dur = id3.length / 1000; /* seconds */
120 rb->snprintf(str_artist, sizeof str_artist, 122 rb->snprintf(str_artist, sizeof str_artist,
121 "%s", id3.artist ? id3.artist : ""); 123 "%s", id3.artist ? id3.artist : "");
124 rb->snprintf(str_albumartist, sizeof str_albumartist,
125 "%s", id3.albumartist ? id3.albumartist : "");
122 rb->snprintf(str_title, sizeof str_title, 126 rb->snprintf(str_title, sizeof str_title,
123 "%s", id3.title ? id3.title : ""); 127 "%s", id3.title ? id3.title : "");
124 rb->snprintf(str_album, sizeof str_album, 128 rb->snprintf(str_album, sizeof str_album,
125 "%s", id3.album ? id3.album : ""); 129 "%s", id3.album ? id3.album : "");
126 num_properties += 3; 130 num_properties += 4;
127 131
128 if (dur > 0) 132 if (dur > 0)
129 { 133 {