mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-11-15 11:07:40 +01:00
cleanup from last few commits
git-svn-id: https://vgmstream.svn.sourceforge.net/svnroot/vgmstream@864 51a99a44-fe44-0410-b1ba-c3e57ba2b86b
This commit is contained in:
parent
9fe60e65c0
commit
27f2f1fcf4
@ -1,7 +1,7 @@
|
||||
#include "meta.h"
|
||||
#include "../util.h"
|
||||
|
||||
/* FSB3.0 and /* FSB3.1*/
|
||||
/* FSB3.0 and FSB3.1 */
|
||||
|
||||
VGMSTREAM * init_vgmstream_fsb3(STREAMFILE *streamFile) {
|
||||
VGMSTREAM * vgmstream = NULL;
|
||||
|
@ -5,7 +5,7 @@
|
||||
/* Sony PSX CD-XA */
|
||||
/* No looped file ! */
|
||||
|
||||
off_t init_xa_channel(int channel,STREAMFILE *streamFile);
|
||||
off_t init_xa_channel(int *channel,STREAMFILE *streamFile);
|
||||
|
||||
uint8_t AUDIO_CODING_GET_STEREO(uint8_t value) {
|
||||
return (uint8_t)(value & 3);
|
||||
@ -21,7 +21,7 @@ VGMSTREAM * init_vgmstream_cdxa(STREAMFILE *streamFile) {
|
||||
|
||||
int channel_count;
|
||||
int headerless=0;
|
||||
int* xa_channel=0;
|
||||
int xa_channel=0;
|
||||
uint8_t bCoding;
|
||||
off_t start_offset;
|
||||
|
||||
@ -116,8 +116,6 @@ off_t init_xa_channel(int* channel,STREAMFILE* streamFile) {
|
||||
int8_t currentChannel;
|
||||
int8_t subAudio;
|
||||
|
||||
begin:
|
||||
|
||||
// 0 can't be a correct value
|
||||
if(block_offset>=(off_t)filelength)
|
||||
return 0;
|
||||
|
@ -5,7 +5,6 @@
|
||||
#ifndef _VGMSTREAM_H
|
||||
#define _VGMSTREAM_H
|
||||
|
||||
/* Vorbis and MPEG decoding are done by external libraries.
|
||||
/* Due mostly to licensing issues, Vorbis, MPEG, and G.722.1 decoding are
|
||||
* done by external libraries.
|
||||
* If someone wants to do a standalone build, they can do it by simply
|
||||
@ -158,7 +157,6 @@ typedef enum {
|
||||
layout_ps2_adm_blocked,
|
||||
layout_dsp_bdsp_blocked,
|
||||
layout_mxch_blocked,
|
||||
layout_mtaf_blocked,
|
||||
|
||||
#if 0
|
||||
layout_strm_blocked, /* */
|
||||
|
Loading…
Reference in New Issue
Block a user