mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-11-28 08:20:54 +01:00
Add PCM .akb [Mobius Final Fantasy (Mobile)]
This commit is contained in:
parent
7009c8afdb
commit
adae35ae3a
@ -192,7 +192,7 @@ VGMSTREAM * init_vgmstream_akb2(STREAMFILE *streamFile) {
|
|||||||
VGMSTREAM * vgmstream = NULL;
|
VGMSTREAM * vgmstream = NULL;
|
||||||
off_t start_offset, material_offset, extradata_offset;
|
off_t start_offset, material_offset, extradata_offset;
|
||||||
size_t material_size, extradata_size, stream_size;
|
size_t material_size, extradata_size, stream_size;
|
||||||
int loop_flag = 0, channel_count, encryption_flag, codec, sample_rate, /*num_samples,*/ loop_start, loop_end;
|
int loop_flag = 0, channel_count, encryption_flag, codec, sample_rate, num_samples, loop_start, loop_end;
|
||||||
int total_subsongs, target_subsong = streamFile->stream_index;
|
int total_subsongs, target_subsong = streamFile->stream_index;
|
||||||
|
|
||||||
/* check extensions */
|
/* check extensions */
|
||||||
@ -237,7 +237,7 @@ VGMSTREAM * init_vgmstream_akb2(STREAMFILE *streamFile) {
|
|||||||
material_size = read_16bitLE(material_offset+0x04,streamFile);
|
material_size = read_16bitLE(material_offset+0x04,streamFile);
|
||||||
sample_rate = (uint16_t)read_16bitLE(material_offset+0x06,streamFile);
|
sample_rate = (uint16_t)read_16bitLE(material_offset+0x06,streamFile);
|
||||||
stream_size = read_32bitLE(material_offset+0x08,streamFile);
|
stream_size = read_32bitLE(material_offset+0x08,streamFile);
|
||||||
//num_samples = read_32bitLE(material_offset+0x0c,streamFile);
|
num_samples = read_32bitLE(material_offset+0x0c,streamFile);
|
||||||
|
|
||||||
loop_start = read_32bitLE(material_offset+0x10,streamFile);
|
loop_start = read_32bitLE(material_offset+0x10,streamFile);
|
||||||
loop_end = read_32bitLE(material_offset+0x14,streamFile);
|
loop_end = read_32bitLE(material_offset+0x14,streamFile);
|
||||||
@ -263,6 +263,17 @@ VGMSTREAM * init_vgmstream_akb2(STREAMFILE *streamFile) {
|
|||||||
vgmstream->meta_type = meta_AKB;
|
vgmstream->meta_type = meta_AKB;
|
||||||
|
|
||||||
switch (codec) {
|
switch (codec) {
|
||||||
|
case 0x01: /* PCM16LE [Mobius: Final Fantasy (Android)] */
|
||||||
|
vgmstream->coding_type = coding_PCM16LE;
|
||||||
|
vgmstream->layout_type = layout_interleave;
|
||||||
|
vgmstream->interleave_block_size = 0x02;
|
||||||
|
|
||||||
|
vgmstream->num_samples = num_samples;
|
||||||
|
vgmstream->loop_start_sample = loop_start;
|
||||||
|
vgmstream->loop_end_sample = loop_end;
|
||||||
|
break;
|
||||||
|
|
||||||
|
|
||||||
case 0x02: { /* MSADPCM [The Irregular at Magic High School Lost Zero (Android)] */
|
case 0x02: { /* MSADPCM [The Irregular at Magic High School Lost Zero (Android)] */
|
||||||
vgmstream->coding_type = coding_MSADPCM;
|
vgmstream->coding_type = coding_MSADPCM;
|
||||||
vgmstream->layout_type = layout_none;
|
vgmstream->layout_type = layout_none;
|
||||||
@ -323,7 +334,6 @@ VGMSTREAM * init_vgmstream_akb2(STREAMFILE *streamFile) {
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
case 0x01: /* PCM16LE */
|
|
||||||
default:
|
default:
|
||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user