Merge pull request #599 from slashiee/diva

Add looping support to .diva
This commit is contained in:
bxaimc 2020-04-15 16:29:47 -04:00 committed by GitHub
commit c3ab39f665
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,7 +5,9 @@
VGMSTREAM * init_vgmstream_diva(STREAMFILE *streamFile) {
VGMSTREAM * vgmstream = NULL;
off_t start_offset;
int channel_count, loop_flag = 0;
int channel_count;
int loop_end;
int loop_flag = (loop_end != 0);
/* checks */
if (!check_extensions(streamFile, "diva"))
@ -16,16 +18,19 @@ VGMSTREAM * init_vgmstream_diva(STREAMFILE *streamFile) {
start_offset = 0x40;
channel_count = read_8bit(0x1C, streamFile);
loop_end = read_32bitLE(0x18, streamFile);
/* build the VGMSTREAM */
vgmstream = allocate_vgmstream(channel_count, loop_flag);
if (!vgmstream) goto fail;
vgmstream->sample_rate = read_32bitLE(0x0C, streamFile);
vgmstream->num_samples = read_32bitLE(0x10, streamFile);
vgmstream->meta_type = meta_DIVA;
vgmstream->layout_type = layout_none;
vgmstream->coding_type = coding_DVI_IMA;
vgmstream->sample_rate = read_32bitLE(0x0C, streamFile);
vgmstream->num_samples = read_32bitLE(0x10, streamFile);
vgmstream->loop_start_sample = read_32bitLE(0x14, streamFile);
vgmstream->loop_end_sample = loop_end;
vgmstream->meta_type = meta_DIVA;
vgmstream->layout_type = layout_none;
vgmstream->coding_type = coding_DVI_IMA;
if (!vgmstream_open_stream(vgmstream, streamFile, start_offset))
goto fail;