vgmstream/src/layout/tra_blocked.c
fastelbja 7b137c17ef try to fix .tra
git-svn-id: https://vgmstream.svn.sourceforge.net/svnroot/vgmstream@885 51a99a44-fe44-0410-b1ba-c3e57ba2b86b
2010-12-03 22:48:51 +00:00

18 lines
614 B
C

#include "layout.h"
#include "../vgmstream.h"
/* set up for the block at the given offset (first 32bytes is useless for decoding) */
void tra_block_update(off_t block_offset, VGMSTREAM * vgmstream) {
int i;
vgmstream->current_block_offset = block_offset;
vgmstream->current_block_size = 0x400;
vgmstream->next_block_offset = vgmstream->current_block_offset+vgmstream->current_block_size+8;
vgmstream->current_block_size/=vgmstream->channels;
for (i=0;i<vgmstream->channels;i++) {
vgmstream->ch[i].offset = vgmstream->current_block_offset+(vgmstream->current_block_size*i)+0x4*(i+1);
}
}