diff options
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/test_codec.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/plugins/test_codec.c b/apps/plugins/test_codec.c index 4e67109..01166cc 100644 --- a/apps/plugins/test_codec.c +++ b/apps/plugins/test_codec.c @@ -94,7 +94,12 @@ static char str[MAX_PATH]; /* Our local implementation of the codec API */ static struct codec_api ci; -static struct track_info track; +struct test_track_info {
+ struct mp3entry id3; /* TAG metadata */
+ size_t filesize; /* File total length */
+};
+
+static struct test_track_info track; static bool taginfo_ready = true; static volatile unsigned int elapsed; |