mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-11-28 00:20:47 +01:00
VAS: Multi-stream blocked music/ambience
This commit is contained in:
parent
2d05def9d5
commit
cc7c48acdb
@ -302,6 +302,7 @@ int render_layout(sample_t* buf, int32_t sample_count, VGMSTREAM* vgmstream) {
|
|||||||
case layout_blocked_vid1:
|
case layout_blocked_vid1:
|
||||||
case layout_blocked_ubi_sce:
|
case layout_blocked_ubi_sce:
|
||||||
case layout_blocked_tt_ad:
|
case layout_blocked_tt_ad:
|
||||||
|
case layout_blocked_vas:
|
||||||
render_vgmstream_blocked(buf, sample_count, vgmstream);
|
render_vgmstream_blocked(buf, sample_count, vgmstream);
|
||||||
break;
|
break;
|
||||||
case layout_segmented:
|
case layout_segmented:
|
||||||
|
@ -972,6 +972,7 @@ static const layout_info layout_info_list[] = {
|
|||||||
{layout_blocked_vid1, "blocked (VID1)"},
|
{layout_blocked_vid1, "blocked (VID1)"},
|
||||||
{layout_blocked_ubi_sce, "blocked (Ubi SCE)"},
|
{layout_blocked_ubi_sce, "blocked (Ubi SCE)"},
|
||||||
{layout_blocked_tt_ad, "blocked (TT AD)"},
|
{layout_blocked_tt_ad, "blocked (TT AD)"},
|
||||||
|
{layout_blocked_vas, "blocked (VAS)"},
|
||||||
};
|
};
|
||||||
|
|
||||||
static const meta_info meta_info_list[] = {
|
static const meta_info meta_info_list[] = {
|
||||||
|
@ -207,6 +207,9 @@ void block_update(off_t block_offset, VGMSTREAM* vgmstream) {
|
|||||||
case layout_blocked_tt_ad:
|
case layout_blocked_tt_ad:
|
||||||
block_update_tt_ad(block_offset,vgmstream);
|
block_update_tt_ad(block_offset,vgmstream);
|
||||||
break;
|
break;
|
||||||
|
case layout_blocked_vas:
|
||||||
|
block_update_vas(block_offset,vgmstream);
|
||||||
|
break;
|
||||||
default: /* not a blocked layout */
|
default: /* not a blocked layout */
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
17
src/layout/blocked_vas.c
Normal file
17
src/layout/blocked_vas.c
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
#include "layout.h"
|
||||||
|
#include "../vgmstream.h"
|
||||||
|
|
||||||
|
/* VAS - Manhunt 2 PSP blocked audio layout */
|
||||||
|
void block_update_vas(off_t block_offset, VGMSTREAM* vgmstream) {
|
||||||
|
size_t block_size;
|
||||||
|
int num_streams;
|
||||||
|
|
||||||
|
/* no headers */
|
||||||
|
block_size = 0x40;
|
||||||
|
num_streams = vgmstream->num_streams;
|
||||||
|
|
||||||
|
vgmstream->current_block_offset = block_offset;
|
||||||
|
vgmstream->next_block_offset = block_offset + (block_size * num_streams);
|
||||||
|
vgmstream->current_block_size = block_size;
|
||||||
|
vgmstream->ch[0].offset = block_offset;
|
||||||
|
}
|
@ -48,6 +48,7 @@ void block_update_vs_square(off_t block_offset, VGMSTREAM* vgmstream);
|
|||||||
void block_update_vid1(off_t block_offset, VGMSTREAM* vgmstream);
|
void block_update_vid1(off_t block_offset, VGMSTREAM* vgmstream);
|
||||||
void block_update_ubi_sce(off_t block_offset, VGMSTREAM* vgmstream);
|
void block_update_ubi_sce(off_t block_offset, VGMSTREAM* vgmstream);
|
||||||
void block_update_tt_ad(off_t block_offset, VGMSTREAM* vgmstream);
|
void block_update_tt_ad(off_t block_offset, VGMSTREAM* vgmstream);
|
||||||
|
void block_update_vas(off_t block_offset, VGMSTREAM* vgmstream);
|
||||||
|
|
||||||
/* other layouts */
|
/* other layouts */
|
||||||
void render_vgmstream_interleave(sample_t* buffer, int32_t sample_count, VGMSTREAM* vgmstream);
|
void render_vgmstream_interleave(sample_t* buffer, int32_t sample_count, VGMSTREAM* vgmstream);
|
||||||
|
@ -319,6 +319,7 @@
|
|||||||
<ClCompile Include="layout\blocked_thp.c" />
|
<ClCompile Include="layout\blocked_thp.c" />
|
||||||
<ClCompile Include="layout\blocked_tt_ad.c" />
|
<ClCompile Include="layout\blocked_tt_ad.c" />
|
||||||
<ClCompile Include="layout\blocked_ubi_sce.c" />
|
<ClCompile Include="layout\blocked_ubi_sce.c" />
|
||||||
|
<ClCompile Include="layout\blocked_vas.c" />
|
||||||
<ClCompile Include="layout\blocked_vgs.c" />
|
<ClCompile Include="layout\blocked_vgs.c" />
|
||||||
<ClCompile Include="layout\blocked_vid1.c" />
|
<ClCompile Include="layout\blocked_vid1.c" />
|
||||||
<ClCompile Include="layout\blocked_vs.c" />
|
<ClCompile Include="layout\blocked_vs.c" />
|
||||||
|
@ -778,6 +778,9 @@
|
|||||||
<ClCompile Include="layout\blocked_ubi_sce.c">
|
<ClCompile Include="layout\blocked_ubi_sce.c">
|
||||||
<Filter>layout\Source Files</Filter>
|
<Filter>layout\Source Files</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="layout\blocked_vas.c">
|
||||||
|
<Filter>layout\Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
<ClCompile Include="layout\blocked_vgs.c">
|
<ClCompile Include="layout\blocked_vgs.c">
|
||||||
<Filter>layout\Source Files</Filter>
|
<Filter>layout\Source Files</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
@ -5,8 +5,9 @@
|
|||||||
VGMSTREAM* init_vgmstream_vas(STREAMFILE* sf) {
|
VGMSTREAM* init_vgmstream_vas(STREAMFILE* sf) {
|
||||||
VGMSTREAM* vgmstream = NULL;
|
VGMSTREAM* vgmstream = NULL;
|
||||||
off_t stream_offset;
|
off_t stream_offset;
|
||||||
size_t stream_size;
|
size_t data_size, stream_size;
|
||||||
int sample_rate, channels, loop_flag = 0;
|
int sample_rate, num_streams, channels, loop_flag = 0;
|
||||||
|
int is_v2, block_size, target_subsong = sf->stream_index;
|
||||||
|
|
||||||
|
|
||||||
/* checks */
|
/* checks */
|
||||||
@ -19,21 +20,33 @@ VGMSTREAM* init_vgmstream_vas(STREAMFILE* sf) {
|
|||||||
if (!check_extensions(sf, "vas"))
|
if (!check_extensions(sf, "vas"))
|
||||||
goto fail;
|
goto fail;
|
||||||
|
|
||||||
stream_size = read_u32le(0x04, sf);
|
data_size = read_u32le(0x04, sf);
|
||||||
sample_rate = read_u16le(0x08, sf);
|
sample_rate = read_u16le(0x08, sf);
|
||||||
/* read_u8(0x0C, sf); // interleave size * 0x10? never used, always mono */
|
if (read_u8(0x0A, sf)) goto fail; /* always 0? */
|
||||||
channels = read_u8(0x0B, sf);
|
num_streams = read_u8(0x0B, sf);
|
||||||
if (channels != 1) goto fail;
|
if (num_streams < 1 || num_streams > 32) goto fail;
|
||||||
|
if (!target_subsong) target_subsong = 1;
|
||||||
|
|
||||||
|
is_v2 = is_id32be(0x00, sf, "2AGs");
|
||||||
|
|
||||||
|
block_size = 0x40;
|
||||||
stream_offset = 0x0C;
|
stream_offset = 0x0C;
|
||||||
/* offset by 32 bytes for v2, stream name field? always empty in Manhunt 2 */
|
/* only in v2, 32 byte buffer of the intended order for stream blocks */
|
||||||
if (is_id32be(0x00, sf, "2AGs"))
|
if (is_v2) stream_offset += 0x20;
|
||||||
stream_offset += 0x20;
|
|
||||||
|
|
||||||
/* might conflict with the standard VAG otherwise */
|
/* might conflict with the standard VAG otherwise */
|
||||||
if (stream_size + stream_offset != get_streamfile_size(sf))
|
if (data_size + stream_offset != get_streamfile_size(sf))
|
||||||
goto fail;
|
goto fail;
|
||||||
|
|
||||||
|
target_subsong -= 1; /* zero index */
|
||||||
|
/* currently threre are no known v1 multi-stream blocked sounds, prerelease
|
||||||
|
* builds also use v2 for those, but this should be how v1 works in theory */
|
||||||
|
stream_offset += block_size * (is_v2 ? read_u8(0x0C + target_subsong, sf) : target_subsong);
|
||||||
|
|
||||||
|
|
||||||
|
stream_size = data_size / num_streams;
|
||||||
|
|
||||||
|
channels = 1; /* might be read_u8(0x0A, sf) + 1? */
|
||||||
|
|
||||||
/* build the VGMSTREAM */
|
/* build the VGMSTREAM */
|
||||||
vgmstream = allocate_vgmstream(channels, loop_flag);
|
vgmstream = allocate_vgmstream(channels, loop_flag);
|
||||||
@ -41,10 +54,11 @@ VGMSTREAM* init_vgmstream_vas(STREAMFILE* sf) {
|
|||||||
|
|
||||||
vgmstream->meta_type = meta_VAS;
|
vgmstream->meta_type = meta_VAS;
|
||||||
vgmstream->coding_type = coding_PSX;
|
vgmstream->coding_type = coding_PSX;
|
||||||
vgmstream->layout_type = layout_none;
|
vgmstream->num_streams = num_streams;
|
||||||
vgmstream->sample_rate = sample_rate;
|
vgmstream->sample_rate = sample_rate;
|
||||||
vgmstream->stream_size = stream_size;
|
vgmstream->stream_size = stream_size;
|
||||||
vgmstream->interleave_block_size = 0;
|
vgmstream->interleave_block_size = 0;
|
||||||
|
vgmstream->layout_type = layout_blocked_vas;
|
||||||
vgmstream->num_samples = ps_bytes_to_samples(stream_size, channels);
|
vgmstream->num_samples = ps_bytes_to_samples(stream_size, channels);
|
||||||
|
|
||||||
if (!vgmstream_open_stream(vgmstream, sf, stream_offset))
|
if (!vgmstream_open_stream(vgmstream, sf, stream_offset))
|
||||||
|
@ -233,6 +233,7 @@ typedef enum {
|
|||||||
layout_blocked_vid1,
|
layout_blocked_vid1,
|
||||||
layout_blocked_ubi_sce,
|
layout_blocked_ubi_sce,
|
||||||
layout_blocked_tt_ad,
|
layout_blocked_tt_ad,
|
||||||
|
layout_blocked_vas,
|
||||||
|
|
||||||
/* otherwise odd */
|
/* otherwise odd */
|
||||||
layout_segmented, /* song divided in segments (song sections) */
|
layout_segmented, /* song divided in segments (song sections) */
|
||||||
|
Loading…
Reference in New Issue
Block a user