aboutsummaryrefslogtreecommitdiff
path: root/engines/cryo/video.h
diff options
context:
space:
mode:
authorStrangerke2016-11-29 14:27:32 -0800
committerEugene Sandulenko2017-01-25 22:42:09 +0100
commit878a3c85157a6d92a594cd7cc51bef9f61604a1b (patch)
tree827b9ea9e815982d5014de06627e4d020144024a /engines/cryo/video.h
parentc2deb3ee756d9b19a2ffab045125de4d8169b755 (diff)
downloadscummvm-rg350-878a3c85157a6d92a594cd7cc51bef9f61604a1b.tar.gz
scummvm-rg350-878a3c85157a6d92a594cd7cc51bef9f61604a1b.tar.bz2
scummvm-rg350-878a3c85157a6d92a594cd7cc51bef9f61604a1b.zip
CRYO: Remove clhnm.cpp
Diffstat (limited to 'engines/cryo/video.h')
-rw-r--r--engines/cryo/video.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/engines/cryo/video.h b/engines/cryo/video.h
index e86d5066b8..ea41905479 100644
--- a/engines/cryo/video.h
+++ b/engines/cryo/video.h
@@ -35,7 +35,6 @@ private:
void wantsSound(bool sound);
void decompADPCM(byte *buffer, int16 *output, int size);
void loadDecompTable(int16 *buffer);
- void soundInADPCM(bool is_adpcm); // Unused
bool loadFrame(hnm_t *hnm);
void tryRead(hnm_t *hnm, int size);
void changePalette(hnm_t *hnm);
@@ -45,6 +44,14 @@ private:
void desentrelace(hnm_t *hnm);
void decompUBA(byte *output, byte *curr_buffer, byte *prev_buffer, byte *input, int width, char flags);
+ // Unused
+ void done();
+ void dispose(hnm_t *hnm);
+ void canLoop(hnm_t *hnm, bool canLoop);
+ void soundInADPCM(bool is_adpcm);
+ void soundMono(bool is_mono);
+ //
+
bool _soundStarted;
int16 _pendingSounds;
float _timeDrift;
@@ -56,6 +63,7 @@ private:
int16 _prevRight;
int16 _prevLeft;
bool _useAdpcm;
+ bool _useMono;
bool _preserveColor0;
int16 decompTable[256];
bool _safePalette;