summaryrefslogtreecommitdiff
path: root/apps/metadata.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/metadata.h')
-rw-r--r--apps/metadata.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/metadata.h b/apps/metadata.h
index 3831062418..b99d4d09d6 100644
--- a/apps/metadata.h
+++ b/apps/metadata.h
@@ -255,6 +255,8 @@ struct mp3entry {
255 int index; /* playlist index */ 255 int index; /* playlist index */
256 256
257#ifdef HAVE_TAGCACHE 257#ifdef HAVE_TAGCACHE
258 unsigned char autoresumable; /* caches result of autoresumable() */
259
258 /* runtime database fields */ 260 /* runtime database fields */
259 long tagcache_idx; /* 0=invalid, otherwise idx+1 */ 261 long tagcache_idx; /* 0=invalid, otherwise idx+1 */
260 int rating; 262 int rating;
@@ -287,10 +289,15 @@ bool get_metadata(struct mp3entry* id3, int fd, const char* trackname);
287bool mp3info(struct mp3entry *entry, const char *filename); 289bool mp3info(struct mp3entry *entry, const char *filename);
288void adjust_mp3entry(struct mp3entry *entry, void *dest, const void *orig); 290void adjust_mp3entry(struct mp3entry *entry, void *dest, const void *orig);
289void copy_mp3entry(struct mp3entry *dest, const struct mp3entry *orig); 291void copy_mp3entry(struct mp3entry *dest, const struct mp3entry *orig);
292
290#if CONFIG_CODEC == SWCODEC 293#if CONFIG_CODEC == SWCODEC
291void strip_tags(int handle_id); 294void strip_tags(int handle_id);
292#endif 295#endif
293 296
297#ifdef HAVE_TAGCACHE
298bool autoresumable(struct mp3entry *id3);
299#endif
300
294#endif 301#endif
295 302
296 303