2010-09-11 01:56:39 +02:00
|
|
|
#include "meta.h"
|
|
|
|
#include "../coding/coding.h"
|
2018-03-30 21:28:32 +02:00
|
|
|
#include "../layout/layout.h"
|
2017-12-06 12:15:27 +01:00
|
|
|
#include "sqex_scd_streamfile.h"
|
2010-09-11 01:56:39 +02:00
|
|
|
|
2012-08-24 19:36:40 +02:00
|
|
|
|
2017-05-12 19:25:20 +02:00
|
|
|
#ifdef VGM_USE_VORBIS
|
2018-01-10 21:12:23 +01:00
|
|
|
static void scd_ogg_v2_decryption_callback(void *ptr, size_t size, size_t nmemb, void *datasource);
|
|
|
|
static void scd_ogg_v3_decryption_callback(void *ptr, size_t size, size_t nmemb, void *datasource);
|
2017-05-12 19:25:20 +02:00
|
|
|
#endif
|
2017-01-03 19:03:08 +01:00
|
|
|
|
2018-01-10 20:31:57 +01:00
|
|
|
/* SCD - Square-Enix games (FF XIII, XIV) */
|
2011-02-08 13:56:16 +01:00
|
|
|
VGMSTREAM * init_vgmstream_sqex_scd(STREAMFILE *streamFile) {
|
2010-09-11 01:56:39 +02:00
|
|
|
VGMSTREAM * vgmstream = NULL;
|
2018-03-23 16:34:48 +01:00
|
|
|
off_t start_offset, tables_offset, meta_offset, extradata_offset, name_offset = 0;
|
|
|
|
int32_t stream_size, extradata_size, loop_start, loop_end;
|
2010-09-11 01:56:39 +02:00
|
|
|
|
2018-01-10 20:31:57 +01:00
|
|
|
int loop_flag = 0, channel_count, codec, sample_rate;
|
2018-02-03 01:27:35 +01:00
|
|
|
int version, target_entry, aux_chunk_count;
|
|
|
|
int total_subsongs, target_subsong = streamFile->stream_index;
|
2010-09-11 01:56:39 +02:00
|
|
|
|
|
|
|
int32_t (*read_32bit)(off_t,STREAMFILE*) = NULL;
|
|
|
|
int16_t (*read_16bit)(off_t,STREAMFILE*) = NULL;
|
|
|
|
|
2017-12-06 12:15:27 +01:00
|
|
|
|
2010-09-11 01:56:39 +02:00
|
|
|
/* check extension, case insensitive */
|
2018-01-10 20:31:57 +01:00
|
|
|
if ( !check_extensions(streamFile, "scd") )
|
|
|
|
goto fail;
|
2010-09-11 01:56:39 +02:00
|
|
|
|
2018-01-10 20:31:57 +01:00
|
|
|
/** main header **/
|
|
|
|
if (read_32bitBE(0x00,streamFile) != 0x53454442 && /* "SEDB" */
|
|
|
|
read_32bitBE(0x04,streamFile) != 0x53534346) /* "SSCF" */
|
|
|
|
goto fail;
|
2017-01-03 21:13:36 +01:00
|
|
|
|
2018-02-03 01:27:35 +01:00
|
|
|
if (read_8bit(0x0c,streamFile) == 0x01) { /* big endian flag */
|
2018-01-10 20:31:57 +01:00
|
|
|
//size_offset = 0x14;
|
2010-09-11 01:56:39 +02:00
|
|
|
read_32bit = read_32bitBE;
|
|
|
|
read_16bit = read_16bitBE;
|
2018-02-03 01:27:35 +01:00
|
|
|
} else {
|
2018-01-10 20:31:57 +01:00
|
|
|
//size_offset = 0x10;
|
2010-09-11 01:56:39 +02:00
|
|
|
read_32bit = read_32bitLE;
|
|
|
|
read_16bit = read_16bitLE;
|
2018-01-10 20:31:57 +01:00
|
|
|
}
|
2018-02-03 01:27:35 +01:00
|
|
|
|
|
|
|
/* SSCF version? (older SSCFs from Crisis Core/FFXI X360 seem to be V3/2) */
|
|
|
|
if (read_8bit(0x0d,streamFile) != 0x04)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
/* v2: FFXIII demo (PS3), FFT0 test files (PC); v3: common; v4: Kingdom Hearts 2.8 (PS4) */
|
|
|
|
version = read_32bit(0x08,streamFile);
|
|
|
|
if (version != 2 && version != 3 && version != 4)
|
2018-01-10 20:31:57 +01:00
|
|
|
goto fail;
|
2010-09-11 01:56:39 +02:00
|
|
|
|
2018-01-10 20:31:57 +01:00
|
|
|
tables_offset = read_16bit(0x0e,streamFile); /* usually 0x30 or 0x20 */
|
2017-01-03 21:13:36 +01:00
|
|
|
|
2010-09-12 08:07:50 +02:00
|
|
|
#if 0
|
2017-01-03 21:13:36 +01:00
|
|
|
/* never mind, FFXIII music_68tak.ps3.scd is 0x80 shorter */
|
2010-09-11 01:56:39 +02:00
|
|
|
/* check file size with header value */
|
|
|
|
if (read_32bit(size_offset,streamFile) != get_streamfile_size(streamFile))
|
|
|
|
goto fail;
|
2010-09-12 08:07:50 +02:00
|
|
|
#endif
|
2010-09-11 01:56:39 +02:00
|
|
|
|
2018-01-10 20:31:57 +01:00
|
|
|
|
|
|
|
/** offset tables **/
|
|
|
|
/* 0x00(2): table1/4 (unknown) entries */
|
|
|
|
/* 0x02(2): table2 (unknown) entries */
|
|
|
|
/* 0x04(2): table3 (headers) entries */
|
2018-01-11 23:26:24 +01:00
|
|
|
/* 0x06(2): unknown, varies even for clone files */
|
2018-01-10 20:31:57 +01:00
|
|
|
|
|
|
|
/* (implicit: table1 starts at 0x20) */
|
|
|
|
/* 0x08: table2 (unknown) start offset */
|
|
|
|
/* 0x0c: table3 (headers) start offset */
|
|
|
|
/* 0x10: table4 (unknown) start offset */
|
|
|
|
/* 0x14: always null? */
|
|
|
|
/* 0x18: table5? (unknown) start offset? */
|
|
|
|
/* 0x1c: unknown, often null */
|
2018-02-03 01:27:35 +01:00
|
|
|
/* each table entry is an uint32_t offset; after entries there is padding */
|
2018-01-10 20:31:57 +01:00
|
|
|
/* if a table isn't present entries is 0 and offset points to next table */
|
|
|
|
|
|
|
|
/* find meta_offset in table3 (headers) and total subsongs */
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int headers_entries = read_16bit(tables_offset+0x04,streamFile);
|
|
|
|
off_t headers_offset = read_32bit(tables_offset+0x0c,streamFile);
|
|
|
|
|
|
|
|
if (target_subsong == 0) target_subsong = 1;
|
|
|
|
total_subsongs = 0;
|
|
|
|
meta_offset = 0;
|
|
|
|
|
2018-01-11 23:26:24 +01:00
|
|
|
/* manually find subsongs as entries can be dummy (ex. sfx banks in FF XIV or FF Type-0) */
|
2018-01-10 20:31:57 +01:00
|
|
|
for (i = 0; i < headers_entries; i++) {
|
2018-02-03 01:27:35 +01:00
|
|
|
off_t entry_offset = read_32bit(headers_offset + i*0x04,streamFile);
|
2018-01-10 20:31:57 +01:00
|
|
|
|
2018-02-03 01:27:35 +01:00
|
|
|
if (read_32bit(entry_offset+0x0c,streamFile) == -1)
|
2018-01-10 20:31:57 +01:00
|
|
|
continue; /* codec -1 when dummy */
|
|
|
|
|
|
|
|
total_subsongs++;
|
2018-02-03 01:27:35 +01:00
|
|
|
if (!meta_offset && total_subsongs == target_subsong) {
|
|
|
|
meta_offset = entry_offset;
|
|
|
|
target_entry = i;
|
|
|
|
}
|
2018-01-10 20:31:57 +01:00
|
|
|
}
|
|
|
|
if (meta_offset == 0) goto fail;
|
2018-01-11 23:26:24 +01:00
|
|
|
/* SCD can contain 0 entries too */
|
2018-01-10 20:31:57 +01:00
|
|
|
}
|
|
|
|
|
2017-01-03 21:13:36 +01:00
|
|
|
/** stream header **/
|
2018-01-11 23:26:24 +01:00
|
|
|
stream_size = read_32bit(meta_offset+0x00,streamFile);
|
|
|
|
channel_count = read_32bit(meta_offset+0x04,streamFile);
|
|
|
|
sample_rate = read_32bit(meta_offset+0x08,streamFile);
|
|
|
|
codec = read_32bit(meta_offset+0x0c,streamFile);
|
|
|
|
|
|
|
|
loop_start = read_32bit(meta_offset+0x10,streamFile);
|
|
|
|
loop_end = read_32bit(meta_offset+0x14,streamFile);
|
2018-03-23 16:34:48 +01:00
|
|
|
extradata_size = read_32bit(meta_offset+0x18,streamFile);
|
2018-01-11 23:26:24 +01:00
|
|
|
aux_chunk_count = read_32bit(meta_offset+0x1c,streamFile);
|
|
|
|
/* 0x01e(2): unknown, seen in some FF XIV sfx (MSADPCM) */
|
2010-09-11 01:56:39 +02:00
|
|
|
|
2018-01-11 23:26:24 +01:00
|
|
|
loop_flag = (loop_end > 0);
|
2018-03-23 16:34:48 +01:00
|
|
|
extradata_offset = meta_offset + 0x20;
|
|
|
|
start_offset = extradata_offset + extradata_size;
|
2017-09-17 03:35:03 +02:00
|
|
|
|
|
|
|
/* only "MARK" chunk is known (some FF XIV PS3 have "STBL" but it's not counted) */
|
2018-01-11 23:26:24 +01:00
|
|
|
if (aux_chunk_count > 1 && aux_chunk_count < 0xFFFF) { /* some FF XIV Heavensward IMA sfx have 0x01000000 */
|
2017-09-17 03:35:03 +02:00
|
|
|
VGM_LOG("SCD: unknown aux chunk count %i\n", aux_chunk_count);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* skips aux chunks, sometimes needed (Lightning Returns X360, FF XIV PC) */
|
2018-03-23 16:34:48 +01:00
|
|
|
if (aux_chunk_count && read_32bitBE(extradata_offset, streamFile) == 0x4D41524B) { /* "MARK" */
|
|
|
|
extradata_offset += read_32bit(extradata_offset+0x04, streamFile);
|
2017-09-17 03:35:03 +02:00
|
|
|
}
|
|
|
|
|
2018-02-03 01:27:35 +01:00
|
|
|
/* find name if possible */
|
|
|
|
if (version == 4) {
|
|
|
|
int info_entries = read_16bit(tables_offset+0x00,streamFile);
|
|
|
|
int headers_entries = read_16bit(tables_offset+0x04,streamFile);
|
|
|
|
off_t info_offset = tables_offset+0x20;
|
|
|
|
|
|
|
|
/* not very exact as table1 and table3 entries may differ in V3, not sure about V4 */
|
|
|
|
if (info_entries == headers_entries) {
|
|
|
|
off_t entry_offset = read_16bit(info_offset + 0x04*target_entry,streamFile);
|
|
|
|
name_offset = entry_offset+0x30;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-17 03:35:03 +02:00
|
|
|
|
2011-05-28 11:03:45 +02:00
|
|
|
#ifdef VGM_USE_VORBIS
|
2018-01-11 23:26:24 +01:00
|
|
|
/* special case using init_vgmstream_ogg_vorbis */
|
2018-01-10 20:31:57 +01:00
|
|
|
if (codec == 0x06) {
|
2018-02-03 01:27:35 +01:00
|
|
|
VGMSTREAM *ogg_vgmstream;
|
2018-01-11 23:26:24 +01:00
|
|
|
uint8_t ogg_version, ogg_byte;
|
2018-03-23 16:34:48 +01:00
|
|
|
ogg_vorbis_meta_info_t ovmi = {0};
|
2011-12-15 09:00:47 +01:00
|
|
|
|
2018-03-23 16:34:48 +01:00
|
|
|
ovmi.meta_type = meta_SQEX_SCD;
|
|
|
|
ovmi.total_subsongs = total_subsongs;
|
2019-06-29 13:24:27 +02:00
|
|
|
ovmi.disable_reordering = 1; /* already ordered */
|
2018-01-11 23:26:24 +01:00
|
|
|
/* loop values are in bytes, let init_vgmstream_ogg_vorbis find loop comments instead */
|
2011-05-28 11:03:45 +02:00
|
|
|
|
2018-03-23 16:34:48 +01:00
|
|
|
ogg_version = read_8bit(extradata_offset + 0x00, streamFile);
|
2018-01-11 23:26:24 +01:00
|
|
|
/* 0x01(1): 0x20 in v2/3, this ogg miniheader size? */
|
2018-03-23 16:34:48 +01:00
|
|
|
ogg_byte = read_8bit(extradata_offset + 0x02, streamFile);
|
2018-01-11 23:26:24 +01:00
|
|
|
/* 0x03(1): ? in v3 */
|
2011-12-15 09:00:47 +01:00
|
|
|
|
2018-01-11 23:26:24 +01:00
|
|
|
if (ogg_version == 0) { /* 0x10? header, then custom Vorbis header before regular Ogg (FF XIV PC v1) */
|
2018-03-23 16:34:48 +01:00
|
|
|
ovmi.stream_size = stream_size;
|
2011-12-15 09:00:47 +01:00
|
|
|
}
|
2018-01-11 23:26:24 +01:00
|
|
|
else { /* 0x20 header, then seek table */
|
2018-03-23 16:34:48 +01:00
|
|
|
size_t seek_table_size = read_32bit(extradata_offset+0x10, streamFile);
|
|
|
|
size_t vorb_header_size = read_32bit(extradata_offset+0x14, streamFile);
|
2018-01-11 23:26:24 +01:00
|
|
|
/* 0x18(4): ? (can be 0) */
|
2011-12-15 09:00:47 +01:00
|
|
|
|
2018-03-23 16:34:48 +01:00
|
|
|
if ((extradata_offset-meta_offset) + seek_table_size + vorb_header_size != extradata_size)
|
2018-01-11 23:26:24 +01:00
|
|
|
goto fail;
|
2017-09-17 03:35:03 +02:00
|
|
|
|
2018-03-23 16:34:48 +01:00
|
|
|
ovmi.stream_size = vorb_header_size + stream_size;
|
|
|
|
start_offset = extradata_offset + 0x20 + seek_table_size; /* extradata_size skips vorb_header */
|
2011-12-15 09:00:47 +01:00
|
|
|
|
2018-01-11 23:26:24 +01:00
|
|
|
if (ogg_version == 2) { /* header is XOR'ed using byte (FF XIV PC) */
|
2018-03-23 16:34:48 +01:00
|
|
|
ovmi.decryption_callback = scd_ogg_v2_decryption_callback;
|
|
|
|
ovmi.scd_xor = ogg_byte;
|
|
|
|
ovmi.scd_xor_length = vorb_header_size;
|
2017-09-17 03:35:03 +02:00
|
|
|
}
|
2018-01-11 23:26:24 +01:00
|
|
|
else if (ogg_version == 3) { /* file is XOR'ed using table (FF XIV Heavensward PC) */
|
2018-03-23 16:34:48 +01:00
|
|
|
ovmi.decryption_callback = scd_ogg_v3_decryption_callback;
|
|
|
|
ovmi.scd_xor = stream_size & 0xFF; /* ogg_byte not used? */
|
|
|
|
ovmi.scd_xor_length = vorb_header_size + stream_size;
|
2017-01-03 19:03:08 +01:00
|
|
|
}
|
2017-09-17 03:35:03 +02:00
|
|
|
else {
|
2018-01-11 23:26:24 +01:00
|
|
|
VGM_LOG("SCD: unknown ogg_version 0x%x\n", ogg_version);
|
2017-09-17 03:35:03 +02:00
|
|
|
}
|
2011-12-15 09:00:47 +01:00
|
|
|
}
|
2018-01-11 23:26:24 +01:00
|
|
|
|
|
|
|
/* actual Ogg init */
|
2018-03-23 16:34:48 +01:00
|
|
|
ogg_vgmstream = init_vgmstream_ogg_vorbis_callbacks(streamFile, NULL, start_offset, &ovmi);
|
2018-02-03 01:27:35 +01:00
|
|
|
if (ogg_vgmstream && name_offset)
|
|
|
|
read_string(ogg_vgmstream->stream_name, PATH_LIMIT, name_offset, streamFile);
|
|
|
|
return ogg_vgmstream;
|
2011-05-28 11:03:45 +02:00
|
|
|
}
|
|
|
|
#endif
|
2017-09-17 03:35:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* build the VGMSTREAM */
|
2010-09-11 01:56:39 +02:00
|
|
|
vgmstream = allocate_vgmstream(channel_count,loop_flag);
|
|
|
|
if (!vgmstream) goto fail;
|
|
|
|
|
2017-12-06 12:15:27 +01:00
|
|
|
vgmstream->sample_rate = sample_rate;
|
2018-01-10 20:31:57 +01:00
|
|
|
vgmstream->num_streams = total_subsongs;
|
2018-01-28 00:41:25 +01:00
|
|
|
vgmstream->stream_size = stream_size;
|
2017-03-04 02:16:35 +01:00
|
|
|
vgmstream->meta_type = meta_SQEX_SCD;
|
2018-02-03 01:27:35 +01:00
|
|
|
if (name_offset)
|
|
|
|
read_string(vgmstream->stream_name, PATH_LIMIT, name_offset, streamFile);
|
2010-09-11 01:56:39 +02:00
|
|
|
|
2018-01-10 20:31:57 +01:00
|
|
|
switch (codec) {
|
2017-12-06 12:15:27 +01:00
|
|
|
case 0x01: /* PCM */
|
2018-01-10 20:31:57 +01:00
|
|
|
vgmstream->coding_type = coding_PCM16LE;
|
|
|
|
vgmstream->layout_type = layout_interleave;
|
|
|
|
vgmstream->interleave_block_size = 0x02;
|
|
|
|
|
|
|
|
vgmstream->num_samples = pcm_bytes_to_samples(stream_size, channel_count, 16);
|
|
|
|
if (loop_flag) {
|
|
|
|
vgmstream->loop_start_sample = pcm_bytes_to_samples(loop_start, channel_count, 16);
|
|
|
|
vgmstream->loop_end_sample = pcm_bytes_to_samples(loop_end, channel_count, 16);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x03: /* PS-ADPCM [Final Fantasy Type-0] */
|
|
|
|
vgmstream->coding_type = coding_PSX;
|
|
|
|
vgmstream->layout_type = layout_interleave;
|
|
|
|
vgmstream->interleave_block_size = 0x10;
|
2010-09-11 01:56:39 +02:00
|
|
|
|
2018-01-10 20:31:57 +01:00
|
|
|
vgmstream->num_samples = ps_bytes_to_samples(stream_size, channel_count);
|
2010-09-11 01:56:39 +02:00
|
|
|
if (loop_flag) {
|
2018-01-10 20:31:57 +01:00
|
|
|
vgmstream->loop_start_sample = ps_bytes_to_samples(loop_start, channel_count);
|
|
|
|
vgmstream->loop_end_sample = ps_bytes_to_samples(loop_end, channel_count);
|
2010-09-11 01:56:39 +02:00
|
|
|
}
|
|
|
|
break;
|
2017-12-06 12:15:27 +01:00
|
|
|
|
2017-12-17 16:39:36 +01:00
|
|
|
case 0x06: /* OGG [Final Fantasy XIII-2 (PC), Final Fantasy XIV (PC)] */
|
2017-12-06 12:15:27 +01:00
|
|
|
goto fail; /* handled above */
|
|
|
|
|
2010-09-11 01:56:39 +02:00
|
|
|
#ifdef VGM_USE_MPEG
|
2017-12-06 12:15:27 +01:00
|
|
|
case 0x07: { /* MPEG [Final Fantasy XIII (PS3)] */
|
2017-12-17 16:39:36 +01:00
|
|
|
mpeg_custom_config cfg = {0};
|
|
|
|
|
2017-12-17 19:25:10 +01:00
|
|
|
cfg.interleave = 0x800; /* for multistream [Final Fantasy XIII-2 (PS3)], otherwise ignored */
|
2017-12-17 16:39:36 +01:00
|
|
|
cfg.data_size = stream_size;
|
2017-12-06 12:15:27 +01:00
|
|
|
|
2020-07-17 19:42:05 +02:00
|
|
|
vgmstream->codec_data = init_mpeg_custom(streamFile, start_offset, &vgmstream->coding_type, vgmstream->channels, MPEG_SCD, &cfg);
|
|
|
|
if (!vgmstream->codec_data) goto fail;
|
2017-12-17 19:25:10 +01:00
|
|
|
vgmstream->layout_type = layout_none;
|
2017-12-06 12:15:27 +01:00
|
|
|
|
2017-12-17 19:46:41 +01:00
|
|
|
/* some Drakengard 3, Kingdom Hearts HD have adjusted sample rate (47999, 44099), for looping? */
|
|
|
|
|
2020-07-17 19:42:05 +02:00
|
|
|
vgmstream->num_samples = mpeg_bytes_to_samples(stream_size, vgmstream->codec_data);
|
|
|
|
vgmstream->loop_start_sample = mpeg_bytes_to_samples(loop_start, vgmstream->codec_data);
|
|
|
|
vgmstream->loop_end_sample = mpeg_bytes_to_samples(loop_end, vgmstream->codec_data);
|
2017-12-17 19:46:41 +01:00
|
|
|
|
2018-08-26 22:37:04 +02:00
|
|
|
/* somehow loops offsets aren't always frame-aligned, and the code below supposedly helped,
|
|
|
|
* but there isn't much difference since MPEG loops are rough (1152-aligned). Seems it
|
|
|
|
* would help more loop_start - ~1000, loop_end + ~1000 (ex. FFXIII-2 music_SunMizu.ps3.scd) */
|
|
|
|
//vgmstream->num_samples -= vgmstream->num_samples % 576;
|
|
|
|
//vgmstream->loop_start_sample -= vgmstream->loop_start_sample % 576;
|
|
|
|
//vgmstream->loop_end_sample -= vgmstream->loop_end_sample % 576;
|
2010-09-11 01:56:39 +02:00
|
|
|
break;
|
2017-12-06 12:15:27 +01:00
|
|
|
}
|
2010-09-11 01:56:39 +02:00
|
|
|
#endif
|
2017-12-06 12:15:27 +01:00
|
|
|
case 0x0C: /* MS ADPCM [Final Fantasy XIV (PC) sfx] */
|
2010-09-11 01:56:39 +02:00
|
|
|
vgmstream->coding_type = coding_MSADPCM;
|
|
|
|
vgmstream->layout_type = layout_none;
|
2019-10-20 16:35:52 +02:00
|
|
|
vgmstream->frame_size = read_16bit(extradata_offset + 0x0c, streamFile);
|
|
|
|
/* WAVEFORMATEX in extradata_offset */
|
|
|
|
if (!msadpcm_check_coefs(streamFile, extradata_offset + 0x14))
|
|
|
|
goto fail;
|
2010-09-11 01:56:39 +02:00
|
|
|
|
2019-10-20 16:35:52 +02:00
|
|
|
vgmstream->num_samples = msadpcm_bytes_to_samples(stream_size, vgmstream->frame_size, vgmstream->channels);
|
2010-09-11 01:56:39 +02:00
|
|
|
if (loop_flag) {
|
2019-10-20 16:35:52 +02:00
|
|
|
vgmstream->loop_start_sample = msadpcm_bytes_to_samples(loop_start, vgmstream->frame_size, vgmstream->channels);
|
|
|
|
vgmstream->loop_end_sample = msadpcm_bytes_to_samples(loop_end, vgmstream->frame_size, vgmstream->channels);
|
2010-09-11 01:56:39 +02:00
|
|
|
}
|
|
|
|
break;
|
2017-01-15 20:42:26 +01:00
|
|
|
|
2017-12-06 12:15:27 +01:00
|
|
|
case 0x0A: /* DSP ADPCM [Dragon Quest X (Wii)] */
|
|
|
|
case 0x15: { /* DSP ADPCM [Dragon Quest X (Wii U)] (no apparent differences except higher sample rate) */
|
|
|
|
const off_t interleave_size = 0x800;
|
|
|
|
const off_t stride_size = interleave_size * channel_count;
|
2018-03-30 21:28:32 +02:00
|
|
|
int i;
|
2017-12-06 12:15:27 +01:00
|
|
|
size_t total_size;
|
2018-03-30 21:28:32 +02:00
|
|
|
layered_layout_data * data = NULL;
|
2012-08-24 19:36:40 +02:00
|
|
|
|
2018-03-30 21:28:32 +02:00
|
|
|
/* interleaved DSPs including the header (so the first 0x800 is 0x60 header + 0x740 data)
|
|
|
|
* so interleave layout can't used; we'll setup de-interleaving streamfiles as layers/channels instead */
|
|
|
|
//todo this could be simplified using a block layout or adding interleave_first_block
|
2017-12-06 12:15:27 +01:00
|
|
|
vgmstream->coding_type = coding_NGC_DSP;
|
2018-03-30 21:28:32 +02:00
|
|
|
vgmstream->layout_type = layout_layered;
|
|
|
|
|
|
|
|
/* read from the first DSP header and verify other channel headers */
|
|
|
|
{
|
|
|
|
total_size = (read_32bitBE(start_offset+0x04,streamFile)+1)/2; /* rounded nibbles / 2 */
|
|
|
|
vgmstream->num_samples = read_32bitBE(start_offset+0x00,streamFile);
|
|
|
|
if (loop_flag) {
|
|
|
|
vgmstream->loop_start_sample = loop_start;
|
2019-08-25 20:46:29 +02:00
|
|
|
vgmstream->loop_end_sample = loop_end + 1;
|
2018-03-30 21:28:32 +02:00
|
|
|
}
|
2012-08-24 19:36:40 +02:00
|
|
|
|
2018-03-30 21:28:32 +02:00
|
|
|
for (i = 1; i < channel_count; i++) {
|
|
|
|
if ((read_32bitBE(start_offset+4,streamFile)+1)/2 != total_size ||
|
|
|
|
read_32bitBE(start_offset+interleave_size*i+0x00,streamFile) != vgmstream->num_samples) {
|
|
|
|
goto fail;
|
|
|
|
}
|
2017-12-06 12:15:27 +01:00
|
|
|
}
|
|
|
|
}
|
2012-08-24 19:36:40 +02:00
|
|
|
|
2018-03-30 21:28:32 +02:00
|
|
|
/* init layout */
|
|
|
|
data = init_layout_layered(channel_count);
|
|
|
|
if (!data) goto fail;
|
|
|
|
vgmstream->layout_data = data;
|
2012-08-24 19:36:40 +02:00
|
|
|
|
2018-03-30 21:28:32 +02:00
|
|
|
/* open each layer subfile */
|
|
|
|
for (i = 0; i < channel_count; i++) {
|
Simplify STREAMFILE handling in scd_int_layout
It's not the easiest thing to follow so here is what's going on with
STREAMFILEs:
- external player opens base-streamfile, with a base FILE
- meta scd parses stuff, then per DSP channel/layer:
- open temp-streamfile, which does custom IO with base-streamfile
(doesn't open any FILE)
- pass temp-streamfile to init_vgmstream_ngc_dsp_std
- init parses ok, and re-opens temp-streamfile (with custom IO) as its
own dsp-vgmstream-streamfile; internally it does fopen/fdopen the
original FILE from base-streamfile
- scd_int_layout stores the newly created VGMSTREAM (internally has
the dsp-vgmstream-streamfile too)
- close temp-streamfile, that doesn't close base-streamfile as it's
wrapped to avoid doing so, nor affects dsp-vgmstream-streamfile in any
way.
- meta parsing is done, so external player closes base-streamfile (but
the re-fopen'ed dsp-vgmstream-streamfile FILE remains)
- vgmstream renders pcm buffers, etc
- finally player calls close_vgmstream
- scd_int_layout calls close_vgmstream for each stored VGMSTREAM
- the VGMSTREAM internally closes the dsp-vgmstream-streamfile, which
in turn closes its own FILE
So ultimately all FILEs, STREAMFILEs and their clones should be properly
handled and closed.
2018-03-30 19:14:37 +02:00
|
|
|
STREAMFILE* temp_streamFile = setup_scd_dsp_streamfile(streamFile, start_offset+interleave_size*i, interleave_size, stride_size, total_size);
|
|
|
|
if (!temp_streamFile) goto fail;
|
2012-08-24 19:36:40 +02:00
|
|
|
|
2018-03-30 21:28:32 +02:00
|
|
|
data->layers[i] = init_vgmstream_ngc_dsp_std(temp_streamFile);
|
Simplify STREAMFILE handling in scd_int_layout
It's not the easiest thing to follow so here is what's going on with
STREAMFILEs:
- external player opens base-streamfile, with a base FILE
- meta scd parses stuff, then per DSP channel/layer:
- open temp-streamfile, which does custom IO with base-streamfile
(doesn't open any FILE)
- pass temp-streamfile to init_vgmstream_ngc_dsp_std
- init parses ok, and re-opens temp-streamfile (with custom IO) as its
own dsp-vgmstream-streamfile; internally it does fopen/fdopen the
original FILE from base-streamfile
- scd_int_layout stores the newly created VGMSTREAM (internally has
the dsp-vgmstream-streamfile too)
- close temp-streamfile, that doesn't close base-streamfile as it's
wrapped to avoid doing so, nor affects dsp-vgmstream-streamfile in any
way.
- meta parsing is done, so external player closes base-streamfile (but
the re-fopen'ed dsp-vgmstream-streamfile FILE remains)
- vgmstream renders pcm buffers, etc
- finally player calls close_vgmstream
- scd_int_layout calls close_vgmstream for each stored VGMSTREAM
- the VGMSTREAM internally closes the dsp-vgmstream-streamfile, which
in turn closes its own FILE
So ultimately all FILEs, STREAMFILEs and their clones should be properly
handled and closed.
2018-03-30 19:14:37 +02:00
|
|
|
close_streamfile(temp_streamFile);
|
2018-03-30 21:28:32 +02:00
|
|
|
if (!data->layers[i]) goto fail;
|
2012-08-24 19:36:40 +02:00
|
|
|
}
|
2017-12-06 12:15:27 +01:00
|
|
|
|
2018-03-30 21:28:32 +02:00
|
|
|
/* setup layered VGMSTREAMs */
|
|
|
|
if (!setup_layout_layered(data))
|
|
|
|
goto fail;
|
|
|
|
|
2012-08-24 19:36:40 +02:00
|
|
|
break;
|
2017-12-06 12:15:27 +01:00
|
|
|
}
|
|
|
|
|
2016-07-17 08:02:27 +02:00
|
|
|
#ifdef VGM_USE_FFMPEG
|
2018-02-03 01:27:35 +01:00
|
|
|
case 0x0B: { /* XMA2 [Final Fantasy (X360), Lightning Returns (X360) sfx, Kingdom Hearts 2.8 (X1)] */
|
Fix XMA gapless/looping/samples
fixes: standard, wem, xwc, xwb, xnb, xwx, rak, pk, txth, genh, seg, rsd, past, p3d, nub-xma, gtd, gsp, fsb, eaac, cxs, awc, aac
2018-11-18 17:01:31 +01:00
|
|
|
ffmpeg_codec_data *ffmpeg_data = NULL;
|
|
|
|
uint8_t buf[200];
|
|
|
|
int32_t bytes;
|
|
|
|
|
|
|
|
/* extradata_offset+0x00: fmt0x166 header (BE), extradata_offset+0x34: seek table */
|
|
|
|
bytes = ffmpeg_make_riff_xma_from_fmt_chunk(buf,200, extradata_offset,0x34, stream_size, streamFile, 1);
|
|
|
|
ffmpeg_data = init_ffmpeg_header_offset(streamFile, buf,bytes, start_offset,stream_size);
|
|
|
|
if (!ffmpeg_data) goto fail;
|
|
|
|
vgmstream->codec_data = ffmpeg_data;
|
|
|
|
vgmstream->coding_type = coding_FFmpeg;
|
|
|
|
vgmstream->layout_type = layout_none;
|
|
|
|
|
|
|
|
vgmstream->num_samples = ffmpeg_data->totalSamples;
|
|
|
|
vgmstream->loop_start_sample = loop_start;
|
2019-08-25 20:46:29 +02:00
|
|
|
vgmstream->loop_end_sample = loop_end; //todo +1?
|
Fix XMA gapless/looping/samples
fixes: standard, wem, xwc, xwb, xnb, xwx, rak, pk, txth, genh, seg, rsd, past, p3d, nub-xma, gtd, gsp, fsb, eaac, cxs, awc, aac
2018-11-18 17:01:31 +01:00
|
|
|
|
|
|
|
xma_fix_raw_samples(vgmstream, streamFile, start_offset,stream_size, 0, 0,0); /* samples are ok, loops? */
|
2016-07-17 08:02:27 +02:00
|
|
|
break;
|
2017-12-06 12:15:27 +01:00
|
|
|
}
|
2017-01-14 23:00:19 +01:00
|
|
|
|
2018-01-10 20:31:57 +01:00
|
|
|
case 0x0E: { /* ATRAC3/ATRAC3plus [Lord of Arcana (PSP), Final Fantasy Type-0] */
|
2019-08-25 20:46:29 +02:00
|
|
|
int fact_samples = 0;
|
2017-01-14 23:00:19 +01:00
|
|
|
|
2019-08-25 20:46:29 +02:00
|
|
|
vgmstream->codec_data = init_ffmpeg_atrac3_riff(streamFile, start_offset, &fact_samples);
|
|
|
|
if (!vgmstream->codec_data) goto fail;
|
2017-12-06 12:15:27 +01:00
|
|
|
vgmstream->coding_type = coding_FFmpeg;
|
|
|
|
vgmstream->layout_type = layout_none;
|
2017-01-14 23:00:19 +01:00
|
|
|
|
2019-08-25 20:46:29 +02:00
|
|
|
vgmstream->num_samples = fact_samples;
|
2017-12-06 12:15:27 +01:00
|
|
|
vgmstream->loop_start_sample = loop_start;
|
2019-08-25 20:46:29 +02:00
|
|
|
vgmstream->loop_end_sample = loop_end + 1;
|
|
|
|
/* loop/sample values are relative (without skip) vs RIFF (with skip), matching "smpl" otherwise */
|
2017-12-06 12:15:27 +01:00
|
|
|
break;
|
|
|
|
}
|
2016-07-17 08:02:27 +02:00
|
|
|
#endif
|
2017-12-06 12:15:27 +01:00
|
|
|
|
2018-02-03 01:27:35 +01:00
|
|
|
#ifdef VGM_USE_ATRAC9
|
|
|
|
case 0x16: { /* ATRAC9 [Kingdom Hearts 2.8 (PS4)] */
|
|
|
|
atrac9_config cfg = {0};
|
|
|
|
|
|
|
|
/* post header has various typical ATRAC9 values */
|
|
|
|
cfg.channels = vgmstream->channels;
|
2018-03-23 16:34:48 +01:00
|
|
|
cfg.config_data = read_32bit(extradata_offset+0x0c,streamFile);
|
|
|
|
cfg.encoder_delay = read_32bit(extradata_offset+0x18,streamFile);
|
2018-02-03 01:27:35 +01:00
|
|
|
|
|
|
|
vgmstream->codec_data = init_atrac9(&cfg);
|
|
|
|
if (!vgmstream->codec_data) goto fail;
|
|
|
|
vgmstream->coding_type = coding_ATRAC9;
|
|
|
|
vgmstream->layout_type = layout_none;
|
|
|
|
|
2018-03-23 16:34:48 +01:00
|
|
|
vgmstream->num_samples = read_32bit(extradata_offset+0x10,streamFile); /* loop values above are also weird and ignored */
|
2019-08-25 20:46:29 +02:00
|
|
|
vgmstream->loop_start_sample = read_32bit(extradata_offset+0x20, streamFile);
|
|
|
|
vgmstream->loop_end_sample = read_32bit(extradata_offset+0x24, streamFile) + 1;
|
|
|
|
if (loop_flag) {
|
|
|
|
vgmstream->loop_start_sample -= cfg.encoder_delay;
|
|
|
|
vgmstream->loop_end_sample -= cfg.encoder_delay;
|
|
|
|
}
|
2018-02-03 01:27:35 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-01-10 20:31:57 +01:00
|
|
|
case -1: /* used for dummy entries */
|
2010-09-11 01:56:39 +02:00
|
|
|
default:
|
2018-01-10 20:31:57 +01:00
|
|
|
VGM_LOG("SCD: unknown codec 0x%x\n", codec);
|
2010-09-11 01:56:39 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-09 20:56:26 +01:00
|
|
|
if ( !vgmstream_open_stream(vgmstream, streamFile, start_offset) )
|
|
|
|
goto fail;
|
2010-09-11 01:56:39 +02:00
|
|
|
|
|
|
|
return vgmstream;
|
|
|
|
|
|
|
|
fail:
|
2017-03-09 20:56:26 +01:00
|
|
|
close_vgmstream(vgmstream);
|
2010-09-11 01:56:39 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
2012-08-24 19:36:40 +02:00
|
|
|
|
2017-01-03 19:03:08 +01:00
|
|
|
|
2017-05-12 19:25:20 +02:00
|
|
|
#ifdef VGM_USE_VORBIS
|
2018-01-10 21:12:23 +01:00
|
|
|
static void scd_ogg_v2_decryption_callback(void *ptr, size_t size, size_t nmemb, void *datasource) {
|
2019-10-18 19:34:15 +02:00
|
|
|
uint8_t *ptr8 = ptr;
|
|
|
|
size_t bytes_read = size * nmemb;
|
|
|
|
ogg_vorbis_io *io = datasource;
|
2017-01-03 19:03:08 +01:00
|
|
|
|
2018-01-11 23:26:24 +01:00
|
|
|
/* no encryption, sometimes happens */
|
2019-10-18 19:34:15 +02:00
|
|
|
if (io->scd_xor == 0x00)
|
2018-01-11 23:26:24 +01:00
|
|
|
return;
|
|
|
|
|
2017-01-03 19:03:08 +01:00
|
|
|
/* header is XOR'd with a constant byte */
|
2019-10-18 19:34:15 +02:00
|
|
|
if (io->offset < io->scd_xor_length) {
|
2017-01-03 19:03:08 +01:00
|
|
|
int i, num_crypt;
|
|
|
|
|
2019-10-18 19:34:15 +02:00
|
|
|
num_crypt = io->scd_xor_length - io->offset;
|
2017-01-03 19:03:08 +01:00
|
|
|
if (num_crypt > bytes_read)
|
|
|
|
num_crypt = bytes_read;
|
|
|
|
|
|
|
|
for (i = 0; i < num_crypt; i++) {
|
2019-10-18 19:34:15 +02:00
|
|
|
ptr8[i] ^= (uint8_t)io->scd_xor;
|
2017-01-03 19:03:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-10 21:12:23 +01:00
|
|
|
static void scd_ogg_v3_decryption_callback(void *ptr, size_t size, size_t nmemb, void *datasource) {
|
|
|
|
/* V3 decryption table found in the .exe of FF XIV Heavensward */
|
|
|
|
static const uint8_t scd_ogg_v3_lookuptable[256] = {
|
2017-09-17 03:35:03 +02:00
|
|
|
0x3A, 0x32, 0x32, 0x32, 0x03, 0x7E, 0x12, 0xF7, 0xB2, 0xE2, 0xA2, 0x67, 0x32, 0x32, 0x22, 0x32, // 00-0F
|
|
|
|
0x32, 0x52, 0x16, 0x1B, 0x3C, 0xA1, 0x54, 0x7B, 0x1B, 0x97, 0xA6, 0x93, 0x1A, 0x4B, 0xAA, 0xA6, // 10-1F
|
|
|
|
0x7A, 0x7B, 0x1B, 0x97, 0xA6, 0xF7, 0x02, 0xBB, 0xAA, 0xA6, 0xBB, 0xF7, 0x2A, 0x51, 0xBE, 0x03, // 20-2F
|
|
|
|
0xF4, 0x2A, 0x51, 0xBE, 0x03, 0xF4, 0x2A, 0x51, 0xBE, 0x12, 0x06, 0x56, 0x27, 0x32, 0x32, 0x36, // 30-3F
|
|
|
|
0x32, 0xB2, 0x1A, 0x3B, 0xBC, 0x91, 0xD4, 0x7B, 0x58, 0xFC, 0x0B, 0x55, 0x2A, 0x15, 0xBC, 0x40, // 40-4F
|
|
|
|
0x92, 0x0B, 0x5B, 0x7C, 0x0A, 0x95, 0x12, 0x35, 0xB8, 0x63, 0xD2, 0x0B, 0x3B, 0xF0, 0xC7, 0x14, // 50-5F
|
|
|
|
0x51, 0x5C, 0x94, 0x86, 0x94, 0x59, 0x5C, 0xFC, 0x1B, 0x17, 0x3A, 0x3F, 0x6B, 0x37, 0x32, 0x32, // 60-6F
|
|
|
|
0x30, 0x32, 0x72, 0x7A, 0x13, 0xB7, 0x26, 0x60, 0x7A, 0x13, 0xB7, 0x26, 0x50, 0xBA, 0x13, 0xB4, // 70-7F
|
|
|
|
0x2A, 0x50, 0xBA, 0x13, 0xB5, 0x2E, 0x40, 0xFA, 0x13, 0x95, 0xAE, 0x40, 0x38, 0x18, 0x9A, 0x92, // 80-8F
|
|
|
|
0xB0, 0x38, 0x00, 0xFA, 0x12, 0xB1, 0x7E, 0x00, 0xDB, 0x96, 0xA1, 0x7C, 0x08, 0xDB, 0x9A, 0x91, // 90-9F
|
|
|
|
0xBC, 0x08, 0xD8, 0x1A, 0x86, 0xE2, 0x70, 0x39, 0x1F, 0x86, 0xE0, 0x78, 0x7E, 0x03, 0xE7, 0x64, // A0-AF
|
|
|
|
0x51, 0x9C, 0x8F, 0x34, 0x6F, 0x4E, 0x41, 0xFC, 0x0B, 0xD5, 0xAE, 0x41, 0xFC, 0x0B, 0xD5, 0xAE, // B0-BF
|
|
|
|
0x41, 0xFC, 0x3B, 0x70, 0x71, 0x64, 0x33, 0x32, 0x12, 0x32, 0x32, 0x36, 0x70, 0x34, 0x2B, 0x56, // C0-CF
|
|
|
|
0x22, 0x70, 0x3A, 0x13, 0xB7, 0x26, 0x60, 0xBA, 0x1B, 0x94, 0xAA, 0x40, 0x38, 0x00, 0xFA, 0xB2, // D0-DF
|
|
|
|
0xE2, 0xA2, 0x67, 0x32, 0x32, 0x12, 0x32, 0xB2, 0x32, 0x32, 0x32, 0x32, 0x75, 0xA3, 0x26, 0x7B, // E0-EF
|
|
|
|
0x83, 0x26, 0xF9, 0x83, 0x2E, 0xFF, 0xE3, 0x16, 0x7D, 0xC0, 0x1E, 0x63, 0x21, 0x07, 0xE3, 0x01, // F0-FF
|
|
|
|
};
|
2019-10-18 19:34:15 +02:00
|
|
|
uint8_t *ptr8 = ptr;
|
|
|
|
size_t bytes_read = size * nmemb;
|
|
|
|
ogg_vorbis_io *io = datasource;
|
2017-01-03 19:03:08 +01:00
|
|
|
|
|
|
|
/* file is XOR'd with a table (algorithm and table by Ioncannon) */
|
2019-10-18 19:34:15 +02:00
|
|
|
{ //if (io->offset < io->scd_xor_length)
|
2017-01-03 19:03:08 +01:00
|
|
|
int i, num_crypt;
|
2018-01-10 21:12:23 +01:00
|
|
|
uint8_t byte1, byte2, xor_byte;
|
2017-01-03 19:03:08 +01:00
|
|
|
|
|
|
|
num_crypt = bytes_read;
|
2019-10-18 19:34:15 +02:00
|
|
|
byte1 = io->scd_xor & 0x7F;
|
|
|
|
byte2 = io->scd_xor & 0x3F;
|
2017-01-03 19:03:08 +01:00
|
|
|
|
|
|
|
for (i = 0; i < num_crypt; i++) {
|
2019-10-18 19:34:15 +02:00
|
|
|
xor_byte = scd_ogg_v3_lookuptable[(byte2 + io->offset + i) & 0xFF];
|
2018-01-10 21:12:23 +01:00
|
|
|
xor_byte &= 0xFF;
|
2019-10-18 19:34:15 +02:00
|
|
|
xor_byte ^= ptr8[i];
|
2018-01-10 21:12:23 +01:00
|
|
|
xor_byte ^= byte1;
|
2019-10-18 19:34:15 +02:00
|
|
|
ptr8[i] = xor_byte;
|
2017-01-03 19:03:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-05-12 19:25:20 +02:00
|
|
|
#endif
|