summaryrefslogtreecommitdiff
path: root/PcsxSrc/Decode_XA.h
diff options
context:
space:
mode:
Diffstat (limited to 'PcsxSrc/Decode_XA.h')
-rw-r--r--PcsxSrc/Decode_XA.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/PcsxSrc/Decode_XA.h b/PcsxSrc/Decode_XA.h
deleted file mode 100644
index 443da75..0000000
--- a/PcsxSrc/Decode_XA.h
+++ /dev/null
@@ -1,26 +0,0 @@
-//============================================
-//=== Audio XA decoding
-//=== Kazzuya
-//============================================
-
-#ifndef DECODEXA_H
-#define DECODEXA_H
-
-typedef struct {
- long y0, y1;
-} ADPCM_Decode_t;
-
-typedef struct {
- int freq;
- int nbits;
- int stereo;
- int nsamples;
- ADPCM_Decode_t left, right;
- short pcm[16384];
-} xa_decode_t;
-
-long xa_decode_sector( xa_decode_t *xdp,
- unsigned char *sectorp,
- int is_first_sector );
-
-#endif