| Index: core/fxcodec/codec/ccodec_basicmodule.h
|
| diff --git a/core/fxcodec/codec/ccodec_basicmodule.h b/core/fxcodec/codec/ccodec_basicmodule.h
|
| index 425b5d7229d84139c09a85faa80b07d1315d014e..015f41a4a4e2d75321619b4078d7bf8dcc047d24 100644
|
| --- a/core/fxcodec/codec/ccodec_basicmodule.h
|
| +++ b/core/fxcodec/codec/ccodec_basicmodule.h
|
| @@ -22,6 +22,14 @@ class CCodec_BasicModule {
|
| int height,
|
| int nComps,
|
| int bpc);
|
| + bool RunLengthEncode(const uint8_t* src_buf,
|
| + uint32_t src_size,
|
| + uint8_t** dest_buf,
|
| + uint32_t* dest_size);
|
| + bool A85Encode(const uint8_t* src_buf,
|
| + uint32_t src_size,
|
| + uint8_t** dest_buf,
|
| + uint32_t* dest_size);
|
| };
|
|
|
| #endif // CORE_FXCODEC_CODEC_CCODEC_BASICMODULE_H_
|
|
|