tagcache, coverity cleanup, Add TAGS_ALL_COUNT

Change-Id: Ia880c921a00b603aa4ba81b0c0670ed00491e41a
This commit is contained in:
William Wilgus 2022-02-27 11:01:24 -05:00
parent 6b360d8b04
commit 1bcb1e39ee
2 changed files with 7 additions and 5 deletions

View file

@ -38,9 +38,11 @@ enum tag_type { tag_artist = 0, tag_album, tag_genre, tag_title,
/* Real tags end here, count them. */
TAG_COUNT,
/* Virtual tags */
tag_virt_basename, tag_virt_length_min, tag_virt_length_sec,
tag_virt_basename=TAG_COUNT,
tag_virt_length_min, tag_virt_length_sec,
tag_virt_playtime_min, tag_virt_playtime_sec,
tag_virt_entryage, tag_virt_autoscore };
tag_virt_entryage, tag_virt_autoscore,
TAG_COUNT_ALL};
/* Maximum length of a single tag. */
#define TAG_MAXLEN (MAX_PATH*2)