Show Track Info: Support fs tags in Playlist Viewer, Properties, and PictureFlow

Playlist Viewer falls back to splashf if there is not
enough plugin buffer space left for running the
view_text plugin .

Change-Id: I418731018b03f396270b68e5e2d2e69635df1af0
This commit is contained in:
Christian Soffke 2024-11-09 23:17:09 +01:00
parent 4062a6aefc
commit 8f5128da16
11 changed files with 85 additions and 23 deletions

View file

@ -45,10 +45,12 @@ bool set_time_screen(const char* title, struct tm *tm, bool set_date);
#ifndef WARBLE
bool browse_id3_ex(struct mp3entry *id3, struct playlist_info *playlist,
int playlist_display_index, int playlist_amount,
struct tm *modified, int track_ct);
struct tm *modified, int track_ct,
int (*view_text)(const char *title, const char *text));
#endif
bool browse_id3(struct mp3entry *id3, int playlist_display_index, int playlist_amount,
struct tm *modified, int track_ct);
struct tm *modified, int track_ct,
int (*view_text)(const char *title, const char *text));
int view_runtime(void);
#ifdef HAVE_TOUCHSCREEN