From acb0917556fc33681c1df5a530cf754193e67705 Mon Sep 17 00:00:00 2001 From: Andree Buschmann Date: Sun, 7 Aug 2011 20:01:04 +0000 Subject: Submit initial patch from FS#12176. Adds support for several new game music formats (AY, GBS, HES, KSS, SGC, VGM and VGZ) and replaces the current NSF and NSFE with a new implementation based on a port of the Game Music Emu library 'GME'. This first submit does not cover the full functionality provided by the author's original patch: Coleco-SGV is not supported, some GME-specific m3u-support has been removed and IRAM is not used yet. Further changes are very likely to follow this submit. Thanks to Mauricio Garrido. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30264 a1c6a512-1295-4272-9138-f99709370657 --- apps/metadata/metadata_parsers.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'apps/metadata/metadata_parsers.h') diff --git a/apps/metadata/metadata_parsers.h b/apps/metadata/metadata_parsers.h index 7797b47094..adb7a82cd5 100644 --- a/apps/metadata/metadata_parsers.h +++ b/apps/metadata/metadata_parsers.h @@ -47,3 +47,9 @@ bool get_au_metadata(int fd, struct mp3entry* id3); bool get_vox_metadata(int fd, struct mp3entry* id3); bool get_wave64_metadata(int fd, struct mp3entry* id3); bool get_tta_metadata(int fd, struct mp3entry* id3); +bool get_ay_metadata(int fd, struct mp3entry* id3); +bool get_gbs_metadata(int fd, struct mp3entry* id3); +bool get_hes_metadata(int fd, struct mp3entry* id3); +bool get_sgc_metadata(int fd, struct mp3entry* id3); +bool get_vgm_metadata(int fd, struct mp3entry* id3); +bool get_kss_metadata(int fd, struct mp3entry* id3); -- cgit v1.2.3