dvi and bg00 fo runixland, clean up a few warnings, update readme

git-svn-id: https://vgmstream.svn.sourceforge.net/svnroot/vgmstream@337 51a99a44-fe44-0410-b1ba-c3e57ba2b86b
This commit is contained in:
halleyscometsw 2008-07-18 20:12:52 +00:00
parent cc1005925b
commit 8dbd3b160c
7 changed files with 13 additions and 5 deletions

View File

@ -122,6 +122,9 @@ File types supported by this version of vgmstream:
- .filp (PS2 ADPCM) - .filp (PS2 ADPCM)
- .ikm (PS2 ADPCM) - .ikm (PS2 ADPCM)
- .musx (PS2 ADPCM) - .musx (PS2 ADPCM)
- .sfs (PS2 ADPCM)
- .bg00 (PS2 ADPCM)
- .dvi (DVI IMA ADPCM)
Enjoy! Enjoy!
-hcs -hcs

View File

@ -88,7 +88,9 @@ META_OBJS=meta/adx_header.o \
meta/ps2_leg.o \ meta/ps2_leg.o \
meta/ps2_filp.o \ meta/ps2_filp.o \
meta/ps2_ikm.o \ meta/ps2_ikm.o \
meta/ps2_sfs.o meta/ps2_sfs.o \
meta/sat_dvi.o \
meta/ps2_bg00.o
OBJECTS=vgmstream.o streamfile.o util.o $(CODING_OBJS) $(LAYOUT_OBJS) $(META_OBJS) OBJECTS=vgmstream.o streamfile.o util.o $(CODING_OBJS) $(LAYOUT_OBJS) $(META_OBJS)

View File

@ -16,7 +16,7 @@ long EA_TABLE[20]= { 0x00000000, 0x000000F0, 0x000001CC, 0x00000188,
void decode_eaxa(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do,int channel) { void decode_eaxa(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do,int channel) {
uint8_t frame_info; uint8_t frame_info;
int32_t sample_count,sample_pcm_count=0; int32_t sample_count;
long coef1,coef2; long coef1,coef2;
int i,shift; int i,shift;
off_t channel_offset=stream->channel_start_offset; off_t channel_offset=stream->channel_start_offset;

View File

@ -4,6 +4,6 @@ AM_CFLAGS = -Wall @CFLAGS@ -I$(top_builddir) -I$(top_srcdir)
AM_MAKEFLAGS=-f Makefile.unix AM_MAKEFLAGS=-f Makefile.unix
libmeta_la_LDFLAGS = 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 musc.c ps2_leg.c ps2_filp.c ps2_ikm.c musx.c ps2_sfs.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 ps2_leg.c ps2_filp.c ps2_ikm.c musx.c ps2_sfs.c sat_dvi.c ps2_bg00.c
EXTRA_DIST = meta.h EXTRA_DIST = meta.h

View File

@ -8,7 +8,7 @@ VGMSTREAM * init_vgmstream_musx(STREAMFILE *streamFile) {
char filename[260]; char filename[260];
off_t start_offset; off_t start_offset;
int musx_version; /* 0x08 provides a "version" byte??? */ /*int musx_version;*/ /* 0x08 provides a "version" byte??? */
int musx_type; int musx_type;
int loop_flag = 0; int loop_flag = 0;
int channel_count; int channel_count;

View File

@ -84,6 +84,9 @@ gchar *vgmstream_exts [] = {
"filp", "filp",
"ikm", "ikm",
"musx", "musx",
"dvi",
"bg0",
"bg00",
/* terminator */ /* terminator */
NULL NULL
}; };