aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2008-12-21 11:49:58 +0000
committerTravis Howell2008-12-21 11:49:58 +0000
commitf510b28a495d6e82e8e75b86f039f02ca1894d6e (patch)
treebf7ef8ea97ef7a47415b5eae56dcbb00f1f2456f
parent86f4233883ac8632f21ac84eb1bcebd14353c9de (diff)
downloadscummvm-rg350-f510b28a495d6e82e8e75b86f039f02ca1894d6e.tar.gz
scummvm-rg350-f510b28a495d6e82e8e75b86f039f02ca1894d6e.tar.bz2
scummvm-rg350-f510b28a495d6e82e8e75b86f039f02ca1894d6e.zip
Fix warnings.
svn-id: r35462
-rw-r--r--graphics/dxa_player.cpp16
-rw-r--r--graphics/dxa_player.h4
2 files changed, 10 insertions, 10 deletions
diff --git a/graphics/dxa_player.cpp b/graphics/dxa_player.cpp
index e29998d6ee..3629431d48 100644
--- a/graphics/dxa_player.cpp
+++ b/graphics/dxa_player.cpp
@@ -76,13 +76,13 @@ int DXAPlayer::getHeight() {
return _height;
}
-int DXAPlayer::getCurFrame() {
+int32 DXAPlayer::getCurFrame() {
if (!_fileStream)
return -1;
return _frameNum;
}
-int DXAPlayer::getFrameCount() {
+int32 DXAPlayer::getFrameCount() {
if (!_fileStream)
return 0;
return _framesCount;
@@ -142,20 +142,20 @@ bool DXAPlayer::loadFile(const char *fileName) {
_curHeight = _height;
}
- debug(2, "flags 0x0%x framesCount %d width %d height %d rate %d ticks %d", flags, _framesCount, _width, _height, _framesPerSec, _frameTicks);
+ debug(2, "flags 0x0%x framesCount %d width %d height %d rate %d ticks %d", flags, getFrameCount(), getWidth(), getHeight(), getFrameRate(), getFrameDelay());
_frameSize = _width * _height;
_decompBufferSize = _frameSize;
_frameBuffer1 = (uint8 *)malloc(_frameSize);
_frameBuffer2 = (uint8 *)malloc(_frameSize);
if (!_frameBuffer1 || !_frameBuffer2)
- error("DXAPlayer: Error allocating frame buffers (size %d)", _frameSize);
+ error("DXAPlayer: Error allocating frame buffers (size %u)", _frameSize);
_scaledBuffer = 0;
if (_scaleMode != S_NONE) {
_scaledBuffer = (uint8 *)malloc(_frameSize);
if (!_scaledBuffer)
- error("Error allocating scale buffer (size %d)", _frameSize);
+ error("Error allocating scale buffer (size %u)", _frameSize);
}
#ifdef DXA_EXPERIMENT_MAXD
@@ -236,7 +236,7 @@ void DXAPlayer::decode12(int size) {
if (_decompBuffer == NULL) {
_decompBuffer = (byte *)malloc(_decompBufferSize);
if (_decompBuffer == NULL)
- error("Error allocating decomp buffer (size %d)", _decompBufferSize);
+ error("Error allocating decomp buffer (size %u)", _decompBufferSize);
}
/* decompress the input data */
decodeZlib(_decompBuffer, size, _decompBufferSize);
@@ -337,7 +337,7 @@ void DXAPlayer::decode13(int size) {
if (_decompBuffer == NULL) {
_decompBuffer = (byte *)malloc(_decompBufferSize);
if (_decompBuffer == NULL)
- error("Error allocating decomp buffer (size %d)", _decompBufferSize);
+ error("Error allocating decomp buffer (size %u)", _decompBufferSize);
}
/* decompress the input data */
@@ -536,7 +536,7 @@ void DXAPlayer::decodeNextFrame() {
free(_inBuffer);
_inBuffer = (byte *)malloc(size);
if (_inBuffer == NULL)
- error("Error allocating input buffer (size %d)", size);
+ error("Error allocating input buffer (size %u)", size);
_inBufferSize = size;
}
diff --git a/graphics/dxa_player.h b/graphics/dxa_player.h
index 73d6ac7ca4..540a5e3bfd 100644
--- a/graphics/dxa_player.h
+++ b/graphics/dxa_player.h
@@ -76,13 +76,13 @@ public:
* Returns the current frame number of the video
* @return the current frame number of the video
*/
- int getCurFrame();
+ int32 getCurFrame();
/**
* Returns the amount of frames in the video
* @return the amount of frames in the video
*/
- int getFrameCount();
+ int32 getFrameCount();
/**
* Returns the frame rate of the video