summaryrefslogtreecommitdiff
path: root/apps/plugins/test_codec.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/test_codec.c')
-rw-r--r--apps/plugins/test_codec.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/plugins/test_codec.c b/apps/plugins/test_codec.c
index 4e671094c8..01166cc025 100644
--- a/apps/plugins/test_codec.c
+++ b/apps/plugins/test_codec.c
@@ -94,7 +94,12 @@ static char str[MAX_PATH];
94/* Our local implementation of the codec API */ 94/* Our local implementation of the codec API */
95static struct codec_api ci; 95static struct codec_api ci;
96 96
97static struct track_info track; 97struct test_track_info {
98 struct mp3entry id3; /* TAG metadata */
99 size_t filesize; /* File total length */
100};
101
102static struct test_track_info track;
98static bool taginfo_ready = true; 103static bool taginfo_ready = true;
99 104
100static volatile unsigned int elapsed; 105static volatile unsigned int elapsed;