aboutsummaryrefslogtreecommitdiff
path: root/graphics/dxa_player.h
diff options
context:
space:
mode:
authorDavid Corrales2007-08-05 19:34:20 +0000
committerDavid Corrales2007-08-05 19:34:20 +0000
commit6856535010bd2fa4449bcfde1c88dc06cd46e26f (patch)
treeb81a2234c2beff0312c93e039d6cafda4babeca6 /graphics/dxa_player.h
parent1400d28bfb37fc94f3c44dec0a4d0cef65fb8fb7 (diff)
parentec1803f838d5efc7decf75c05a1fb4a9633751e5 (diff)
downloadscummvm-rg350-6856535010bd2fa4449bcfde1c88dc06cd46e26f.tar.gz
scummvm-rg350-6856535010bd2fa4449bcfde1c88dc06cd46e26f.tar.bz2
scummvm-rg350-6856535010bd2fa4449bcfde1c88dc06cd46e26f.zip
Merged fsnode with trunk: r27971:28460
svn-id: r28462
Diffstat (limited to 'graphics/dxa_player.h')
-rw-r--r--graphics/dxa_player.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/graphics/dxa_player.h b/graphics/dxa_player.h
index b8155153c9..5415e440d2 100644
--- a/graphics/dxa_player.h
+++ b/graphics/dxa_player.h
@@ -47,6 +47,10 @@ protected:
byte *_frameBuffer2;
byte *_scaledBuffer;
byte *_drawBuffer;
+ byte *_inBuffer;
+ uint32 _inBufferSize;
+ byte *_decompBuffer;
+ uint32 _decompBufferSize;
uint16 _width;
uint16 _height, _curHeight;
uint16 _framesCount;
@@ -121,10 +125,10 @@ protected:
void decodeNextFrame();
void decodeZlib(byte *data, int size, int totalSize);
- void decode12(byte *data, int size, int totalSize);
- void decode13(byte *data, int size, int totalSize);
+ void decode12(int size);
+ void decode13(int size);
};
-
+
} // End of namespace Graphics
#endif