mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 21:31:53 +00:00
added append() stubs for Channel_MP3/Channel_MP3_CDMUSIC
svn-id: r4296
This commit is contained in:
parent
4d25594e3a
commit
4ac64b941d
@ -75,6 +75,7 @@ private:
|
||||
byte _flags;
|
||||
|
||||
public:
|
||||
virtual void append(void *sound, uint32 size) {} // FIXME, FAKE
|
||||
void mix(int16 *data, uint len);
|
||||
Channel_MP3(SoundMixer *mixer, void *sound, uint size, byte flags);
|
||||
void real_destroy();
|
||||
@ -94,6 +95,7 @@ private:
|
||||
FILE *_file;
|
||||
bool _initialized;
|
||||
public:
|
||||
virtual void append(void *sound, uint32 size) {} // FIXME, FAKE
|
||||
void mix(int16 *data, uint len);
|
||||
Channel_MP3_CDMUSIC(SoundMixer *mixer, FILE* file, mad_timer_t duration);
|
||||
void real_destroy();
|
||||
|
Loading…
Reference in New Issue
Block a user