imgtools/imglib/compress/byte_pair.h
changeset 700 c22eff170fac
parent 694 c3fbb20e86f0
equal deleted inserted replaced
699:9ca650050cf0 700:c22eff170fac
   341 	public:
   341 	public:
   342         TInt Compress(TUint8* dst, TUint8* src, TInt size);
   342         TInt Compress(TUint8* dst, TUint8* src, TInt size);
   343         TInt Decompress(TUint8* dst, TInt dstSize, TUint8* src, TInt srcSize, TUint8*& srcNext);
   343         TInt Decompress(TUint8* dst, TInt dstSize, TUint8* src, TInt srcSize, TUint8*& srcNext);
   344 };
   344 };
   345 TInt BytePairCompress(TUint8* dst, TUint8* src, TInt size, CBytePair *aBPE);
   345 TInt BytePairCompress(TUint8* dst, TUint8* src, TInt size, CBytePair *aBPE);
       
   346 TInt BytePairDecompress(TUint8* dst, TUint8* src, TInt size, CBytePair *aBPE);
   346 
   347 
   347 #endif
   348 #endif
   348 
   349