mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
Database: Fix tag_albumartist; new tag_virt_canonicalartist.
Change-Id: I1d887f8a9d6690b8286407d2502432b0497cfeb9
This commit is contained in:
parent
cb0f4599e1
commit
fcb9c06852
3 changed files with 26 additions and 20 deletions
|
@ -31,10 +31,10 @@
|
|||
tagcache.c and bump up the header version too.
|
||||
*/
|
||||
enum tag_type { tag_artist = 0, tag_album, tag_genre, tag_title,
|
||||
tag_filename, tag_composer, tag_comment, tag_albumartist, tag_grouping, tag_year,
|
||||
tag_discnumber, tag_tracknumber, tag_bitrate, tag_length, tag_playcount, tag_rating,
|
||||
tag_playtime, tag_lastplayed, tag_commitid, tag_mtime, tag_lastelapsed,
|
||||
tag_lastoffset,
|
||||
tag_filename, tag_composer, tag_comment, tag_albumartist, tag_grouping, tag_year,
|
||||
tag_discnumber, tag_tracknumber, tag_virt_canonicalartist, tag_bitrate, tag_length,
|
||||
tag_playcount, tag_rating, tag_playtime, tag_lastplayed, tag_commitid, tag_mtime,
|
||||
tag_lastelapsed, tag_lastoffset,
|
||||
/* Real tags end here, count them. */
|
||||
TAG_COUNT,
|
||||
/* Virtual tags */
|
||||
|
@ -52,7 +52,7 @@ enum tag_type { tag_artist = 0, tag_album, tag_genre, tag_title,
|
|||
#define IDX_BUF_DEPTH 64
|
||||
|
||||
/* Tag Cache Header version 'TCHxx'. Increment when changing internal structures. */
|
||||
#define TAGCACHE_MAGIC 0x5443480f
|
||||
#define TAGCACHE_MAGIC 0x54434810
|
||||
|
||||
/* Dump store/restore header version 'TCSxx'. */
|
||||
#define TAGCACHE_STATEFILE_MAGIC 0x54435301
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue