2008-05-06 05:35:37 +02:00
|
|
|
#ifndef _LAYOUT_H
|
|
|
|
#define _LAYOUT_H
|
|
|
|
|
|
|
|
#include "../streamtypes.h"
|
|
|
|
#include "../vgmstream.h"
|
|
|
|
|
|
|
|
void ast_block_update(off_t block_ofset, VGMSTREAM * vgmstream);
|
|
|
|
|
|
|
|
void render_vgmstream_blocked(sample * buffer, int32_t sample_count, VGMSTREAM * vgmstream);
|
|
|
|
|
|
|
|
void halpst_block_update(off_t block_ofset, VGMSTREAM * vgmstream);
|
|
|
|
|
2008-05-11 03:55:13 +02:00
|
|
|
void xa_block_update(off_t block_offset, VGMSTREAM * vgmstream);
|
|
|
|
|
2008-06-02 19:58:08 +02:00
|
|
|
void ea_block_update(off_t block_offset, VGMSTREAM * vgmstream);
|
|
|
|
|
2008-06-03 20:41:26 +02:00
|
|
|
void caf_block_update(off_t block_offset, VGMSTREAM * vgmstream);
|
|
|
|
|
2008-06-29 03:30:13 +02:00
|
|
|
void wsi_block_update(off_t block_offset, VGMSTREAM * vgmstream);
|
|
|
|
|
2008-07-02 05:57:21 +02:00
|
|
|
void str_ctrl_block_update(off_t block_offset, VGMSTREAM * vgmstream);
|
|
|
|
|
2008-05-06 05:35:37 +02:00
|
|
|
void render_vgmstream_interleave(sample * buffer, int32_t sample_count, VGMSTREAM * vgmstream);
|
|
|
|
|
|
|
|
void render_vgmstream_nolayout(sample * buffer, int32_t sample_count, VGMSTREAM * vgmstream);
|
|
|
|
|
|
|
|
#endif
|