mirror of
https://github.com/vgmstream/vgmstream.git
synced 2025-01-17 23:36:41 +01:00
Merge branch 'master' of https://github.com/kode54/vgmstream into ck-xa-fsb
This commit is contained in:
commit
492f43a554
@ -246,6 +246,7 @@ static const char* extension_list[] = {
|
|||||||
"npsf", //fake extension/header id for .nps (to be removed)
|
"npsf", //fake extension/header id for .nps (to be removed)
|
||||||
"nus3bank",
|
"nus3bank",
|
||||||
"nwa",
|
"nwa",
|
||||||
|
"nxa",
|
||||||
|
|
||||||
//"ogg", //common
|
//"ogg", //common
|
||||||
"ogl",
|
"ogl",
|
||||||
|
@ -679,6 +679,7 @@ VGMSTREAM * init_vgmstream_opus_nop(STREAMFILE * streamFile);
|
|||||||
VGMSTREAM * init_vgmstream_opus_shinen(STREAMFILE * streamFile);
|
VGMSTREAM * init_vgmstream_opus_shinen(STREAMFILE * streamFile);
|
||||||
VGMSTREAM * init_vgmstream_opus_nus3(STREAMFILE * streamFile);
|
VGMSTREAM * init_vgmstream_opus_nus3(STREAMFILE * streamFile);
|
||||||
VGMSTREAM * init_vgmstream_opus_nlsd(STREAMFILE * streamFile);
|
VGMSTREAM * init_vgmstream_opus_nlsd(STREAMFILE * streamFile);
|
||||||
|
VGMSTREAM * init_vgmstream_opus_nxa(STREAMFILE * streamFile);
|
||||||
|
|
||||||
VGMSTREAM * init_vgmstream_pc_al2(STREAMFILE * streamFile);
|
VGMSTREAM * init_vgmstream_pc_al2(STREAMFILE * streamFile);
|
||||||
|
|
||||||
|
@ -332,3 +332,75 @@ VGMSTREAM * init_vgmstream_opus_nlsd(STREAMFILE *streamFile) {
|
|||||||
fail:
|
fail:
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Entergram NXA Opus [Higurashi no Naku Koro ni Hou (Switch)] */
|
||||||
|
VGMSTREAM * init_vgmstream_opus_nxa(STREAMFILE *streamFile) {
|
||||||
|
VGMSTREAM * vgmstream = NULL;
|
||||||
|
off_t start_offset;
|
||||||
|
int loop_flag = 0, channel_count;
|
||||||
|
size_t data_size, skip = 0;
|
||||||
|
|
||||||
|
/* checks */
|
||||||
|
if (!check_extensions(streamFile, "nxa"))
|
||||||
|
goto fail;
|
||||||
|
if (read_32bitBE(0x00, streamFile) != 0x4E584131) /* "NXA1" */
|
||||||
|
goto fail;
|
||||||
|
|
||||||
|
channel_count = read_16bitLE(0x10, streamFile);
|
||||||
|
skip = read_16bitLE(0x16, streamFile);
|
||||||
|
data_size = read_32bitLE(0x08, streamFile)-0x30;
|
||||||
|
start_offset = 0x30;
|
||||||
|
|
||||||
|
/* TODO: Determine if loop points are stored externally. No visible loop points in header */
|
||||||
|
loop_flag = 0;
|
||||||
|
|
||||||
|
|
||||||
|
/* build the VGMSTREAM */
|
||||||
|
vgmstream = allocate_vgmstream(channel_count, loop_flag);
|
||||||
|
if (!vgmstream) goto fail;
|
||||||
|
|
||||||
|
vgmstream->num_samples = read_32bitLE(0x20, streamFile);
|
||||||
|
vgmstream->sample_rate = read_32bitLE(0x0C, streamFile);
|
||||||
|
vgmstream->meta_type = meta_OPUS;
|
||||||
|
|
||||||
|
#ifdef VGM_USE_FFMPEG
|
||||||
|
{
|
||||||
|
uint8_t buf[0x100];
|
||||||
|
size_t bytes;
|
||||||
|
ffmpeg_custom_config cfg = { 0 };
|
||||||
|
ffmpeg_codec_data *ffmpeg_data;
|
||||||
|
|
||||||
|
bytes = ffmpeg_make_opus_header(buf, 0x100, vgmstream->channels, skip, vgmstream->sample_rate);
|
||||||
|
if (bytes <= 0) goto fail;
|
||||||
|
|
||||||
|
cfg.type = FFMPEG_SWITCH_OPUS;
|
||||||
|
|
||||||
|
ffmpeg_data = init_ffmpeg_config(streamFile, buf, bytes, start_offset, data_size, &cfg);
|
||||||
|
if (!ffmpeg_data) goto fail;
|
||||||
|
|
||||||
|
vgmstream->codec_data = ffmpeg_data;
|
||||||
|
vgmstream->coding_type = coding_FFmpeg;
|
||||||
|
vgmstream->layout_type = layout_none;
|
||||||
|
|
||||||
|
if (ffmpeg_data->skipSamples <= 0) {
|
||||||
|
ffmpeg_set_skip_samples(ffmpeg_data, skip);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (vgmstream->num_samples == 0) {
|
||||||
|
vgmstream->num_samples = switch_opus_get_samples(start_offset, data_size,
|
||||||
|
vgmstream->sample_rate, streamFile) - skip;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
goto fail;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* open the file for reading */
|
||||||
|
if (!vgmstream_open_stream(vgmstream, streamFile, start_offset))
|
||||||
|
goto fail;
|
||||||
|
return vgmstream;
|
||||||
|
|
||||||
|
fail:
|
||||||
|
close_vgmstream(vgmstream);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
@ -373,6 +373,7 @@ VGMSTREAM * (*init_vgmstream_functions[])(STREAMFILE *streamFile) = {
|
|||||||
init_vgmstream_opus_shinen,
|
init_vgmstream_opus_shinen,
|
||||||
init_vgmstream_opus_nus3,
|
init_vgmstream_opus_nus3,
|
||||||
init_vgmstream_opus_nlsd,
|
init_vgmstream_opus_nlsd,
|
||||||
|
init_vgmstream_opus_nxa,
|
||||||
init_vgmstream_pc_al2,
|
init_vgmstream_pc_al2,
|
||||||
init_vgmstream_pc_ast,
|
init_vgmstream_pc_ast,
|
||||||
init_vgmstream_naac,
|
init_vgmstream_naac,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user