mirror of
https://github.com/vgmstream/vgmstream.git
synced 2025-01-18 07:44:43 +01:00
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:
parent
cc1005925b
commit
8dbd3b160c
@ -122,6 +122,9 @@ File types supported by this version of vgmstream:
|
||||
- .filp (PS2 ADPCM)
|
||||
- .ikm (PS2 ADPCM)
|
||||
- .musx (PS2 ADPCM)
|
||||
- .sfs (PS2 ADPCM)
|
||||
- .bg00 (PS2 ADPCM)
|
||||
- .dvi (DVI IMA ADPCM)
|
||||
|
||||
Enjoy!
|
||||
-hcs
|
||||
|
@ -88,7 +88,9 @@ META_OBJS=meta/adx_header.o \
|
||||
meta/ps2_leg.o \
|
||||
meta/ps2_filp.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)
|
||||
|
||||
|
@ -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) {
|
||||
uint8_t frame_info;
|
||||
int32_t sample_count,sample_pcm_count=0;
|
||||
int32_t sample_count;
|
||||
long coef1,coef2;
|
||||
int i,shift;
|
||||
off_t channel_offset=stream->channel_start_offset;
|
||||
|
@ -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 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
|
||||
|
@ -8,7 +8,7 @@ VGMSTREAM * init_vgmstream_musx(STREAMFILE *streamFile) {
|
||||
char filename[260];
|
||||
off_t start_offset;
|
||||
|
||||
int musx_version; /* 0x08 provides a "version" byte??? */
|
||||
/*int musx_version;*/ /* 0x08 provides a "version" byte??? */
|
||||
int musx_type;
|
||||
int loop_flag = 0;
|
||||
int channel_count;
|
||||
|
@ -70,4 +70,4 @@ VGMSTREAM * init_vgmstream_dvi(STREAMFILE *streamFile) {
|
||||
fail:
|
||||
if (vgmstream) close_vgmstream(vgmstream);
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
|
@ -84,6 +84,9 @@ gchar *vgmstream_exts [] = {
|
||||
"filp",
|
||||
"ikm",
|
||||
"musx",
|
||||
"dvi",
|
||||
"bg0",
|
||||
"bg00",
|
||||
/* terminator */
|
||||
NULL
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user