2008-05-06 05:35:37 +02:00
|
|
|
#include "meta.h"
|
2008-02-04 16:20:20 +01:00
|
|
|
#include "../util.h"
|
|
|
|
|
2008-05-20 17:18:38 +02:00
|
|
|
VGMSTREAM * init_vgmstream_brstm(STREAMFILE *streamFile) {
|
2008-02-04 16:20:20 +01:00
|
|
|
VGMSTREAM * vgmstream = NULL;
|
2008-05-20 17:18:38 +02:00
|
|
|
char filename[260];
|
2008-02-04 16:20:20 +01:00
|
|
|
|
|
|
|
coding_t coding_type;
|
|
|
|
|
|
|
|
off_t head_offset;
|
|
|
|
size_t head_length;
|
|
|
|
int codec_number;
|
|
|
|
int channel_count;
|
|
|
|
int loop_flag;
|
2008-05-17 01:14:47 +02:00
|
|
|
/* Certain Super Paper Mario tracks have a 44.1KHz sample rate in the
|
|
|
|
* header, but they should be played at 22.05KHz. We will make this
|
|
|
|
* correction if we see a file with a .brstmspm extension. */
|
|
|
|
int spm_flag = 0;
|
2008-02-04 16:20:20 +01:00
|
|
|
|
|
|
|
off_t start_offset;
|
|
|
|
|
|
|
|
/* check extension, case insensitive */
|
2008-05-20 17:18:38 +02:00
|
|
|
streamFile->get_name(streamFile,filename,sizeof(filename));
|
2008-05-17 01:14:47 +02:00
|
|
|
if (strcasecmp("brstm",filename_extension(filename))) {
|
|
|
|
if (strcasecmp("brstmspm",filename_extension(filename))) goto fail;
|
|
|
|
else spm_flag = 1;
|
|
|
|
}
|
2008-02-04 16:20:20 +01:00
|
|
|
|
|
|
|
/* check header */
|
2008-05-20 17:18:38 +02:00
|
|
|
if ((uint32_t)read_32bitBE(0,streamFile)!=0x5253544D || /* "RSTM" */
|
|
|
|
(uint32_t)read_32bitBE(4,streamFile)!=0xFEFF0100)
|
2008-02-04 16:20:20 +01:00
|
|
|
goto fail;
|
|
|
|
|
|
|
|
/* get head offset, check */
|
2008-05-20 17:18:38 +02:00
|
|
|
head_offset = read_32bitBE(0x10,streamFile);
|
|
|
|
if ((uint32_t)read_32bitBE(head_offset,streamFile)!=0x48454144) /* "HEAD" */
|
2008-02-04 16:20:20 +01:00
|
|
|
goto fail;
|
2008-05-20 17:18:38 +02:00
|
|
|
head_length = read_32bitBE(0x14,streamFile);
|
2008-02-04 16:20:20 +01:00
|
|
|
|
|
|
|
/* check type details */
|
2008-05-20 17:18:38 +02:00
|
|
|
codec_number = read_8bit(head_offset+0x20,streamFile);
|
|
|
|
loop_flag = read_8bit(head_offset+0x21,streamFile);
|
|
|
|
channel_count = read_8bit(head_offset+0x22,streamFile);
|
2008-02-04 16:20:20 +01:00
|
|
|
|
|
|
|
switch (codec_number) {
|
|
|
|
case 0:
|
|
|
|
coding_type = coding_PCM8;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
coding_type = coding_PCM16BE;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
coding_type = coding_NGC_DSP;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2008-04-15 17:50:17 +02:00
|
|
|
if (channel_count < 1) goto fail;
|
2008-02-04 16:20:20 +01:00
|
|
|
|
|
|
|
/* build the VGMSTREAM */
|
|
|
|
|
|
|
|
vgmstream = allocate_vgmstream(channel_count,loop_flag);
|
|
|
|
if (!vgmstream) goto fail;
|
|
|
|
|
|
|
|
/* fill in the vital statistics */
|
2008-05-20 17:18:38 +02:00
|
|
|
vgmstream->num_samples = read_32bitBE(head_offset+0x2c,streamFile);
|
|
|
|
vgmstream->sample_rate = (uint16_t)read_16bitBE(head_offset+0x24,streamFile);
|
2008-02-04 16:20:20 +01:00
|
|
|
/* channels and loop flag are set by allocate_vgmstream */
|
2008-05-20 17:18:38 +02:00
|
|
|
vgmstream->loop_start_sample = read_32bitBE(head_offset+0x28,streamFile);
|
2008-02-04 16:20:20 +01:00
|
|
|
vgmstream->loop_end_sample = vgmstream->num_samples;
|
|
|
|
|
|
|
|
vgmstream->coding_type = coding_type;
|
2008-02-05 01:03:39 +01:00
|
|
|
if (channel_count==1)
|
|
|
|
vgmstream->layout_type = layout_none;
|
|
|
|
else
|
|
|
|
vgmstream->layout_type = layout_interleave_shortblock;
|
2008-02-04 16:20:20 +01:00
|
|
|
vgmstream->meta_type = meta_RSTM;
|
|
|
|
|
2008-05-17 01:14:47 +02:00
|
|
|
if (spm_flag&& vgmstream->sample_rate == 44100) {
|
|
|
|
vgmstream->meta_type = meta_RSTM_SPM;
|
|
|
|
vgmstream->sample_rate = 22050;
|
|
|
|
}
|
|
|
|
|
2008-05-20 17:18:38 +02:00
|
|
|
vgmstream->interleave_block_size = read_32bitBE(head_offset+0x38,streamFile);
|
|
|
|
vgmstream->interleave_smallblock_size = read_32bitBE(head_offset+0x48,streamFile);
|
2008-02-04 16:20:20 +01:00
|
|
|
|
2008-02-05 08:38:00 +01:00
|
|
|
if (vgmstream->coding_type == coding_NGC_DSP) {
|
|
|
|
off_t coef_offset;
|
|
|
|
off_t coef_offset1;
|
|
|
|
off_t coef_offset2;
|
2008-04-15 17:50:17 +02:00
|
|
|
int i,j;
|
2008-02-05 08:38:00 +01:00
|
|
|
|
2008-05-20 17:18:38 +02:00
|
|
|
coef_offset1=read_32bitBE(head_offset+0x1c,streamFile);
|
|
|
|
coef_offset2=read_32bitBE(head_offset+0x10+coef_offset1,streamFile);
|
2008-02-05 08:38:00 +01:00
|
|
|
coef_offset=coef_offset2+0x10;
|
|
|
|
|
2008-04-15 17:50:17 +02:00
|
|
|
for (j=0;j<vgmstream->channels;j++) {
|
2008-02-04 16:20:20 +01:00
|
|
|
for (i=0;i<16;i++) {
|
2008-05-20 17:18:38 +02:00
|
|
|
vgmstream->ch[j].adpcm_coef[i]=read_16bitBE(head_offset+coef_offset+j*0x38+i*2,streamFile);
|
2008-02-04 16:20:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-20 17:18:38 +02:00
|
|
|
start_offset = read_32bitBE(head_offset+0x30,streamFile);
|
2008-02-04 16:20:20 +01:00
|
|
|
|
|
|
|
/* open the file for reading by each channel */
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i=0;i<channel_count;i++) {
|
2008-02-05 08:38:00 +01:00
|
|
|
if (vgmstream->layout_type==layout_interleave_shortblock)
|
2008-05-20 17:18:38 +02:00
|
|
|
vgmstream->ch[i].streamfile = streamFile->open(streamFile,filename,
|
2008-02-05 08:38:00 +01:00
|
|
|
vgmstream->interleave_block_size);
|
|
|
|
else
|
2008-05-20 17:18:38 +02:00
|
|
|
vgmstream->ch[i].streamfile = streamFile->open(streamFile,filename,
|
2008-02-04 16:20:20 +01:00
|
|
|
0x1000);
|
2008-02-05 08:38:00 +01:00
|
|
|
|
2008-02-04 16:20:20 +01:00
|
|
|
if (!vgmstream->ch[i].streamfile) goto fail;
|
|
|
|
|
|
|
|
vgmstream->ch[i].channel_start_offset=
|
|
|
|
vgmstream->ch[i].offset=
|
|
|
|
start_offset + i*vgmstream->interleave_block_size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return vgmstream;
|
|
|
|
|
|
|
|
/* clean up anything we may have opened */
|
|
|
|
fail:
|
|
|
|
if (vgmstream) close_vgmstream(vgmstream);
|
|
|
|
return NULL;
|
|
|
|
}
|