mirror of
https://github.com/vgmstream/vgmstream.git
synced 2025-01-17 23:36:41 +01:00
Fix BAO sample rate in some cases [Assassin's Creed]
This commit is contained in:
parent
a590ce650b
commit
312eb4ed76
@ -902,10 +902,6 @@ static int parse_type_audio(ubi_bao_header * bao, off_t offset, STREAMFILE* stre
|
||||
|
||||
bao->stream_type = read_32bit(h_offset + bao->cfg.audio_stream_type, streamFile);
|
||||
|
||||
if (bao->loop_flag && bao->cfg.audio_channel_samples) {
|
||||
bao->num_samples = bao->num_samples / bao->channels;
|
||||
}
|
||||
|
||||
return 1;
|
||||
//fail:
|
||||
// return 0;
|
||||
@ -1082,6 +1078,10 @@ static int parse_values(ubi_bao_header * bao, STREAMFILE *streamFile) {
|
||||
goto fail;
|
||||
}
|
||||
|
||||
if (bao->type == UBI_AUDIO && bao->codec == RAW_PSX && bao->loop_flag && bao->cfg.audio_channel_samples) {
|
||||
bao->num_samples = bao->num_samples / bao->channels;
|
||||
}
|
||||
|
||||
|
||||
/* set prefetch id */
|
||||
if (bao->is_prefetched) {
|
||||
@ -1704,7 +1704,7 @@ static int config_bao_version(ubi_bao_header * bao, STREAMFILE *streamFile) {
|
||||
config_bao_entry(bao, 0xA4, 0x28); /* PC: 0xA8, PS3/X360: 0xA4 */
|
||||
|
||||
config_bao_audio_b(bao, 0x08, 0x1c, 0x28, 0x34, 1, 1); /* 0x2c: prefetch flag? */
|
||||
config_bao_audio_m(bao, 0x44, 0x4c, 0x50, 0x58, 0x64, 0x74);
|
||||
config_bao_audio_m(bao, 0x44, 0x48, 0x50, 0x58, 0x64, 0x74);
|
||||
bao->cfg.audio_interleave = 0x10;
|
||||
bao->cfg.audio_channel_samples = 1; //todo check all looping ps-adpcm
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user