2008-12-18 20:04:35 +01:00
|
|
|
#include "meta.h"
|
|
|
|
#include "../util.h"
|
2010-01-10 18:29:19 +01:00
|
|
|
|
|
|
|
/* XWB - XACT Wave Bank (Main format on the XBOX console) */
|
|
|
|
|
2008-12-18 20:04:35 +01:00
|
|
|
VGMSTREAM * init_vgmstream_xwb(STREAMFILE *streamFile) {
|
|
|
|
VGMSTREAM * vgmstream = NULL;
|
2013-05-27 05:55:50 +02:00
|
|
|
char filename[PATH_LIMIT];
|
2008-12-18 20:04:35 +01:00
|
|
|
off_t start_offset;
|
|
|
|
int loop_flag = 0;
|
|
|
|
int channel_count;
|
|
|
|
int coding;
|
|
|
|
int coding_flag;
|
|
|
|
int num_samples;
|
2010-01-10 18:29:19 +01:00
|
|
|
int header_start;
|
2008-12-18 20:04:35 +01:00
|
|
|
|
|
|
|
/* check extension, case insensitive */
|
|
|
|
streamFile->get_name(streamFile,filename,sizeof(filename));
|
|
|
|
if (strcasecmp("xwb",filename_extension(filename))) goto fail;
|
|
|
|
|
2010-01-10 18:29:19 +01:00
|
|
|
|
2008-12-18 20:04:35 +01:00
|
|
|
/* check header */
|
2010-01-10 18:29:19 +01:00
|
|
|
if ((read_32bitBE(0x00,streamFile) != 0x57424E44) && /* WBND */
|
|
|
|
(read_32bitBE(0x00,streamFile) != 0x444E4257)) /* DNBW */
|
|
|
|
goto fail;
|
2008-12-18 20:04:35 +01:00
|
|
|
/* check if the file is been used as container */
|
|
|
|
if (read_32bitBE(0x2C,streamFile) != 0x01000000)
|
|
|
|
goto fail;
|
2010-01-10 18:29:19 +01:00
|
|
|
|
|
|
|
header_start = read_32bitLE(0x10,streamFile);
|
|
|
|
loop_flag = (read_32bitLE(header_start+0x10,streamFile) != 0x0);
|
2008-12-18 20:04:35 +01:00
|
|
|
channel_count = 2;
|
|
|
|
|
|
|
|
/* build the VGMSTREAM */
|
|
|
|
vgmstream = allocate_vgmstream(channel_count,loop_flag);
|
|
|
|
if (!vgmstream) goto fail;
|
|
|
|
|
|
|
|
/* fill in the vital statistics */
|
|
|
|
start_offset = read_32bitLE(0x20,streamFile);
|
|
|
|
vgmstream->channels = channel_count;
|
2010-01-10 18:29:19 +01:00
|
|
|
vgmstream->sample_rate = (((uint32_t)read_32bitLE(header_start+0x4, streamFile)) << 8 >> 12) / 2;
|
2008-12-18 20:04:35 +01:00
|
|
|
|
2010-01-10 18:29:19 +01:00
|
|
|
coding_flag = (uint16_t)(read_16bitLE(header_start+0x2,streamFile));
|
2008-12-18 20:04:35 +01:00
|
|
|
switch (coding_flag) {
|
|
|
|
case 0:
|
|
|
|
coding = coding_PCM16LE;
|
|
|
|
vgmstream->layout_type = layout_interleave;
|
|
|
|
vgmstream->interleave_block_size = 0x2;
|
2010-01-10 18:29:19 +01:00
|
|
|
num_samples = read_32bitLE(header_start+0xC,streamFile)/2/channel_count;
|
2008-12-18 20:04:35 +01:00
|
|
|
if (loop_flag) {
|
2010-01-10 18:29:19 +01:00
|
|
|
vgmstream->loop_start_sample = read_32bitLE(header_start+10,streamFile)/2/channel_count;
|
|
|
|
vgmstream->loop_end_sample = read_32bitLE(header_start+0xC,streamFile)/2/channel_count;
|
2008-12-18 20:04:35 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
coding = coding_XBOX;
|
|
|
|
vgmstream->layout_type = layout_none;
|
2010-01-10 18:29:19 +01:00
|
|
|
num_samples = read_32bitLE(header_start+0xC,streamFile)/36/channel_count*64;
|
2008-12-18 20:04:35 +01:00
|
|
|
if (loop_flag) {
|
2010-01-10 18:29:19 +01:00
|
|
|
vgmstream->loop_start_sample = read_32bitLE(header_start+0x10,streamFile)/36/channel_count*64;
|
|
|
|
vgmstream->loop_end_sample = read_32bitLE(header_start+0xC,streamFile)/36/channel_count*64;
|
2008-12-18 20:04:35 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
vgmstream->coding_type = coding;
|
|
|
|
vgmstream->num_samples = num_samples;
|
|
|
|
vgmstream->meta_type = meta_XWB;
|
|
|
|
|
|
|
|
/* open the file for reading */
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
STREAMFILE * file;
|
|
|
|
file = streamFile->open(streamFile,filename,STREAMFILE_DEFAULT_BUFFER_SIZE);
|
|
|
|
if (!file) goto fail;
|
|
|
|
for (i=0;i<channel_count;i++) {
|
|
|
|
vgmstream->ch[i].streamfile = file;
|
|
|
|
|
|
|
|
|
|
|
|
if (vgmstream->coding_type == coding_XBOX) {
|
|
|
|
/* xbox interleaving is a little odd */
|
|
|
|
vgmstream->ch[i].channel_start_offset=start_offset;
|
|
|
|
} else {
|
|
|
|
vgmstream->ch[i].channel_start_offset=
|
|
|
|
start_offset+vgmstream->interleave_block_size*i;
|
|
|
|
}
|
|
|
|
vgmstream->ch[i].offset = vgmstream->ch[i].channel_start_offset;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return vgmstream;
|
|
|
|
|
|
|
|
/* clean up anything we may have opened */
|
|
|
|
fail:
|
|
|
|
if (vgmstream) close_vgmstream(vgmstream);
|
|
|
|
return NULL;
|
|
|
|
}
|
2009-03-12 16:28:59 +01:00
|
|
|
|
|
|
|
|
|
|
|
VGMSTREAM * init_vgmstream_xwb2(STREAMFILE *streamFile) {
|
|
|
|
VGMSTREAM * vgmstream = NULL;
|
2013-05-27 05:55:50 +02:00
|
|
|
char filename[PATH_LIMIT];
|
2009-03-12 16:28:59 +01:00
|
|
|
off_t start_offset;
|
|
|
|
|
|
|
|
int loop_flag = 0;
|
|
|
|
int channel_count;
|
|
|
|
|
|
|
|
/* check extension, case insensitive */
|
|
|
|
streamFile->get_name(streamFile,filename,sizeof(filename));
|
|
|
|
if (strcasecmp("xwb",filename_extension(filename))) goto fail;
|
|
|
|
|
|
|
|
/* check extension, case insensitive */
|
|
|
|
streamFile->get_name(streamFile,filename,sizeof(filename));
|
|
|
|
if (strcasecmp("xwb",filename_extension(filename))) goto fail;
|
|
|
|
|
|
|
|
/* check header */
|
|
|
|
if (read_32bitBE(0x00,streamFile) != 0x444E4257) /* WBND */
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
loop_flag = (read_32bitBE(0xA4,streamFile)!=0);
|
|
|
|
channel_count = 2;
|
|
|
|
|
|
|
|
/* build the VGMSTREAM */
|
|
|
|
vgmstream = allocate_vgmstream(channel_count,loop_flag);
|
|
|
|
if (!vgmstream) goto fail;
|
|
|
|
|
|
|
|
/* fill in the vital statistics */
|
|
|
|
start_offset = 0x800;
|
|
|
|
vgmstream->channels = channel_count;
|
|
|
|
vgmstream->sample_rate = 44100;
|
|
|
|
vgmstream->coding_type = coding_PCM16BE;
|
|
|
|
vgmstream->num_samples = read_32bitBE(0xA0,streamFile)/2/channel_count;
|
|
|
|
if (loop_flag) {
|
|
|
|
vgmstream->loop_start_sample = read_32bitBE(0xA4,streamFile);
|
|
|
|
vgmstream->loop_end_sample = read_32bitBE(0xA0,streamFile)/2/channel_count;
|
|
|
|
}
|
|
|
|
|
|
|
|
vgmstream->layout_type = layout_interleave;
|
|
|
|
vgmstream->interleave_block_size = 0x02;
|
|
|
|
vgmstream->meta_type = meta_XWB;
|
|
|
|
|
|
|
|
/* open the file for reading */
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
STREAMFILE * file;
|
|
|
|
file = streamFile->open(streamFile,filename,STREAMFILE_DEFAULT_BUFFER_SIZE);
|
|
|
|
if (!file) goto fail;
|
|
|
|
for (i=0;i<channel_count;i++) {
|
|
|
|
vgmstream->ch[i].streamfile = file;
|
|
|
|
|
|
|
|
vgmstream->ch[i].channel_start_offset=
|
|
|
|
vgmstream->ch[i].offset=start_offset+
|
|
|
|
vgmstream->interleave_block_size*i;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return vgmstream;
|
|
|
|
|
|
|
|
/* clean up anything we may have opened */
|
|
|
|
fail:
|
|
|
|
if (vgmstream) close_vgmstream(vgmstream);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|