diff options
| author | Alexander Levin <al.le@rockbox.org> | 2009-05-28 20:05:31 +0000 |
|---|---|---|
| committer | Alexander Levin <al.le@rockbox.org> | 2009-05-28 20:05:31 +0000 |
| commit | a484054d5534c764f5512ccfdb53b518465f4ce3 (patch) | |
| tree | f5c61ac8337e25a79cca54fb8aba6155ad4cedcd /apps | |
| parent | 96165abec2da60c466659fa0e68e06d97587d51a (diff) | |
| download | rockbox-a484054d5534c764f5512ccfdb53b518465f4ce3.zip rockbox-a484054d5534c764f5512ccfdb53b518465f4ce3.tar.gz rockbox-a484054d5534c764f5512ccfdb53b518465f4ce3.tar.bz2 rockbox-a484054d5534c764f5512ccfdb53b518465f4ce3.tar.xz | |
Describe the magic of search_albumart_files (still not complete)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21120 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/recorder/albumart.c | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/apps/recorder/albumart.c b/apps/recorder/albumart.c index d0026b6..e33fcb8 100644 --- a/apps/recorder/albumart.c +++ b/apps/recorder/albumart.c @@ -120,16 +120,20 @@ static bool try_exts(char *path, int len) #endif /* Look for the first matching album art bitmap in the following list: - * ./<trackname><size>.bmp - * ./<albumname><size>.bmp + * ./<trackname><size>.{jpeg,jpg,bmp} + * ./<albumname><size>.{jpeg,jpg,bmp} * ./cover<size>.bmp - * ../<albumname><size>.bmp - * ../cover<size>.bmp - * ROCKBOX_DIR/albumart/<artist>-<albumname><size>.bmp + * ../<albumname><size>.{jpeg,jpg,bmp} + * ../cover<size>.{jpeg,jpg,bmp} + * ROCKBOX_DIR/albumart/<artist>-<albumname><size>.{jpeg,jpg,bmp} * <size> is the value of the size_string parameter, <trackname> and * <albumname> are read from the ID3 metadata. * If a matching bitmap is found, its filename is stored in buf. * Return value is true if a bitmap was found, false otherwise. + * + * If the first symbol in size_string is a colon (e.g. ":100x100") + * then the colon is skipped ("100x100" will be used) and the track + * specific image (./<trackname><size>.bmp) is not tried. */ bool search_albumart_files(const struct mp3entry *id3, const char *size_string, char *buf, int buflen) |