summaryrefslogtreecommitdiff
path: root/lib/rbcodec/metadata/metadata_parsers.h
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2020-09-26 17:19:07 -0400
committerSolomon Peachy <pizza@shaftnet.org>2020-10-09 11:39:25 -0400
commit4231c2c83f2b5331e3e38b10a308ee3752315f9c (patch)
tree1e14867e9c9f0d7b778e7c4c18103a7cbd491794 /lib/rbcodec/metadata/metadata_parsers.h
parent278522f8118bd2cfce065ec95f0a93ca53e3ca44 (diff)
downloadrockbox-4231c2c83f2b5331e3e38b10a308ee3752315f9c.tar.gz
rockbox-4231c2c83f2b5331e3e38b10a308ee3752315f9c.zip
codecs: Add support for the 'VTX' ZX Spectrum chiptunes format.
This codec requires floating point. Original author: Peter Sovietov Ported to Rockbox: Roman Skylarov Further integration and bugfixes: Solomon Peachy Change-Id: I781ecd3592dfcdbbc694063334350342534f1d6c
Diffstat (limited to 'lib/rbcodec/metadata/metadata_parsers.h')
-rw-r--r--lib/rbcodec/metadata/metadata_parsers.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/rbcodec/metadata/metadata_parsers.h b/lib/rbcodec/metadata/metadata_parsers.h
index cc7d8a102e..6a4da51b63 100644
--- a/lib/rbcodec/metadata/metadata_parsers.h
+++ b/lib/rbcodec/metadata/metadata_parsers.h
@@ -49,6 +49,9 @@ bool get_vox_metadata(int fd, struct mp3entry* id3);
49bool get_wave64_metadata(int fd, struct mp3entry* id3); 49bool get_wave64_metadata(int fd, struct mp3entry* id3);
50bool get_tta_metadata(int fd, struct mp3entry* id3); 50bool get_tta_metadata(int fd, struct mp3entry* id3);
51bool get_ay_metadata(int fd, struct mp3entry* id3); 51bool get_ay_metadata(int fd, struct mp3entry* id3);
52#ifdef HAVE_FPU
53bool get_vtx_metadata(int fd, struct mp3entry* id3);
54#endif
52bool get_gbs_metadata(int fd, struct mp3entry* id3); 55bool get_gbs_metadata(int fd, struct mp3entry* id3);
53bool get_hes_metadata(int fd, struct mp3entry* id3); 56bool get_hes_metadata(int fd, struct mp3entry* id3);
54bool get_sgc_metadata(int fd, struct mp3entry* id3); 57bool get_sgc_metadata(int fd, struct mp3entry* id3);