mirror of
https://github.com/vgmstream/vgmstream.git
synced 2025-02-11 16:43:11 +01:00
Fix comment
This commit is contained in:
parent
af639fc92e
commit
6c10b3136a
@ -86,7 +86,7 @@ VGMSTREAM * init_vgmstream_akb(STREAMFILE *streamFile) {
|
|||||||
|
|
||||||
|
|
||||||
switch (codec) {
|
switch (codec) {
|
||||||
case 0x02: { /* MSAPDCM [various SFX] */
|
case 0x02: { /* MSAPDCM [Dragon Quest II (iOS) sfx] */
|
||||||
vgmstream->coding_type = coding_MSADPCM;
|
vgmstream->coding_type = coding_MSADPCM;
|
||||||
vgmstream->layout_type = layout_none;
|
vgmstream->layout_type = layout_none;
|
||||||
vgmstream->interleave_block_size = read_16bitLE(extradata_offset + 0x02,streamFile);
|
vgmstream->interleave_block_size = read_16bitLE(extradata_offset + 0x02,streamFile);
|
||||||
@ -101,7 +101,7 @@ VGMSTREAM * init_vgmstream_akb(STREAMFILE *streamFile) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#ifdef VGM_USE_VORBIS
|
#ifdef VGM_USE_VORBIS
|
||||||
case 0x05: { /* Ogg Vorbis [Final Fantasy VI, Dragon Quest II-VI] */
|
case 0x05: { /* Ogg Vorbis [Final Fantasy VI (iOS), Dragon Quest II-VI (iOS)] */
|
||||||
VGMSTREAM *ogg_vgmstream = NULL;
|
VGMSTREAM *ogg_vgmstream = NULL;
|
||||||
ogg_vorbis_meta_info_t ovmi = {0};
|
ogg_vorbis_meta_info_t ovmi = {0};
|
||||||
|
|
||||||
@ -123,7 +123,7 @@ VGMSTREAM * init_vgmstream_akb(STREAMFILE *streamFile) {
|
|||||||
#elif defined(VGM_USE_FFMPEG)
|
#elif defined(VGM_USE_FFMPEG)
|
||||||
/* Alt decoding without libvorbis (minor number of beginning samples difference).
|
/* Alt decoding without libvorbis (minor number of beginning samples difference).
|
||||||
* Otherwise same output with (inaudible) +-1 lower byte differences due to rounding. */
|
* Otherwise same output with (inaudible) +-1 lower byte differences due to rounding. */
|
||||||
case 0x05: { /* Ogg Vorbis [Final Fantasy VI, Dragon Quest II-VI] */
|
case 0x05: { /* Ogg Vorbis [Final Fantasy VI (iOS), Dragon Quest II-VI (iOS)] */
|
||||||
ffmpeg_codec_data *ffmpeg_data;
|
ffmpeg_codec_data *ffmpeg_data;
|
||||||
|
|
||||||
ffmpeg_data = init_ffmpeg_offset(streamFile, start_offset,stream_size);
|
ffmpeg_data = init_ffmpeg_offset(streamFile, start_offset,stream_size);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user