some ps2_svag fixes

git-svn-id: https://vgmstream.svn.sourceforge.net/svnroot/vgmstream@173 51a99a44-fe44-0410-b1ba-c3e57ba2b86b
This commit is contained in:
fastelbja 2008-05-19 11:15:01 +00:00
parent 55fad001df
commit 0b3739273f

View File

@ -32,12 +32,11 @@ VGMSTREAM * init_vgmstream_ps2_vag(const char * const filename) {
size_t interleave;
int loop_flag=0;
int channel_count;
int channel_count=1;
int i;
/* check extension, case insensitive */
if (strcasecmp("vag",filename_extension(filename)) &&
strcasecmp("svag",filename_extension(filename))) goto fail;
if (strcasecmp("vag",filename_extension(filename))) goto fail;
/* try to open the file for header reading */
infile = open_streamfile_buffer(filename,0x8000);
@ -58,12 +57,7 @@ VGMSTREAM * init_vgmstream_ps2_vag(const char * const filename) {
case 'V':
if(read_32bitBE(0x20,infile)==0x53746572) // vag Stereo
channel_count=2;
else
goto fail;
break;
case 'p':
channel_count=1;
/* Search for loop in VAG */
fileLength = get_streamfile_size(infile);