aboutsummaryrefslogtreecommitdiff
path: root/scumm/sound.h
diff options
context:
space:
mode:
authorMax Horn2003-09-15 19:48:54 +0000
committerMax Horn2003-09-15 19:48:54 +0000
commit8f26c43b49453e599736b9e48b27620775284b03 (patch)
tree60314fb1b47e444fca1da39aa0339e69d2fea809 /scumm/sound.h
parent7eaf33e014a1b94d90f37fcf14e11fba02bd0958 (diff)
downloadscummvm-rg350-8f26c43b49453e599736b9e48b27620775284b03.tar.gz
scummvm-rg350-8f26c43b49453e599736b9e48b27620775284b03.tar.bz2
scummvm-rg350-8f26c43b49453e599736b9e48b27620775284b03.zip
cleanup
svn-id: r10260
Diffstat (limited to 'scumm/sound.h')
-rw-r--r--scumm/sound.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/scumm/sound.h b/scumm/sound.h
index a01d9f7766..0d745dedfb 100644
--- a/scumm/sound.h
+++ b/scumm/sound.h
@@ -29,12 +29,7 @@ class DigitalTrackInfo;
class File;
class Scumm;
-struct MP3OffsetTable { /* Compressed Sound (.SO3) */
- int org_offset;
- int new_offset;
- int num_tags;
- int compressed_size;
-};
+struct MP3OffsetTable;
class Sound {
protected:
@@ -156,7 +151,7 @@ protected:
void startSfxSound(File *file, int file_size, PlayingSoundHandle *handle);
bool isSfxFinished() const;
void playSfxSound(void *sound, uint32 size, uint rate, bool isUnsigned, PlayingSoundHandle *handle);
- void playSfxSound_Vorbis(void *sound, uint32 size, PlayingSoundHandle *handle);
+ void playSfxSound_Vorbis(File *file, uint32 size, PlayingSoundHandle *handle);
int getCachedTrack(int track);
};