From a7b49acb9afff031d297bb18eaadbd3ffcde1cec Mon Sep 17 00:00:00 2001 From: halleyscometsw Date: Wed, 16 Jul 2008 03:21:37 +0000 Subject: [PATCH] add musc to unixland, update readme git-svn-id: https://vgmstream.svn.sourceforge.net/svnroot/vgmstream@328 51a99a44-fe44-0410-b1ba-c3e57ba2b86b --- readme.txt | 8 ++++++++ src/Makefile | 3 ++- src/meta/Makefile.unix.am | 2 +- unix/data.c | 1 + 4 files changed, 12 insertions(+), 2 deletions(-) diff --git a/readme.txt b/readme.txt index 35ff375f..b75edb83 100644 --- a/readme.txt +++ b/readme.txt @@ -110,6 +110,14 @@ File types supported by this version of vgmstream: - .hgc1 (PS2 ADPCM) - .aus (PS2 ADPCM) - .rws (PS2 ADPCM) +- .fsb (PS2 ADPCM, Wii DSP ADPCM, Xbox IMA ADPCM) +- .rsd (PS2 ADPCM, 16 bit PCM) +- .rwx (16 bit PCM) +- .xwb (16 bit PCM) +- .asf, .as4 (8/16 bit PCM, EACS IMA ADPCM) +- .cnk (PS2 ADPCM) +- .xa30 (PS2 ADPCM) +- .musc (PS2 ADPCM) Enjoy! -hcs diff --git a/src/Makefile b/src/Makefile index e40ac6ba..3010f79d 100644 --- a/src/Makefile +++ b/src/Makefile @@ -82,7 +82,8 @@ META_OBJS=meta/adx_header.o \ meta/rwx.o \ meta/xwb.o \ meta/ea_old.o \ - meta/ps2_xa30.o + meta/ps2_xa30.o \ + meta/musc.o OBJECTS=vgmstream.o streamfile.o util.o $(CODING_OBJS) $(LAYOUT_OBJS) $(META_OBJS) diff --git a/src/meta/Makefile.unix.am b/src/meta/Makefile.unix.am index 7c5d6e71..efc9aeb4 100644 --- a/src/meta/Makefile.unix.am +++ b/src/meta/Makefile.unix.am @@ -4,6 +4,6 @@ AM_CFLAGS = -Wall @CFLAGS@ -I$(top_builddir) -I$(top_srcdir) AM_MAKEFLAGS=-f Makefile.unix libmeta_la_LDFLAGS = -libmeta_la_SOURCES = Cstr.c adx_header.c afc_header.c agsc.c ast.c brstm.c ea_header.c gcsw.c halpst.c nds_strm.c ngc_adpdtk.c ngc_caf.c ngc_dsp_std.c ps2_ads.c ps2_exst.c ps2_ild.c ps2_int.c ps2_mib.c ps2_mic.c ps2_npsf.c ps2_pnb.c ps2_rxw.c ps2_str.c ps2_svag.c ps2_vag.c ps2_vpk.c psx_cdxa.c raw.c rs03.c rsf.c rwsd.c psx_gms.c xbox_xwav.c xbox_wavm.c genh.c ogg_vorbis_file.c ps2_bmdx.c aifc.c str_snds.c ws_aud.c ahx.c ivb.c svs.c riff.c pos.c nwa.c ps2_rws.c ps2_hgc1.c xss.c ps2_sl3.c ps2_aus.c fsb.c rsd.c rwx.c xwb.c ea_old.c ps2_xa30.c +libmeta_la_SOURCES = Cstr.c adx_header.c afc_header.c agsc.c ast.c brstm.c ea_header.c gcsw.c halpst.c nds_strm.c ngc_adpdtk.c ngc_caf.c ngc_dsp_std.c ps2_ads.c ps2_exst.c ps2_ild.c ps2_int.c ps2_mib.c ps2_mic.c ps2_npsf.c ps2_pnb.c ps2_rxw.c ps2_str.c ps2_svag.c ps2_vag.c ps2_vpk.c psx_cdxa.c raw.c rs03.c rsf.c rwsd.c psx_gms.c xbox_xwav.c xbox_wavm.c genh.c ogg_vorbis_file.c ps2_bmdx.c aifc.c str_snds.c ws_aud.c ahx.c ivb.c svs.c riff.c pos.c nwa.c ps2_rws.c ps2_hgc1.c xss.c ps2_sl3.c ps2_aus.c fsb.c rsd.c rwx.c xwb.c ea_old.c ps2_xa30.c musc.c EXTRA_DIST = meta.h diff --git a/unix/data.c b/unix/data.c index c9301a52..42a780db 100644 --- a/unix/data.c +++ b/unix/data.c @@ -79,6 +79,7 @@ gchar *vgmstream_exts [] = { "rwx", "xwb", "xa30", + "musc", /* terminator */ NULL };