mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-11-12 09:40:51 +01:00
need to divide bytes by channel count to get samples
git-svn-id: https://vgmstream.svn.sourceforge.net/svnroot/vgmstream@256 51a99a44-fe44-0410-b1ba-c3e57ba2b86b
This commit is contained in:
parent
d0135eaa99
commit
05ca1c8d29
@ -34,11 +34,11 @@ VGMSTREAM * init_vgmstream_ps2_bmdx(STREAMFILE *streamFile) {
|
|||||||
|
|
||||||
/* Check for Compression Scheme */
|
/* Check for Compression Scheme */
|
||||||
vgmstream->coding_type = coding_PSX;
|
vgmstream->coding_type = coding_PSX;
|
||||||
vgmstream->num_samples = read_32bitLE(0x0c,streamFile)*28/16;
|
vgmstream->num_samples = read_32bitLE(0x0c,streamFile)*28/16/channel_count;
|
||||||
|
|
||||||
/* Get loop point values */
|
/* Get loop point values */
|
||||||
if(vgmstream->loop_flag) {
|
if(vgmstream->loop_flag) {
|
||||||
vgmstream->loop_start_sample = read_32bitLE(0x10,streamFile)*28/16;
|
vgmstream->loop_start_sample = read_32bitLE(0x10,streamFile)*28/16/channel_count;
|
||||||
vgmstream->loop_end_sample = vgmstream->num_samples;
|
vgmstream->loop_end_sample = vgmstream->num_samples;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user