Index: core/src/fxcodec/codec/codec_int.h |
diff --git a/core/src/fxcodec/codec/codec_int.h b/core/src/fxcodec/codec/codec_int.h |
index bc2aac883ae017f4c35467c01a2ade35d1385251..2910589b0ace420fa8592d6a6f965cddff9a62d2 100644 |
--- a/core/src/fxcodec/codec/codec_int.h |
+++ b/core/src/fxcodec/codec/codec_int.h |
@@ -57,7 +57,7 @@ class CCodec_ScanlineDecoder : public ICodec_ScanlineDecoder { |
protected: |
class ImageDataCache { |
public: |
- ImageDataCache(int width, int height, int pitch); |
+ ImageDataCache(int width, int height, FX_DWORD pitch); |
~ImageDataCache(); |
bool AllocateCache(); |
@@ -74,7 +74,7 @@ class CCodec_ScanlineDecoder : public ICodec_ScanlineDecoder { |
const int m_Width; |
const int m_Height; |
- const int m_Pitch; |
+ const FX_DWORD m_Pitch; |
int m_nCachedLines; |
nonstd::unique_ptr<uint8_t, FxFreeDeleter> m_Data; |
}; |
@@ -92,7 +92,7 @@ class CCodec_ScanlineDecoder : public ICodec_ScanlineDecoder { |
int m_OutputHeight; |
int m_nComps; |
int m_bpc; |
- int m_Pitch; |
+ FX_DWORD m_Pitch; |
FX_BOOL m_bColorTransformed; |
int m_NextLine; |
uint8_t* m_pLastScanline; |