imgtools/imglib/compress/byte_pair.h
changeset 694 c3fbb20e86f0
parent 654 7c11c3d8d025
equal deleted inserted replaced
692:1dfff72f0961 694:c3fbb20e86f0
   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