Index: core/src/fxcodec/codec/fx_codec.cpp |
diff --git a/core/src/fxcodec/codec/fx_codec.cpp b/core/src/fxcodec/codec/fx_codec.cpp |
index 806cac1bc3c046a3e3238d3e294d8945d78655bd..4ed02dc2c014acfd9f4721c7688775941beacd70 100644 |
--- a/core/src/fxcodec/codec/fx_codec.cpp |
+++ b/core/src/fxcodec/codec/fx_codec.cpp |
@@ -217,17 +217,20 @@ FX_BOOL CCodec_BasicModule::A85Encode(const uint8_t* src_buf, |
class CCodec_RLScanlineDecoder : public CCodec_ScanlineDecoder { |
public: |
CCodec_RLScanlineDecoder(); |
- virtual ~CCodec_RLScanlineDecoder(); |
+ ~CCodec_RLScanlineDecoder() override; |
+ |
FX_BOOL Create(const uint8_t* src_buf, |
FX_DWORD src_size, |
int width, |
int height, |
int nComps, |
int bpc); |
- virtual void v_DownScale(int dest_width, int dest_height) {} |
- virtual FX_BOOL v_Rewind(); |
- virtual uint8_t* v_GetNextLine(); |
- virtual FX_DWORD GetSrcOffset() { return m_SrcOffset; } |
+ |
+ // CCodec_ScanlineDecoder |
+ void v_DownScale(int dest_width, int dest_height) override {} |
+ FX_BOOL v_Rewind() override; |
+ uint8_t* v_GetNextLine() override; |
+ FX_DWORD GetSrcOffset() override { return m_SrcOffset; } |
protected: |
FX_BOOL CheckDestSize(); |