2008-08-19 19:55:05 +02:00
|
|
|
#include "meta.h"
|
|
|
|
#include "../util.h"
|
|
|
|
|
2008-09-08 15:41:31 +02:00
|
|
|
/* IDVI (Eldorado Gate Volume 1-7) */
|
2008-08-19 19:55:05 +02:00
|
|
|
VGMSTREAM * init_vgmstream_dc_idvi(STREAMFILE *streamFile) {
|
|
|
|
VGMSTREAM * vgmstream = NULL;
|
2013-05-27 05:55:50 +02:00
|
|
|
char filename[PATH_LIMIT];
|
2008-08-19 19:55:05 +02:00
|
|
|
off_t start_offset;
|
|
|
|
|
|
|
|
int loop_flag;
|
|
|
|
int channel_count;
|
|
|
|
|
|
|
|
/* check extension, case insensitive */
|
|
|
|
streamFile->get_name(streamFile,filename,sizeof(filename));
|
|
|
|
if (strcasecmp("idvi",filename_extension(filename))) goto fail;
|
|
|
|
|
|
|
|
/* check header */
|
|
|
|
if (read_32bitBE(0x00,streamFile) != 0x49445649) /* "IDVI." */
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
loop_flag = read_32bitLE(0x0C,streamFile);
|
|
|
|
channel_count = read_32bitLE(0x04,streamFile);
|
|
|
|
|
|
|
|
/* build the VGMSTREAM */
|
|
|
|
vgmstream = allocate_vgmstream(channel_count,loop_flag);
|
|
|
|
if (!vgmstream) goto fail;
|
|
|
|
|
|
|
|
/* fill in the vital statistics */
|
|
|
|
vgmstream->channels = channel_count;
|
|
|
|
start_offset = 0x800;
|
|
|
|
vgmstream->sample_rate = read_32bitLE(0x08,streamFile);
|
2017-04-29 02:53:36 +02:00
|
|
|
vgmstream->coding_type = coding_DVI_IMA_int;
|
2008-08-19 19:55:05 +02:00
|
|
|
vgmstream->num_samples = (get_streamfile_size(streamFile)-start_offset);
|
|
|
|
if (loop_flag) {
|
2008-08-20 04:38:06 +02:00
|
|
|
vgmstream->loop_start_sample = read_32bitLE(0x0C,streamFile);
|
2008-08-19 19:55:05 +02:00
|
|
|
vgmstream->loop_end_sample = (get_streamfile_size(streamFile)-start_offset);
|
|
|
|
}
|
2008-12-16 16:48:21 +01:00
|
|
|
vgmstream->meta_type = meta_DC_IDVI;
|
2008-08-19 19:55:05 +02:00
|
|
|
|
2008-12-16 16:48:21 +01:00
|
|
|
/* Calculating the short block... */
|
|
|
|
if (channel_count > 1) {
|
|
|
|
vgmstream->interleave_block_size = 0x400;
|
|
|
|
vgmstream->interleave_smallblock_size = ((get_streamfile_size(streamFile)-start_offset)%(vgmstream->channels*vgmstream->interleave_block_size))/vgmstream->channels;
|
2008-09-08 15:41:31 +02:00
|
|
|
vgmstream->layout_type = layout_interleave_shortblock;
|
|
|
|
} else {
|
|
|
|
vgmstream->layout_type = layout_none;
|
|
|
|
}
|
2008-08-19 19:55:05 +02:00
|
|
|
|
|
|
|
/* 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;
|
|
|
|
}
|