2008-05-06 05:35:37 +02:00
|
|
|
#include "meta.h"
|
2008-02-05 08:38:00 +01:00
|
|
|
#include "../util.h"
|
|
|
|
|
2017-07-08 11:02:22 +02:00
|
|
|
/* STRM - common Nintendo NDS streaming format */
|
2021-09-19 23:54:38 +02:00
|
|
|
VGMSTREAM* init_vgmstream_nds_strm(STREAMFILE* sf) {
|
|
|
|
VGMSTREAM* vgmstream = NULL;
|
2008-02-05 08:38:00 +01:00
|
|
|
off_t start_offset;
|
2021-09-19 23:54:38 +02:00
|
|
|
int channels, loop_flag, codec, sample_rate;
|
2008-02-05 08:38:00 +01:00
|
|
|
|
|
|
|
|
2018-03-24 19:27:24 +01:00
|
|
|
/* checks */
|
2021-09-19 23:54:38 +02:00
|
|
|
if (!is_id32be(0x00,sf, "STRM"))
|
2008-11-23 13:08:33 +01:00
|
|
|
goto fail;
|
2008-11-24 19:27:28 +01:00
|
|
|
|
2021-09-19 23:54:38 +02:00
|
|
|
if (!check_extensions(sf, "strm"))
|
2018-03-24 19:27:24 +01:00
|
|
|
goto fail;
|
2008-11-22 22:29:16 +01:00
|
|
|
|
2021-09-19 23:54:38 +02:00
|
|
|
/* BOM check? */
|
|
|
|
if (read_u32be(0x04,sf) != 0xFFFE0001 &&
|
|
|
|
read_u32be(0x04,sf) != 0xFEFF0001) /* newer games? */
|
2008-02-05 08:38:00 +01:00
|
|
|
goto fail;
|
|
|
|
|
2021-09-19 23:54:38 +02:00
|
|
|
if (!is_id32be(0x10,sf, "HEAD") &&
|
|
|
|
read_u32le(0x14,sf) != 0x50)
|
|
|
|
goto fail;
|
2008-02-05 08:38:00 +01:00
|
|
|
|
2021-09-19 23:54:38 +02:00
|
|
|
codec = read_u8(0x18,sf);
|
|
|
|
loop_flag = read_u8(0x19,sf);
|
|
|
|
sample_rate = read_u16le(0x1c,sf);
|
|
|
|
channels = read_u8(0x1a,sf);
|
|
|
|
if (channels > 2) goto fail;
|
2008-02-05 08:38:00 +01:00
|
|
|
|
2021-09-19 23:54:38 +02:00
|
|
|
start_offset = read_u32le(0x28,sf);
|
2008-02-05 08:38:00 +01:00
|
|
|
|
|
|
|
/* build the VGMSTREAM */
|
2021-09-19 23:54:38 +02:00
|
|
|
vgmstream = allocate_vgmstream(channels, loop_flag);
|
2008-02-05 08:38:00 +01:00
|
|
|
if (!vgmstream) goto fail;
|
|
|
|
|
2021-09-19 23:54:38 +02:00
|
|
|
vgmstream->sample_rate = sample_rate;
|
|
|
|
vgmstream->num_samples = read_32bitLE(0x24,sf);
|
|
|
|
vgmstream->loop_start_sample = read_32bitLE(0x20,sf);
|
2008-02-05 08:38:00 +01:00
|
|
|
vgmstream->loop_end_sample = vgmstream->num_samples;
|
|
|
|
|
|
|
|
vgmstream->meta_type = meta_STRM;
|
|
|
|
|
2018-03-24 19:27:24 +01:00
|
|
|
switch (codec) {
|
|
|
|
case 0x00: /* [Bleach - Dark Souls (DS)] */
|
|
|
|
vgmstream->coding_type = coding_PCM8;
|
|
|
|
break;
|
|
|
|
case 0x01:
|
|
|
|
vgmstream->coding_type = coding_PCM16LE;
|
|
|
|
break;
|
|
|
|
case 0x02: /* [SaGa 2 (DS)] */
|
|
|
|
vgmstream->coding_type = coding_NDS_IMA;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
vgmstream->layout_type = layout_interleave;
|
2021-09-19 23:54:38 +02:00
|
|
|
vgmstream->interleave_block_size = read_32bitLE(0x30,sf);
|
|
|
|
vgmstream->interleave_last_block_size = read_32bitLE(0x38,sf);
|
2008-02-05 08:38:00 +01:00
|
|
|
|
|
|
|
|
2021-09-19 23:54:38 +02:00
|
|
|
if (!vgmstream_open_stream(vgmstream, sf, start_offset))
|
2018-03-24 19:27:24 +01:00
|
|
|
goto fail;
|
2008-02-05 08:38:00 +01:00
|
|
|
return vgmstream;
|
|
|
|
|
|
|
|
fail:
|
2018-03-24 19:27:24 +01:00
|
|
|
close_vgmstream(vgmstream);
|
2008-02-05 08:38:00 +01:00
|
|
|
return NULL;
|
|
|
|
}
|