fix warning, smack unix builds into shape

git-svn-id: https://vgmstream.svn.sourceforge.net/svnroot/vgmstream@610 51a99a44-fe44-0410-b1ba-c3e57ba2b86b
This commit is contained in:
halleyscometsw 2009-03-19 20:03:51 +00:00
parent ed429e9317
commit 1babc6c3b6
4 changed files with 8 additions and 3 deletions

View File

@ -41,7 +41,8 @@ LAYOUT_OBJS=layout/ast_blocked.o \
layout/thp_blocked.o \
layout/gsb_blocked.o \
layout/filp_blocked.o \
layout/aax_layout.o
layout/aax_layout.o \
layout/ivaud_layout.o
META_OBJS=meta/adx_header.o \
meta/afc_header.o \
@ -187,7 +188,9 @@ META_OBJS=meta/adx_header.o \
meta/wii_str.o \
meta/zsd.o \
meta/ps2_mcg.o \
meta/redspark.o
meta/redspark.o \
meta/ps2_vgs.o \
meta/ivaud.o
OBJECTS=vgmstream.o streamfile.o util.o $(CODING_OBJS) $(LAYOUT_OBJS) $(META_OBJS)

View File

@ -3,7 +3,7 @@
/* set up for the block at the given offset */
void ivaud_block_update(off_t block_offset, VGMSTREAM * vgmstream) {
int i,j;
int i;
off_t start_offset;
off_t interleave_size;
int32_t nextFrame=0;

View File

@ -149,5 +149,6 @@ libmeta_la_SOURCES += zsd.c
libmeta_la_SOURCES += ps2_mcg.c
libmeta_la_SOURCES += redspark.c
libmeta_la_SOURCES += ivaud.c
libmeta_la_SOURCES += ps2_vgs.c
EXTRA_DIST = meta.h

View File

@ -167,6 +167,7 @@ gchar *vgmstream_exts [] = {
"rrds",
"tk5",
"zsd",
"ivaud",
/* terminator */
NULL
};