add musc to unixland, update readme

git-svn-id: https://vgmstream.svn.sourceforge.net/svnroot/vgmstream@328 51a99a44-fe44-0410-b1ba-c3e57ba2b86b
This commit is contained in:
halleyscometsw 2008-07-16 03:21:37 +00:00
parent 02a606eea3
commit a7b49acb9a
4 changed files with 12 additions and 2 deletions

View File

@ -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

View File

@ -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)

View File

@ -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

View File

@ -79,6 +79,7 @@ gchar *vgmstream_exts [] = {
"rwx",
"xwb",
"xa30",
"musc",
/* terminator */
NULL
};