mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-12-21 10:55:53 +01:00
19 lines
644 B
C
19 lines
644 B
C
|
#include "layout.h"
|
||
|
#include "../vgmstream.h"
|
||
|
|
||
|
/* set up for the block at the given offset */
|
||
|
void ws_aud_block_update(off_t block_offset, VGMSTREAM * vgmstream) {
|
||
|
int i;
|
||
|
vgmstream->current_block_offset = block_offset;
|
||
|
vgmstream->current_block_size = read_16bitLE(
|
||
|
vgmstream->current_block_offset,
|
||
|
vgmstream->ch[0].streamfile);
|
||
|
vgmstream->next_block_offset = vgmstream->current_block_offset +
|
||
|
vgmstream->current_block_size + 8;
|
||
|
|
||
|
for (i=0;i<vgmstream->channels;i++) {
|
||
|
vgmstream->ch[i].offset = vgmstream->current_block_offset +
|
||
|
8 + vgmstream->current_block_size*i;
|
||
|
}
|
||
|
}
|